mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-06 02:30:54 -08:00
Fix: Fully Theme - Sidebar Fields for None lwtheme
This commit is contained in:
parent
0a9c239c3a
commit
33ef379322
1 changed files with 19 additions and 5 deletions
|
|
@ -1037,20 +1037,34 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/*== Sidebar - Field Color =================================================*/
|
/*== Sidebar - Field Color =================================================*/
|
||||||
.sidebar-panel[lwt-sidebar] #search-box,
|
.sidebar-panel #search-box,
|
||||||
body[lwt-sidebar] xul|search-textbox.tabsFilter {
|
xul|search-textbox.tabsFilter {
|
||||||
|
--input-bgcolor: color-mix(in srgb, currentColor 30%, transparent);
|
||||||
|
|
||||||
appearance: none !important;
|
appearance: none !important;
|
||||||
padding: 8px 11px !important;
|
padding: 8px 11px !important;
|
||||||
border: 1px solid color-mix(in srgb, currentColor 30%, transparent) !important;
|
border: 1px solid var(--input-bgcolor) !important;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
background-color: var(--lwt-sidebar-background-color, Field) !important;
|
background-color: var(--lwt-sidebar-background-color, Field) !important;
|
||||||
color: var(--lwt-sidebar-text-color, FieldText) !important;
|
color: var(--lwt-sidebar-text-color, FieldText) !important;
|
||||||
}
|
}
|
||||||
|
.sidebar-panel:not([lwt-sidebar]) #search-box {
|
||||||
|
--input-bgcolor: ThreeDShadow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-panel #search-box[focused="true"],
|
||||||
|
xul|search-textbox.tabsFilter[focused="true"] {
|
||||||
|
outline: 1px solid var(--input-bgcolor);
|
||||||
|
}
|
||||||
.sidebar-panel[lwt-sidebar] #search-box[focused="true"],
|
.sidebar-panel[lwt-sidebar] #search-box[focused="true"],
|
||||||
body[lwt-sidebar] xul|search-textbox.tabsFilter[focused="true"] {
|
body[lwt-sidebar] xul|search-textbox.tabsFilter[focused="true"] {
|
||||||
border-color: var(--lwt-sidebar-highlight-background-color) !important;
|
--input-bgcolor: var(--lwt-sidebar-highlight-background-color, Highlight) !important;
|
||||||
outline: 1px solid var(--lwt-sidebar-highlight-background-color);
|
}
|
||||||
|
.sidebar-panel:not([lwt-sidebar]) #search-box[focused="true"],
|
||||||
|
body:not([lwt-sidebar]) xul|search-textbox.tabsFilter[focused="true"] {
|
||||||
|
border-color: -moz-accent-color !important; /* Hard Coded */
|
||||||
|
outline-color: -moz-accent-color !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*= PopupAutoComplete ======================================================*/
|
/*= PopupAutoComplete ======================================================*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue