mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 01:31:00 +00:00
88 lines
2.4 KiB
CSS
88 lines
2.4 KiB
CSS
% 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/.
|
|
|
|
%include ../shared/devedition.inc.css
|
|
|
|
:root {
|
|
--forwardbutton-width: 29px;
|
|
}
|
|
|
|
.tab-close-button[visuallyselected]:not(:hover) {
|
|
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 80, 16, 64);
|
|
}
|
|
|
|
/* The menubar and tabs toolbar should match the devedition theme */
|
|
#TabsToolbar,
|
|
#toolbar-menubar {
|
|
-moz-appearance: none !important;
|
|
}
|
|
#main-menubar {
|
|
color: var(--chrome-color);
|
|
}
|
|
#main-menubar > menu:not([open]) {
|
|
color: inherit;
|
|
}
|
|
|
|
/* Allow buttons with -moz-appearance set to look normal on hover and open states */
|
|
#navigator-toolbox .toolbarbutton-1:-moz-any(:hover, [open="true"]),
|
|
#PlacesToolbar toolbarbutton.bookmark-item:-moz-any(:hover, [open="true"]) {
|
|
color: initial;
|
|
}
|
|
|
|
/* Square back and forward buttons */
|
|
#back-button > .toolbarbutton-icon,
|
|
#forward-button > .toolbarbutton-icon {
|
|
margin: 0;
|
|
border: 1px solid var(--chrome-nav-bar-controls-border-color);
|
|
padding: 2px 5px;
|
|
background: var(--chrome-nav-buttons-background);
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
#forward-button > .toolbarbutton-icon {
|
|
-moz-border-start: none;
|
|
}
|
|
|
|
/* Override a box shadow for disabled back button */
|
|
#main-window:not([customizing]) #back-button[disabled] > .toolbarbutton-icon {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
#back-button:hover:not([disabled="true"]) > .toolbarbutton-icon,
|
|
#forward-button:hover:not([disabled="true"]) > .toolbarbutton-icon {
|
|
background: var(--chrome-nav-buttons-hover-background) !important;
|
|
}
|
|
|
|
#back-button > .toolbarbutton-icon {
|
|
border-radius: 2px 0 0 2px !important;
|
|
}
|
|
|
|
.urlbar-history-dropmarker {
|
|
-moz-appearance: none;
|
|
padding: 0 3px;
|
|
list-style-image: var(--urlbar-dropmarker-url);
|
|
-moz-image-region: var(--urlbar-dropmarker-region);
|
|
}
|
|
|
|
/* Add the proper background for tab overflow */
|
|
#alltabs-button,
|
|
#new-tab-button {
|
|
background: var(--chrome-background-color);
|
|
}
|
|
|
|
#new-tab-button:hover > .toolbarbutton-icon {
|
|
border-color: transparent !important;
|
|
}
|
|
|
|
/* Prevent double border below tabs toolbar */
|
|
#TabsToolbar:not([collapsed="true"]) + #nav-bar {
|
|
border-top-width: 0 !important;
|
|
}
|
|
|
|
/* Prevent devedition foreground color from seeping into the sidebar-box (since
|
|
* its background colors aren't affected by the devedition theme) */
|
|
#sidebar-box {
|
|
color: initial;
|
|
}
|