summaryrefslogtreecommitdiff
path: root/ui/style_dark.qss
diff options
context:
space:
mode:
Diffstat (limited to 'ui/style_dark.qss')
-rw-r--r--ui/style_dark.qss31
1 files changed, 29 insertions, 2 deletions
diff --git a/ui/style_dark.qss b/ui/style_dark.qss
index 9fd7198..15af970 100644
--- a/ui/style_dark.qss
+++ b/ui/style_dark.qss
@@ -324,8 +324,8 @@ QComboBox#traceStyleCb, QDoubleSpinBox#traceWidthSpin {
font-family: "IBM Plex Mono", monospace; font-size: 11px;
background: #0b0e13; border: 1px solid #1c2540; border-radius: 3px; color: #8b9dc3; padding: 2px 4px;
}
-QToolButton#traceRemoveBtn { background: transparent; color: #334155; border: none; font-size: 13px; border-radius: 3px; }
-QToolButton#traceRemoveBtn:hover { background-color: #450a0a; color: #ef4444; }
+QPushButton#traceRemoveBtn { background: transparent; color: #8b9dc3; border: none; font-size: 13px; border-radius: 3px; padding: 0; }
+QPushButton#traceRemoveBtn:hover { background-color: #450a0a; color: #ef4444; }
QPushButton#addTraceBtn {
background-color: #1c2540; color: #8b9dc3;
@@ -605,3 +605,30 @@ QLabel#layoutTileLabel {
color: #8b9dc3;
background: transparent;
}
+
+/* ── Control Panel Dock ──────────────────────────────────────────── */
+QDockWidget#controlPanelDock {
+ border: none;
+}
+QDockWidget#controlPanelDock::title {
+ background-color: #0f1521;
+ color: #8b9dc3;
+ padding: 4px 8px;
+ text-align: left;
+ font-size: 11px;
+ font-weight: bold;
+ letter-spacing: 1px;
+ border-bottom: 1px solid #2a3558;
+}
+QDockWidget#controlPanelDock::close-button,
+QDockWidget#controlPanelDock::float-button {
+ background: transparent;
+ border: none;
+ padding: 2px;
+ subcontrol-position: top right;
+}
+QDockWidget#controlPanelDock::close-button:hover,
+QDockWidget#controlPanelDock::float-button:hover {
+ background: #2a3558;
+ border-radius: 2px;
+}