forked from mirrors/gecko-dev
Moved the styling for the #urlbar-zoom-button which was duplicated among browser/themes/linux/browser.css, browser/themes/osx/browser.css, and browser/themes/windows/browser.css to a new shared file browser/themes/shared/browser.inc.css. Also added the new file to browser/themes/shared/jar.inc.mn. --HG-- extra : rebase_source : c755450072f871b14f7bfb3e21423a299800301b
34 lines
No EOL
792 B
CSS
34 lines
No EOL
792 B
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/. */
|
|
|
|
/* Zoom button */
|
|
#urlbar-zoom-button {
|
|
margin: 0 3px;
|
|
font-size: .8em;
|
|
padding: 0 8px;
|
|
border-radius: 1em;
|
|
background-color: hsla(0,0%,0%,.05);
|
|
border: 1px solid ThreeDLightShadow;
|
|
}
|
|
|
|
#urlbar-zoom-button[animate="true"] {
|
|
animation-name: urlbar-zoom-reset-pulse;
|
|
animation-duration: 250ms;
|
|
}
|
|
|
|
#urlbar-zoom-button:hover {
|
|
background-color: hsla(0,0%,0%,.1);
|
|
}
|
|
|
|
#urlbar-zoom-button:hover:active {
|
|
background-color: hsla(0,0%,0%,.15);
|
|
}
|
|
|
|
#urlbar-zoom-button > .toolbarbutton-text {
|
|
display: -moz-box;
|
|
}
|
|
|
|
#urlbar-zoom-button > .toolbarbutton-icon {
|
|
display: none;
|
|
} |