Merge branch 'dev' of ssh://git.commumedia.org:2222/alex/headquarter into dev
This commit is contained in:
+20
-15
@@ -3112,17 +3112,23 @@ a.nav-item,
|
|||||||
Mobile Terminal Styles
|
Mobile Terminal Styles
|
||||||
============================================ */
|
============================================ */
|
||||||
|
|
||||||
.mobile-terminal-wrapper {
|
/* Mobile terminal shell - fills viewport */
|
||||||
display: grid;
|
.shell.mobile-terminal-shell {
|
||||||
grid-template-rows: auto 1fr auto;
|
|
||||||
grid-template-areas:
|
|
||||||
"header"
|
|
||||||
"content"
|
|
||||||
"keys";
|
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
height: 100dvh; /* Dynamic viewport height for mobile */
|
height: 100dvh;
|
||||||
max-height: 100vh;
|
overflow: hidden;
|
||||||
max-height: 100dvh;
|
}
|
||||||
|
|
||||||
|
.shell.mobile-terminal-shell > * {
|
||||||
|
flex: 1;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-terminal-wrapper {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex: 1;
|
||||||
|
min-height: 0;
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -3130,7 +3136,7 @@ a.nav-item,
|
|||||||
|
|
||||||
/* Mobile Terminal Header */
|
/* Mobile Terminal Header */
|
||||||
.mobile-terminal-header {
|
.mobile-terminal-header {
|
||||||
grid-area: header;
|
flex-shrink: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -3231,12 +3237,11 @@ a.nav-item,
|
|||||||
|
|
||||||
/* Mobile Terminal Content */
|
/* Mobile Terminal Content */
|
||||||
.mobile-terminal-content {
|
.mobile-terminal-content {
|
||||||
grid-area: content;
|
flex: 1;
|
||||||
|
min-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
min-height: 0;
|
|
||||||
max-height: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Terminal wrapper - fills content area */
|
/* Terminal wrapper - fills content area */
|
||||||
@@ -3270,7 +3275,7 @@ a.nav-item,
|
|||||||
|
|
||||||
/* Special Keys Strip */
|
/* Special Keys Strip */
|
||||||
.special-keys-strip {
|
.special-keys-strip {
|
||||||
grid-area: keys;
|
flex-shrink: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
|
|||||||
Reference in New Issue
Block a user