use a variable to set color for the optional tab line
This commit is contained in:
parent
693d8b0bbd
commit
cde5a0391d
1 changed files with 4 additions and 1 deletions
|
@ -8,6 +8,7 @@ See the above repository for updates as well as full license text. */
|
||||||
--uc-tabs-scrollbutton-border: 0px;
|
--uc-tabs-scrollbutton-border: 0px;
|
||||||
--proton-tab-block-margin:0px;
|
--proton-tab-block-margin:0px;
|
||||||
--tab-min-height: 34px;
|
--tab-min-height: 34px;
|
||||||
|
--uc-tab-line-color: rgb(10, 132, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
#TabsToolbar{ --toolbarbutton-inner-padding: 6px !important; }
|
#TabsToolbar{ --toolbarbutton-inner-padding: 6px !important; }
|
||||||
|
@ -79,9 +80,11 @@ See the above repository for updates as well as full license text. */
|
||||||
content: "";
|
content: "";
|
||||||
display: -moz-box;
|
display: -moz-box;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background: highlight !important;
|
background: var(--uc-tab-line-color) !important;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/* OPTIONAL - uncomment the following to flip the curves vertically - maybe useful for tabs on bottom ? */
|
/* OPTIONAL - uncomment the following to flip the curves vertically - maybe useful for tabs on bottom ? */
|
||||||
/*
|
/*
|
||||||
.tab-background{ -moz-box-direction: reverse }
|
.tab-background{ -moz-box-direction: reverse }
|
||||||
|
|
Loading…
Reference in a new issue