mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
replace --tabs-border-color with --lwt-tabs-border-color
This commit is contained in:
parent
19fa8eb39d
commit
fd644ff857
3 changed files with 8 additions and 4 deletions
|
@ -16,6 +16,9 @@ See the above repository for updates as well as full license text. */
|
|||
/* tabs with any other theme */
|
||||
--lwt-text-color: cyan !important;
|
||||
--lwt-selected-tab-background-color: cornflowerblue !important;
|
||||
/* line between nav-bar and tabs toolbar,
|
||||
also fallback color for border around selected tab */
|
||||
--lwt-tabs-border-color: cyan !important;
|
||||
/* toolbar area */
|
||||
--toolbarbutton-icon-fill: white !important;
|
||||
--lwt-toolbarbutton-hover-background: orange !important;
|
||||
|
|
|
@ -19,7 +19,7 @@ menupopup > menu{ padding-block: 0.3em !important; }
|
|||
|
||||
/* This is kinda weird, but it makes the horizontal line between tabs and nav-bar render "inside" nav-bar thus tabs are more visibily separated even if there is less space there */
|
||||
#nav-bar{
|
||||
box-shadow: inset 0 var(--tabs-shadow-size) 0 var(--tabs-border-color) !important;
|
||||
box-shadow: inset 0 var(--tabs-shadow-size) 0 var(--lwt-tabs-border-color) !important;
|
||||
}
|
||||
|
||||
.tab-close-button{
|
||||
|
|
|
@ -48,7 +48,7 @@ See the above repository for updates as well as full license text. */
|
|||
.tabbrowser-tab[selected] > stack::before,
|
||||
.tabbrowser-tab[selected] > stack::after{
|
||||
fill: var(--tab-selected-bgcolor,var(--toolbar-bgcolor)) !important;
|
||||
stroke: var(--tabs-border-color,transparent);
|
||||
stroke: var(--lwt-tabs-border-color,transparent);
|
||||
}
|
||||
|
||||
.tabbrowser-tab[selected] > stack:-moz-lwtheme::before,
|
||||
|
@ -76,7 +76,7 @@ See the above repository for updates as well as full license text. */
|
|||
|
||||
#scrollbutton-up,
|
||||
#scrollbutton-down{ border-block-width: var(--uc-tabs-scrollbutton-border,0px) !important; }
|
||||
.tab-background[selected]{ border: 1px solid var(--tabs-border-color) !important; border-bottom: none !important }
|
||||
.tab-background[selected]{ border: 1px solid var(--lwt-tabs-border-color) !important; border-bottom: none !important }
|
||||
|
||||
.tab-context-line{
|
||||
-moz-box-ordinal-group: 2;
|
||||
|
@ -89,7 +89,7 @@ See the above repository for updates as well as full license text. */
|
|||
/* OPTIONAL - COLORS - show tabs border, selected tab line and make selected tab match the main toolbar color. Also disables tab shadow */
|
||||
/* Using these color options requires you to set layout.css.color-mix.enabled to true in about:config */
|
||||
/*
|
||||
#navigator-toolbox{ --tabs-border-color: color-mix(in srgb, currentcolor, transparent 80%) !important; }
|
||||
#navigator-toolbox{ --lwt-tabs-border-color: color-mix(in srgb, currentcolor, transparent 80%) !important; }
|
||||
#tabbrowser-tabs{ --lwt-selected-tab-background-color: var(--toolbar-bgcolor) }
|
||||
.tab-background[selected]{ --toolbar-bgcolor: transparent }
|
||||
.tabbrowser-tab .tab-background{ border-top: none !important; box-shadow: none !important; }
|
||||
|
@ -99,6 +99,7 @@ See the above repository for updates as well as full license text. */
|
|||
height: 2px;
|
||||
background: var(--uc-tab-line-color) !important;
|
||||
}
|
||||
#nav-bar{ box-shadow: 0 -1px 0 var(--lwt-tabs-border-color) }
|
||||
*/
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue