diff options
Diffstat (limited to '')
-rw-r--r-- | comm/calendar/base/themes/common/calendar-unifinder.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/comm/calendar/base/themes/common/calendar-unifinder.css b/comm/calendar/base/themes/common/calendar-unifinder.css new file mode 100644 index 0000000000..50d1d0152c --- /dev/null +++ b/comm/calendar/base/themes/common/calendar-unifinder.css @@ -0,0 +1,40 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +:root[lwt-tree-brighttext] #unifinder-searchBox { + --toolbarbutton-hover-background: var(--lwt-toolbarbutton-hover-background, rgba(255, 255, 255, .25)); + --toolbarbutton-hover-bordercolor: var(--lwt-toolbarbutton-hover-background, rgba(255, 255, 255, .5)); + --toolbarbutton-header-bordercolor: var(--lwt-toolbarbutton-hover-background, rgba(255, 255, 255, .25)); + --toolbarbutton-active-background: var(--lwt-toolbarbutton-active-background, rgba(255, 255, 255, .4)); + --toolbarbutton-active-bordercolor: var(--lwt-toolbarbutton-active-background, rgba(255, 255, 255, .7)); + --toolbarbutton-active-boxshadow: 0 0 0 1px var(--lwt-toolbarbutton-active-background, rgba(255, 255, 255, .4)) inset; + --toolbarbutton-checked-background: var(--lwt-toolbarbutton-hover-background, rgba(255, 255, 255, .3)); +} + +/* only format Unifinder lists */ +#unifinder-search-results-tree > treechildren::-moz-tree-cell-text(highpriority) { + font-weight: bold; +} + +#unifinder-search-results-tree > treechildren::-moz-tree-cell-text(lowpriority) { + font-style: italic; + opacity: 0.6; +} + +/* workaround to avoid Window Flick */ +#unifinder-search-results-tree { + appearance: none; + min-height: 92px; + margin: 0; +} + +:root[lwt-tree] #unifinder-searchBox { + background-color: var(--toolbar-bgcolor); + background-image: none; + color: var(--toolbar-color); +} + +#unifinder-searchBox:-moz-lwtheme { + border-bottom-color: var(--splitter-color); +} |