mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
splitter has it's own key in data
This commit is contained in:
parent
e545d431da
commit
52f474d62d
2 changed files with 7 additions and 4 deletions
|
|
@ -32,6 +32,9 @@
|
|||
"bg-inputs-disabled": "#2C313A",
|
||||
"bg-buttons-disabled": "#434a56",
|
||||
|
||||
"bg-splitter": "#434a56",
|
||||
"bg-splitter-hover": "rgba(168, 175, 189, 0.3)",
|
||||
|
||||
"bg-menu-separator": "rgba(75, 83, 98, 127)",
|
||||
|
||||
"bg-scroll-handle": "#4B5362",
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ QSplitter::handle:horizontal {
|
|||
background: qlineargradient(
|
||||
x1:0, y1:0, x2:1, y2:0,
|
||||
stop:0.3 rgba(0, 0, 0, 0),
|
||||
stop:0.5 {color:bg-buttons},
|
||||
stop:0.5 {color:bg-splitter},
|
||||
stop:0.7 rgba(0, 0, 0, 0)
|
||||
);
|
||||
}
|
||||
|
|
@ -217,7 +217,7 @@ QSplitter::handle:vertical {
|
|||
background: qlineargradient(
|
||||
x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0.3 rgba(0, 0, 0, 0),
|
||||
stop:0.5 {color:bg-buttons},
|
||||
stop:0.5 {color:bg-splitter},
|
||||
stop:0.7 rgba(0, 0, 0, 0)
|
||||
);
|
||||
}
|
||||
|
|
@ -226,7 +226,7 @@ QSplitter::handle:horizontal:hover {
|
|||
background: qlineargradient(
|
||||
x1:0, y1:0, x2:1, y2:0,
|
||||
stop:0.3 rgba(0, 0, 0, 0),
|
||||
stop:0.5 {color:bg-button-hover},
|
||||
stop:0.5 {color:bg-splitter-hover},
|
||||
stop:0.7 rgba(0, 0, 0, 0)
|
||||
);
|
||||
}
|
||||
|
|
@ -235,7 +235,7 @@ QSplitter::handle:vertical:hover {
|
|||
background: qlineargradient(
|
||||
x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0.3 rgba(0, 0, 0, 0),
|
||||
stop:0.5 {color:bg-button-hover},
|
||||
stop:0.5 {color:bg-splitter-hover},
|
||||
stop:0.7 rgba(0, 0, 0, 0)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue