mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
Make colors more easily compatible with other stylesheets
This commit is contained in:
parent
3c01d18d65
commit
0a7063b360
1 changed files with 16 additions and 7 deletions
|
@ -6,14 +6,14 @@
|
|||
/* Override some default variables - stylesheet compatibility */
|
||||
:root{
|
||||
--lwt-toolbar-field-background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
--lwt-toolbar-field-border-color: transparent !important;)
|
||||
--lwt-toolbar-field-border-color: transparent !important;
|
||||
--toolbar-bgcolor: var(--uc-light-bkgnd-color) !important;
|
||||
}
|
||||
#nav-bar{--uc-ext-active-color: var(--uc-active-color);}
|
||||
|
||||
#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar),
|
||||
#browser-bottombox,
|
||||
findbar,
|
||||
.searchbar-textbox{
|
||||
findbar{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
@ -22,15 +22,24 @@ findbar{ background-image: none !important; }
|
|||
|
||||
#TabsToolbar,
|
||||
#toolbar-menubar,
|
||||
.searchbar-textbox,
|
||||
.findbar-textbox,
|
||||
.findbar-find-previous,
|
||||
.findbar-find-next,
|
||||
#urlbar{
|
||||
background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
#urlbar,
|
||||
.findbar-textbox,
|
||||
.searchbar-textbox{
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
#TabsToolbar,
|
||||
#toolbar-menubar{
|
||||
background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
}
|
||||
|
||||
.findbar-find-previous,
|
||||
.findbar-find-next{
|
||||
background-color: var(--lwt-toolbar-field-background-color) !important;
|
||||
}
|
||||
|
||||
#urlbar{ border-color: transparent !important; }
|
||||
|
||||
#urlbar[focused]{
|
||||
|
|
Loading…
Reference in a new issue