2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Container ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout-dock-container {
|
2025-11-29 23:00:48 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #1a1a1a;
|
|
|
|
|
position: relative;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__layout {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #1a1a1a;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Tabset (Panel Container) ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__tabset {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #242424;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset-selected {
|
|
|
|
|
background: #242424;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset_header {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #2a2a2a;
|
|
|
|
|
border-bottom: 1px solid #1a1a1a;
|
|
|
|
|
height: 26px;
|
|
|
|
|
min-height: 26px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__tabset_tabbar_outer {
|
|
|
|
|
background: #2a2a2a;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Tab Buttons ==================== */
|
|
|
|
|
.flexlayout__tab {
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #888888;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
line-height: 26px;
|
|
|
|
|
cursor: default;
|
|
|
|
|
transition: color 0.1s ease;
|
|
|
|
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
position: relative;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
color: #cccccc;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab::after {
|
|
|
|
|
display: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent !important;
|
|
|
|
|
color: #888888;
|
|
|
|
|
border: none !important;
|
|
|
|
|
border-right: none !important;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: color 0.1s ease;
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 11px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button::after {
|
2025-11-29 23:00:48 +08:00
|
|
|
display: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent !important;
|
|
|
|
|
color: #cccccc;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button--selected {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent !important;
|
|
|
|
|
color: #ffffff !important;
|
|
|
|
|
border-bottom: none !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button_leading {
|
2025-11-29 23:00:48 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button_content {
|
2025-11-29 23:00:48 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
max-width: 140px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 400;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button--selected .flexlayout__tab_button_content {
|
2025-11-29 23:00:48 +08:00
|
|
|
font-weight: 400;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* Tab close button */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__tab_button_trailing {
|
2025-11-29 23:00:48 +08:00
|
|
|
margin-left: 6px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.1s ease;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border-radius: 2px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
|
|
|
|
|
opacity: 0.6;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
.flexlayout__tab_button_trailing:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
opacity: 1 !important;
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
2025-11-04 23:53:26 +08:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__tab_button_trailing svg {
|
2025-11-29 23:00:48 +08:00
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
color: #999999;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_button_trailing:hover svg {
|
2025-11-29 23:00:48 +08:00
|
|
|
color: #ffffff;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Splitter (Divider between panels) ==================== */
|
|
|
|
|
.flexlayout__splitter {
|
|
|
|
|
background: #1a1a1a !important;
|
|
|
|
|
transition: background 0.15s ease;
|
2025-11-04 23:53:26 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__splitter:hover {
|
|
|
|
|
background: #4a9eff !important;
|
2025-11-04 23:53:26 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__splitter_horz {
|
|
|
|
|
cursor: row-resize !important;
|
2025-11-04 23:53:26 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__splitter_vert {
|
|
|
|
|
cursor: col-resize !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__splitter_border {
|
|
|
|
|
background: #1a1a1a !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Panel Content ==================== */
|
|
|
|
|
.flexlayout__tabset_content {
|
|
|
|
|
background: #242424;
|
|
|
|
|
overflow: auto;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__tabset_content * {
|
|
|
|
|
cursor: default !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__tabset_content button,
|
|
|
|
|
.flexlayout__tabset_content a,
|
|
|
|
|
.flexlayout__tabset_content [role="button"],
|
|
|
|
|
.flexlayout__tabset_content input,
|
|
|
|
|
.flexlayout__tabset_content select,
|
|
|
|
|
.flexlayout__tabset_content textarea {
|
|
|
|
|
cursor: pointer !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Drag & Drop ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__outline_rect {
|
2025-11-29 23:00:48 +08:00
|
|
|
border: 1px solid #4a9eff;
|
|
|
|
|
box-shadow: 0 0 12px rgba(74, 158, 255, 0.3);
|
|
|
|
|
background: rgba(74, 158, 255, 0.08);
|
|
|
|
|
border-radius: 2px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__edge_rect {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: rgba(74, 158, 255, 0.15);
|
|
|
|
|
border: 1px solid #4a9eff;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__drag_rect {
|
2025-11-29 23:00:48 +08:00
|
|
|
border: 1px solid #4a9eff;
|
|
|
|
|
background: rgba(74, 158, 255, 0.1);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
|
|
|
border-radius: 2px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Tab Toolbar ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__tab_toolbar {
|
2025-11-29 23:00:48 +08:00
|
|
|
display: flex !important;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
visibility: visible !important;
|
|
|
|
|
opacity: 1 !important;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_toolbar_button {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
color: #666666;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
transition: all 0.1s ease;
|
|
|
|
|
display: flex !important;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_toolbar_button:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
color: #cccccc;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tab_toolbar_button svg {
|
2025-11-29 23:00:48 +08:00
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
.flexlayout__tab_toolbar_button-min,
|
|
|
|
|
.flexlayout__tab_toolbar_button-max {
|
2025-11-29 23:00:48 +08:00
|
|
|
display: flex !important;
|
|
|
|
|
visibility: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Maximized tabset styling */
|
|
|
|
|
.flexlayout__tabset_maximized .flexlayout__tab_toolbar_button-max {
|
|
|
|
|
color: #4a9eff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset_maximized .flexlayout__tab_toolbar_button-max:hover {
|
|
|
|
|
background: rgba(74, 158, 255, 0.2);
|
|
|
|
|
color: #ffffff;
|
2025-11-04 23:53:26 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Popup Menu ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__popup_menu {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #2d2d2d;
|
|
|
|
|
border: 1px solid #3a3a3a;
|
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px 0;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__popup_menu_item {
|
2025-11-29 23:00:48 +08:00
|
|
|
color: #cccccc;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background 0.1s ease;
|
|
|
|
|
font-size: 11px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__popup_menu_item:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #3a3a3a;
|
|
|
|
|
color: #ffffff;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__popup_menu_item:active {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #4a9eff;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Border Panels ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__border {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #242424;
|
|
|
|
|
border: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_top,
|
|
|
|
|
.flexlayout__border_bottom {
|
2025-11-29 23:00:48 +08:00
|
|
|
border-left: none;
|
|
|
|
|
border-right: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_left,
|
|
|
|
|
.flexlayout__border_right {
|
2025-11-29 23:00:48 +08:00
|
|
|
border-top: none;
|
|
|
|
|
border-bottom: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_button {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent;
|
|
|
|
|
color: #888888;
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: color 0.1s ease;
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 11px;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_button::after {
|
2025-11-29 23:00:48 +08:00
|
|
|
display: none;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_button:hover {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent;
|
|
|
|
|
color: #cccccc;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__border_button--selected {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: transparent;
|
|
|
|
|
color: #ffffff;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
/* ==================== Error Boundary ==================== */
|
2025-10-27 09:29:11 +08:00
|
|
|
.flexlayout__error_boundary_container {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #242424;
|
|
|
|
|
color: #f48771;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
font-family: monospace;
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__error_boundary_message {
|
2025-11-29 23:00:48 +08:00
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ==================== Scrollbar ==================== */
|
|
|
|
|
.flexlayout__tabset_content::-webkit-scrollbar,
|
|
|
|
|
.flexlayout__tab_moveable::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset_content::-webkit-scrollbar-track,
|
|
|
|
|
.flexlayout__tab_moveable::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset_content::-webkit-scrollbar-thumb,
|
|
|
|
|
.flexlayout__tab_moveable::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(255, 255, 255, 0.15);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexlayout__tabset_content::-webkit-scrollbar-thumb:hover,
|
|
|
|
|
.flexlayout__tab_moveable::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.25);
|
2025-10-27 09:29:11 +08:00
|
|
|
}
|
2025-11-27 20:42:46 +08:00
|
|
|
|
2025-11-29 23:00:48 +08:00
|
|
|
.flexlayout__tabset_content::-webkit-scrollbar-corner,
|
|
|
|
|
.flexlayout__tab_moveable::-webkit-scrollbar-corner {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ==================== Persistent Panels ==================== */
|
2025-11-27 20:42:46 +08:00
|
|
|
.persistent-panel-placeholder {
|
2025-11-29 23:00:48 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: transparent;
|
2025-11-27 20:42:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.persistent-panel-container {
|
2025-11-29 23:00:48 +08:00
|
|
|
background: #242424;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 确保 tabset header 在 persistent panel 之上 */
|
|
|
|
|
.flexlayout__tabset_header,
|
|
|
|
|
.flexlayout__tabset_tabbar_outer {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 最大化时确保 tab bar 可见 */
|
|
|
|
|
.flexlayout__tabset_maximized .flexlayout__tabset_header,
|
|
|
|
|
.flexlayout__tabset_maximized .flexlayout__tabset_tabbar_outer {
|
|
|
|
|
z-index: 100;
|
2025-11-27 20:42:46 +08:00
|
|
|
}
|