2011-02-24 05:18:36 +03:00
|
|
|
/* ***** 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>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
|
/* Content Navigator popup ------------------------------------------------- */
|
|
|
|
#content-navigator {
|
|
|
|
display: none;
|
|
|
|
pointer-events: none;
|
|
|
|
padding: 0;
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator[type="find"],
|
2011-03-09 22:58:07 +03:00
|
|
|
#content-navigator[type="form"]:not([disabled="true"]) {
|
2011-02-24 05:18:36 +03:00
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator > .previous-button,
|
|
|
|
#content-navigator > .next-button {
|
2011-05-24 04:27:47 +04:00
|
|
|
min-width: @touch_button_small@ !important; /* button size */
|
|
|
|
min-height: @touch_button_small@ !important; /* button size */
|
2011-03-08 22:52:06 +03:00
|
|
|
border: @border_width_tiny@ solid rgba(0,0,0,0.2) !important;
|
|
|
|
border-bottom: @border_width_large@ solid #53565a !important;
|
|
|
|
background-color: #5e6166;
|
|
|
|
background-image: none !important;
|
|
|
|
box-shadow: black 0 @border_radius_tiny@ @border_radius_tiny@;
|
2011-02-24 05:18:36 +03:00
|
|
|
pointer-events: auto;
|
|
|
|
-moz-user-focus: ignore !important;
|
|
|
|
}
|
|
|
|
|
2011-03-08 22:52:06 +03:00
|
|
|
#content-navigator > .previous-button[disabled="true"] {
|
|
|
|
list-style-image: url("chrome://browser/skin/images/previous-disabled-hdpi.png");
|
|
|
|
}
|
|
|
|
|
2011-02-24 05:18:36 +03:00
|
|
|
#content-navigator > .next-button[disabled="true"] {
|
2011-03-08 22:52:06 +03:00
|
|
|
list-style-image: url("chrome://browser/skin/images/next-disabled-hdpi.png");
|
2011-02-24 05:18:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator > .previous-button {
|
|
|
|
-moz-margin-end: 0;
|
2011-03-08 22:52:06 +03:00
|
|
|
-moz-border-end: @border_width_tiny@ solid rgba(0,0,0,0.2) !important;
|
2011-02-24 05:18:36 +03:00
|
|
|
list-style-image: url("chrome://browser/skin/images/previous-hdpi.png");
|
|
|
|
}
|
|
|
|
|
2011-03-01 18:44:09 +03:00
|
|
|
#content-navigator:-moz-locale-dir(ltr) > .previous-button {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator:-moz-locale-dir(rtl) > .previous-button {
|
2011-02-24 05:18:36 +03:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
2011-03-01 18:44:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator > .next-button {
|
|
|
|
-moz-margin-start: 0;
|
2011-03-08 22:52:06 +03:00
|
|
|
-moz-border-start: @border_width_tiny@ solid rgba(255,255,255,0.2) !important;
|
2011-02-24 05:18:36 +03:00
|
|
|
list-style-image: url("chrome://browser/skin/images/next-hdpi.png");
|
|
|
|
}
|
|
|
|
|
2011-03-01 18:44:09 +03:00
|
|
|
#content-navigator:-moz-locale-dir(ltr) > .next-button {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator:-moz-locale-dir(rtl) > .next-button {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
2011-02-24 05:18:36 +03:00
|
|
|
/* Find Helper ------------------------------------------------------------- */
|
|
|
|
#content-navigator[type="find"] > .previous-button {
|
2011-03-08 22:52:06 +03:00
|
|
|
/* previous button overlap the textbox */
|
|
|
|
-moz-margin-start: -@margin_normal@;
|
2011-02-24 05:18:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#content-navigator:not([type="find"]) > #find-helper-textbox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#find-helper-textbox {
|
|
|
|
pointer-events: auto;
|
|
|
|
margin: @margin_normal@;
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
padding: @padding_xnormal@;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#find-helper-textbox[status="1"] { /* Ci.nsITypeAheadFind.FIND_NOTFOUND */
|
|
|
|
background: rgb(255,200,200);
|
|
|
|
}
|
|
|
|
|
2011-03-01 03:34:03 +03:00
|
|
|
#find-helper-textbox:hover:active {
|
|
|
|
background: #8db8d8;
|
|
|
|
}
|
|
|
|
|
2011-02-24 05:18:36 +03:00
|
|
|
/* Form Helper Autofill ---------------------------------------------------- */
|
|
|
|
#form-helper-suggestions-container .panel-arrowcontent {
|
|
|
|
border-radius: @border_radius_normal@;
|
|
|
|
padding: 0; /* half core spacing & none (autorepeat arrows compensate) */
|
|
|
|
background-color: rgb(235,235,235);
|
|
|
|
background-image: url("chrome://browser/skin/images/button-bg.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions {
|
|
|
|
margin: 0;
|
|
|
|
color: black;
|
2011-03-25 12:34:41 +03:00
|
|
|
max-width: 0;
|
2011-02-24 05:18:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-down,
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-up {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-down {
|
|
|
|
list-style-image: url("chrome://browser/skin/images/arrowright-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-down:-moz-locale-dir(rtl) {
|
|
|
|
list-style-image: url("chrome://browser/skin/images/arrowleft-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-up {
|
|
|
|
list-style-image: url("chrome://browser/skin/images/arrowleft-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions > .autorepeatbutton-up:-moz-locale-dir(rtl) {
|
|
|
|
list-style-image: url("chrome://browser/skin/images/arrowright-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* force the autorepeat buttons to create a 'padding' when collapsed */
|
|
|
|
#form-helper-suggestions > autorepeatbutton[collapsed="true"],
|
|
|
|
#form-helper-suggestions > autorepeatbutton[disabled="true"] {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions .form-helper-suggestions-label {
|
|
|
|
padding: @padding_xxnormal@ @padding_normal@; /* 12px helps get row size for the labels */
|
|
|
|
margin: 0;
|
|
|
|
border-color: transparent rgb(215,215,215) transparent rgb(255,255,255);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: @border_width_tiny@;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions .form-helper-suggestions-label:first-child {
|
|
|
|
-moz-padding-start: -moz-initial; /* the arrowscrollbox creates enough left padding */
|
|
|
|
-moz-border-start: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions .form-helper-suggestions-label:last-child {
|
|
|
|
-moz-border-end: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form-helper-suggestions .form-helper-suggestions-label:hover:active {
|
|
|
|
background-color: #8db8d8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Select popup ------------------------------------------------------------- */
|
|
|
|
#select-container button {
|
|
|
|
display: none;
|
|
|
|
-moz-user-focus: ignore;
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#select-container[multiple="true"] button {
|
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#select-commands {
|
|
|
|
background: transparent;
|
|
|
|
border-top: @border_width_tiny@ solid rgb(205,205,205);
|
|
|
|
padding: 0;
|
|
|
|
-moz-user-focus: ignore;
|
|
|
|
}
|
|
|
|
|
2011-03-12 00:52:06 +03:00
|
|
|
/* listcell elements doesn't have flex="1" so we need to force it */
|
|
|
|
#select-commands .option-command > listcell {
|
|
|
|
-moz-box-flex: 1 !important;
|
|
|
|
}
|
|
|
|
|
2011-02-25 16:42:52 +03:00
|
|
|
/* menulist popup ---------------------------------------------------------- */
|
|
|
|
#menulist-commands {
|
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
|
2011-02-24 05:18:36 +03:00
|
|
|
/* Common style for Select & Menulist -------------------------------------- */
|
|
|
|
.options-title {
|
|
|
|
padding: @padding_xxnormal@ @padding_small@ @padding_small@ @padding_small@;
|
|
|
|
font-size: @font_small@;
|
|
|
|
}
|
|
|
|
|
|
|
|
.options-title[value=""] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-03-09 22:58:07 +03:00
|
|
|
.option-command image {
|
2011-02-24 05:18:36 +03:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin: @margin_tiny@;
|
|
|
|
}
|
|
|
|
|
2011-02-28 17:52:34 +03:00
|
|
|
.option-command.selected {
|
2011-02-24 05:18:36 +03:00
|
|
|
list-style-image: url("chrome://browser/skin/images/check-30.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-command.optgroup {
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
2011-03-12 00:52:06 +03:00
|
|
|
pointer-events: none;
|
2011-02-24 05:18:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.option-command .in-optgroup {
|
|
|
|
-moz-padding-start: -moz-calc(30px + @padding_large@);
|
|
|
|
}
|
|
|
|
|