mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
378 lines
10 KiB
CSS
378 lines
10 KiB
CSS
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Mobile Browser.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Mark Finkle <mfinkle@mozilla.com>
|
|
* Doug Turner <dougt@mozilla.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
%filter substitution
|
|
%include defines.inc
|
|
|
|
@namespace url("http://www.w3.org/1999/xhtml");
|
|
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/* make clicking on links stand out a bit (bug 532206) */
|
|
* > *:not(embed):focus, * > *:focus > font {
|
|
outline: 2px solid @color_background_highlight@ !important;
|
|
/*
|
|
XXX How do I preserve mac focusring without blowing focus color on other platforms?
|
|
outline-color: -moz-mac-focusring !important;
|
|
*/
|
|
}
|
|
|
|
*:-moz-any-link:focus {
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background-color: @color_background_highlight@;
|
|
color: @color_text_highlight@;
|
|
}
|
|
|
|
/* Style the scrollbars */
|
|
html xul|scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
xul|window xul|scrollbar {
|
|
display: block;
|
|
}
|
|
|
|
xul|scrollbar[orient="vertical"] {
|
|
-moz-appearance: none !important;
|
|
opacity: 0;
|
|
position: relative;
|
|
margin-left: -8px;
|
|
min-width: 8px;
|
|
background-color: transparent !important;
|
|
background-image: none !important;
|
|
border: 0px solid transparent !important;
|
|
}
|
|
|
|
xul|scrollbar[orient="vertical"]:-moz-locale-dir(rtl) {
|
|
margin-left: 2px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
xul|scrollbar[orient="vertical"] xul|thumb {
|
|
max-width: 6px !important;
|
|
min-width: 6px !important;
|
|
}
|
|
|
|
xul|scrollbar[orient="horizontal"] {
|
|
-moz-appearance: none !important;
|
|
opacity: 0;
|
|
position: relative;
|
|
min-height: 8px;
|
|
margin-top: -8px;
|
|
background-color: transparent !important;
|
|
background-image: none !important;
|
|
border: 0px solid transparent !important;
|
|
}
|
|
|
|
xul|scrollbar[orient="horizontal"] xul|thumb {
|
|
max-height: 6px !important;
|
|
min-height: 6px !important;
|
|
}
|
|
|
|
xul|*[panning="true"] xul|scrollbar {
|
|
opacity: 1;
|
|
}
|
|
|
|
xul|scrollbox {
|
|
overflow-y: scroll;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
xul|scrollbarbutton {
|
|
min-height: 8px !important;
|
|
min-width: 8px !important;
|
|
-moz-appearance: none !important;
|
|
visibility: hidden;
|
|
}
|
|
|
|
xul|scrollbarbutton[sbattr="scrollbar-up-top"],
|
|
xul|scrollbarbutton[sbattr="scrollbar-bottom-top"] {
|
|
display: none;
|
|
}
|
|
|
|
xul|scrollbar xul|thumb {
|
|
background-color: @color_background_scroller@ !important;
|
|
-moz-border-top-colors: none !important;
|
|
-moz-border-bottom-colors: none !important;
|
|
-moz-border-right-colors: none !important;
|
|
-moz-border-left-colors: none !important;
|
|
border: 1px solid rgba(255, 255, 255, 0.4) !important;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
select:not([size]):not([multiple]) > xul|scrollbar,
|
|
select[size="1"] > xul|scrollbar,
|
|
select:not([size]):not([multiple]) xul|scrollbarbutton,
|
|
select[size="1"] xul|scrollbarbutton {
|
|
display: block;
|
|
margin-left: 0;
|
|
min-width: 16px;
|
|
}
|
|
|
|
/* Override inverse OS themes */
|
|
select,
|
|
textarea,
|
|
button,
|
|
xul|button,
|
|
* > input:not([type="image"]) {
|
|
-moz-appearance: none !important; /* See bug 598421 for fixing the platform */
|
|
border-radius: 3px;
|
|
}
|
|
|
|
select[size],
|
|
select[multiple],
|
|
select[size][multiple],
|
|
textarea,
|
|
* > input:not([type="image"]) {
|
|
border-style: solid;
|
|
border-color: #7d7d7d;
|
|
color: #414141;
|
|
background: white -moz-linear-gradient(top, rgba(115,115,115,0.5) 0, rgba(215,215,215,0.5) 3px, rgba(255,255,255,0.2) 16px);
|
|
}
|
|
|
|
/* Selects are handled by the form helper, see bug 685197 */
|
|
select option, select optgroup {
|
|
pointer-events: none;
|
|
}
|
|
|
|
input:-moz-placeholder,
|
|
textarea:-moz-placeholder {
|
|
color: GrayText;
|
|
}
|
|
|
|
select:not([size]):not([multiple]),
|
|
select[size="0"],
|
|
select[size="1"],
|
|
* > input[type="button"],
|
|
* > input[type="submit"],
|
|
* > input[type="reset"],
|
|
button {
|
|
border-style: solid;
|
|
border-color: #7d7d7d;
|
|
color: #414141;
|
|
background: white -moz-linear-gradient(top, rgba(255,255,255,0.2) 0, rgba(215,215,215,0.5) 18px, rgba(115,115,115,0.5) 100%);
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
background: white -moz-linear-gradient(top, rgba(115,115,115,0.5) 0, rgba(215,215,215,0.5) 2px, rgba(255,255,255,0.2) 6px);
|
|
}
|
|
|
|
input[type="radio"] {
|
|
background: -moz-radial-gradient(6px 6px, cover, rgba(255,255,255,0.2) 3px, rgba(195,195,195,0.5) 5px, rgba(115,115,115,0.5) 100%);
|
|
}
|
|
|
|
select {
|
|
border-width: 1px;
|
|
padding: 1px;
|
|
}
|
|
|
|
select:not([size]):not([multiple]),
|
|
select[size="0"],
|
|
select[size="1"] {
|
|
padding: 0 1px 0 1px;
|
|
}
|
|
|
|
* > input:not([type="image"]) {
|
|
border-width: 1px;
|
|
padding: 1px;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
border-width: 1px;
|
|
padding: 2px 1px 2px 1px;
|
|
}
|
|
|
|
input[type="button"],
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
button {
|
|
border-width: 1px;
|
|
padding: 0 7px 0 7px;
|
|
}
|
|
|
|
input[type="radio"],
|
|
input[type="checkbox"] {
|
|
max-width: 14px;
|
|
max-height: 14px;
|
|
border: 1px solid #a7a7a7 !important;
|
|
padding: 2px 1px 2px 1px;
|
|
}
|
|
|
|
select > button {
|
|
border-width: 0px !important;
|
|
margin: 0px !important;
|
|
padding: 0px !important;
|
|
border-radius: 0;
|
|
color: #414141;
|
|
|
|
background-size: auto auto, 100% 90%;
|
|
background-color: transparent;
|
|
background-image: url("chrome://browser/skin/images/dropmarker.svg"),
|
|
-moz-radial-gradient(bottom left, #bbbbbb 40%, #f5f5f5) !important;
|
|
background-position: -moz-calc(50% + 1px) center, -15px center !important;
|
|
background-repeat: no-repeat !important;
|
|
|
|
font-size: inherit;
|
|
}
|
|
|
|
select[size]:focus,
|
|
select[multiple]:focus,
|
|
select[size][multiple]:focus,
|
|
textarea:focus,
|
|
input[type="file"]:focus > input[type="text"],
|
|
* > input:not([type="image"]):focus {
|
|
outline: 0px !important;
|
|
border-style: solid;
|
|
border-color: rgb(94,128,153);
|
|
background: white -moz-linear-gradient(top, rgba(27,113,177,0.5) 0, rgba(198,225,246,0.2) 3px, rgba(255,255,255,0.2) 16px);
|
|
}
|
|
|
|
select:not([size]):not([multiple]):focus,
|
|
select[size="0"]:focus,
|
|
select[size="1"]:focus,
|
|
input[type="button"]:focus,
|
|
input[type="submit"]:focus,
|
|
input[type="reset"]:focus,
|
|
button:focus {
|
|
outline: 0px !important;
|
|
border-style: solid;
|
|
border-color: rgb(94,128,153);
|
|
background: white -moz-linear-gradient(top, rgba(255,255,255,0.2) 0, rgba(198,225,256,0.2) 18px, rgba(27,113,177,0.5) 100%);
|
|
}
|
|
|
|
input[type="checkbox"]:focus,
|
|
input[type="radio"]:focus {
|
|
border-color: #99c6e0 !important;
|
|
}
|
|
|
|
input[type="checkbox"]:focus {
|
|
background: white -moz-linear-gradient(top, rgba(27,113,177,0.5) 0, rgba(198,225,246,0.2) 2px, rgba(255,255,255,0.2) 6px);
|
|
}
|
|
|
|
input[type="radio"]:focus {
|
|
background: -moz-radial-gradient(6px 6px, cover, rgba(255,255,255,0.2) 3px, rgba(198,225,246,0.2) 5px, rgba(27,113,177,0.5) 100%);
|
|
}
|
|
|
|
/* we need to be specific for selects because the above rules are specific too */
|
|
textarea[disabled],
|
|
select[size][disabled],
|
|
select[multiple][disabled],
|
|
select[size][multiple][disabled],
|
|
select:not([size]):not([multiple])[disabled],
|
|
select[size="0"][disabled],
|
|
select[size="1"][disabled],
|
|
button[disabled],
|
|
* > input:not([type="image"])[disabled] {
|
|
color: rgba(0,0,0,0.3);
|
|
border-color: rgba(125,125,125,0.4);
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
background: transparent -moz-linear-gradient(top, rgba(185,185,185,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(255,255,255,0.4) 100%);
|
|
}
|
|
|
|
select:not([size]):not([multiple])[disabled],
|
|
select[size="0"][disabled],
|
|
select[size="1"][disabled] {
|
|
background: transparent -moz-linear-gradient(top, rgba(255,255,255,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(185,185,185,0.4) 100%);
|
|
}
|
|
|
|
input[type="button"][disabled],
|
|
input[type="submit"][disabled],
|
|
input[type="reset"][disabled],
|
|
button[disabled="true"] {
|
|
padding: 0 7px 0 7px;
|
|
background: transparent -moz-linear-gradient(top, rgba(255,255,255,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(185,185,185,0.4) 100%);
|
|
}
|
|
|
|
input[type="radio"][disabled],
|
|
input[type="radio"][disabled]:active,
|
|
input[type="radio"][disabled]:hover,
|
|
input[type="radio"][disabled]:hover:active,
|
|
input[type="checkbox"][disabled],
|
|
input[type="checkbox"][disabled]:active,
|
|
input[type="checkbox"][disabled]:hover,
|
|
input[type="checkbox"][disabled]:hover:active {
|
|
border:1px solid rgba(125,125,125,0.4) !important;
|
|
}
|
|
|
|
select[disabled] > button {
|
|
opacity: 0.6;
|
|
padding: 1px 7px 1px 7px;
|
|
}
|
|
|
|
/* -moz-touch-enabled? media elements */
|
|
video > xul|videocontrols,
|
|
audio > xul|videocontrols {
|
|
-moz-binding: url("chrome://global/content/bindings/videocontrols.xml#touchControls");
|
|
}
|
|
|
|
*:-moz-any-link:active,
|
|
*[role=button]:active,
|
|
button:active,
|
|
input:active,
|
|
option:active,
|
|
select:active,
|
|
label:active,
|
|
textarea:active {
|
|
background-color: @color_background_highlight_overlay@ !important;
|
|
}
|
|
|
|
/*
|
|
* Generate an additional space after the anonymous div to make it easier to
|
|
* to position the caret at the end of the text
|
|
*/
|
|
input > .anonymous-div:after {
|
|
content: "";
|
|
margin: 16px;
|
|
}
|
|
|
|
/*
|
|
* Enforce nearest scaling for video in order not to lose too much performance
|
|
* after fixing bug 598736 ("Use higher-quality imageinterpolation on mobile")
|
|
*/
|
|
video {
|
|
image-rendering: -moz-crisp-edges;
|
|
}
|
|
|
|
xul|menulist {
|
|
-moz-binding: url("chrome://browser/content/bindings.xml#menulist");
|
|
}
|