firefox-gnome-theme/theme/parts/toolbox.css

151 lines
4.0 KiB
CSS
Raw Normal View History

/* Toolbox, a container for all toolbars (toolbox#navigator-toolbox):
* - menu bar (toolbar#toolbar-menubar)
* - tab bar (toolbar#TabsToolbar)
* - header bar (toolbar#nav-bar)
* - bookmark bar (toolbar#PersonalToolbar)
* - add-ons can add their own toolbars (toolbar) */
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
/* Toolbox colors */
2019-06-03 20:47:03 +03:00
#navigator-toolbox {
border: 0 !important;
background: none !important;
2019-06-03 20:47:03 +03:00
}
#nav-bar, #PersonalToolbar, #toolbar-menubar, #TabsToolbar, findbar {
2019-07-05 07:43:30 +03:00
border: 0 !important;
2019-06-25 03:57:54 +03:00
background: var(--gnome-toolbar-background) !important;
}
2022-12-16 20:03:15 +02:00
#nav-bar, #PersonalToolbar, #toolbar-menubar:not([inactive=true]), #TabsToolbar {
2022-05-15 20:33:30 +03:00
border-bottom: 1px solid var(--gnome-toolbar-border-color) !important;
}
findbar {
border-top: 1px solid var(--gnome-toolbar-border-color) !important;
}
#nav-bar:-moz-window-inactive,
2019-07-18 01:37:55 +03:00
#PersonalToolbar:-moz-window-inactive,
#toolbar-menubar:-moz-window-inactive,
#TabsToolbar:-moz-window-inactive,
2019-08-01 23:23:16 +03:00
findbar:-moz-window-inactive,
.container.infobar:-moz-window-inactive {
background: var(--gnome-inactive-toolbar-background) !important;
border-color: var(--gnome-inactive-toolbar-border-color) !important;
2019-06-02 21:15:51 +03:00
}
#navigator-toolbox:-moz-window-inactive label,
#downloads-indicator-anchor:-moz-window-inactive,
findbar:-moz-window-inactive image:not(#hack),
2019-07-06 19:07:13 +03:00
findbar:-moz-window-inactive label,
2019-08-01 23:23:16 +03:00
findbar:-moz-window-inactive description,
#viewButton:-moz-window-inactive dropmarker,
.container.infobar:-moz-window-inactive {
opacity: 0.7 !important;
2019-06-02 21:15:51 +03:00
}
#toolbar-menubar:not([inactive=true]) {
margin-bottom: 0 !important;
}
#PersonalToolbar {
2021-05-10 15:26:09 +03:00
padding: 2px !important;
}
/* Overrides: Remove border below the menu bar / above the header bar */
#TabsToolbar:not([collapsed="true"]) + #nav-bar {
border-top-width: 0 !important;
}
#navigator-toolbox::after {
border-bottom-width: 0 !important;
}
/* Reorder toolbars */
2022-05-15 20:33:30 +03:00
#navigator-toolbox #nav-bar {
-moz-box-ordinal-group: 0;
}
#navigator-toolbox #PersonalToolbar {
2022-12-19 06:01:39 +02:00
-moz-box-ordinal-group: 0;
}
#navigator-toolbox #titlebar {
2022-12-19 06:01:39 +02:00
-moz-box-ordinal-group: 1;
}
#navigator-toolbox toolbar {
-moz-box-ordinal-group: 10;
}
#navigator-toolbox #TabsToolbar {
-moz-box-ordinal-group: 100;
}
/* Overrides: Don't shift other toolbars on tab drag and drop */
#TabsToolbar[movingtab] {
padding-bottom: 0 !important;
}
#TabsToolbar[movingtab] > .tabbrowser-tabs {
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
#TabsToolbar[movingtab] + #nav-bar {
margin-top: 0 !important;
}
2019-08-01 23:23:16 +03:00
/* Content notifications */
.notificationbox-stack notification-message {
border: 0 !important;
2020-10-24 01:15:30 +03:00
font-size: 1em !important;
padding: 0 !important;
border-radius: 0 !important;
margin: 0 !important;
}
.notificationbox-stack notification-message[style*="margin-top"] {
margin-top: -48px !important;
}
.container.infobar {
background: var(--gnome-toolbar-background) !important;
box-shadow: none !important;
2019-08-01 23:23:16 +03:00
padding: 6px !important;
2021-11-18 00:55:31 +02:00
border-radius: 0 !important;
2019-08-01 23:23:16 +03:00
}
.container.infobar::before {
display: none !important;
}
.container.infobar .icon {
2020-10-24 01:15:30 +03:00
height: 16px !important;
width: 16px !important;
}
.notificationbox-stack notification-message[type="warning"] {
2020-10-27 06:01:04 +02:00
background: #ffe900 !important;
}
.notificationbox-stack notification-message[type="critical"] {
2020-10-27 06:01:04 +02:00
background: #d70022 !important;
}
.notificationbox-stack[notificationside="top"] notification-message {
border-bottom: 1px solid var(--gnome-toolbar-border-color) !important;
}
.notificationbox-stack[notificationside="bottom"] notification-message {
border-top: 1px solid var(--gnome-toolbar-border-color) !important;
}
2022-05-22 06:19:11 +03:00
/* Text link */
.text-link {
color: var(--gnome-accent) !important;
}
/* OPTIONAL: Hide WebRTC indicator */
@supports -moz-bool-pref("gnomeTheme.hideWebrtcIndicator") {
#webrtcIndicator {
display: none;
}
}
/* OPTIONAL: Move Bookmarks toolbar under tabs */
@supports -moz-bool-pref("gnomeTheme.bookmarksToolbarUnderTabs") {
#navigator-toolbox #titlebar {
-moz-box-ordinal-group: 1 !important;
}
#navigator-toolbox #PersonalToolbar {
-moz-box-ordinal-group: 2 !important;
}
}