mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
Widen ACARS sidebar and fix controls visibility
Increase sidebar width from 250px to 300px to prevent region dropdown from being cut off. Add flex layout to keep header and controls visible while messages area scrolls.
This commit is contained in:
@@ -268,7 +268,7 @@ body {
|
||||
}
|
||||
|
||||
.acars-sidebar-content {
|
||||
width: 250px;
|
||||
width: 300px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
@@ -297,6 +297,23 @@ body {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.acars-sidebar .panel-header {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.acars-sidebar #acarsPanelContent {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.acars-sidebar .acars-info,
|
||||
.acars-sidebar .acars-controls {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.acars-sidebar .acars-messages {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
|
||||
Reference in New Issue
Block a user