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

106 lines
3.1 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;
2019-06-03 20:47:03 +03:00
border-bottom: 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,
.notificationbox-stack notification:-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, #navigator-toolbox:-moz-window-inactive image,
#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,
.notificationbox-stack:-moz-window-inactive image:not(#hack),
.notificationbox-stack:-moz-window-inactive label {
opacity: 0.7 !important;
2019-06-02 21:15:51 +03:00
}
#toolbar-menubar:not([inactive=true]) {
margin-bottom: 0 !important;
}
#PersonalToolbar {
padding-top: 2px !important;
height: 32px;
}
/* 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 */
2019-06-07 03:21:15 +03:00
#navigator-toolbox #nav-bar, findbar {
-moz-box-ordinal-group: 0;
}
#navigator-toolbox #PersonalToolbar {
-moz-box-ordinal-group: 1;
}
#navigator-toolbox #titlebar {
-moz-box-ordinal-group: 2;
}
#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 {
border: 0 !important;
background: var(--gnome-toolbar-background) !important;
2019-08-01 23:23:16 +03:00
padding: 6px !important;
}
.notificationbox-stack notification[type="warning"] {
background: #ffe900 !important;
}
.notificationbox-stack notification[type="critical"] {
background: #d70022 !important;
}
.notificationbox-stack[notificationside="top"] notification {
border-bottom: 1px solid var(--gnome-toolbar-border-color) !important;
}
.notificationbox-stack[notificationside="bottom"] notification {
border-top: 1px solid var(--gnome-toolbar-border-color) !important;
}