mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
change unselected tabs to be lighter colored than selected tabs in dark theme
This commit is contained in:
parent
9d0c35bc75
commit
210d52c001
1 changed files with 16 additions and 2 deletions
|
@ -156,11 +156,25 @@ HorizontalHeaderColumn > TableColumnHeader.column-header.table-column{
|
|||
-fx-border-color: #626367;
|
||||
}
|
||||
|
||||
.root .wallet-subtabs > .tab-header-area .tab {
|
||||
.root .tab-pane > .tab-header-area > .headers-region {
|
||||
-fx-color: derive(-fx-base, 40%);
|
||||
-fx-mark-color: ladder(-fx-base, white 30%, derive(-fx-base,-63%) 31%);
|
||||
}
|
||||
|
||||
.root .tab-pane > .tab-header-area > .headers-region > .tab .tab-label .label {
|
||||
-fx-text-fill: derive(white, -8%);
|
||||
}
|
||||
|
||||
.root .tab-pane > .tab-header-area > .headers-region > .tab:selected .tab-label .label,
|
||||
.root .tab-pane > .tab-header-area > .headers-region > .tab:hover .tab-label .label {
|
||||
-fx-text-fill: white;
|
||||
}
|
||||
|
||||
.root .wallet-subtabs > .tab-header-area > .headers-region > .tab {
|
||||
-fx-background-color: derive(#2284bb, 32%);
|
||||
}
|
||||
|
||||
.root .wallet-subtabs > .tab-header-area .tab:selected {
|
||||
.root .wallet-subtabs > .tab-header-area > .headers-region > .tab:selected {
|
||||
-fx-background-color: #2284bb;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue