зеркало из https://github.com/mozilla/gecko-dev.git
1028 строки
24 KiB
CSS
1028 строки
24 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/. */
|
|
|
|
/**
|
|
* A minimal set of rules for the XUL elements that may be implicitly created
|
|
* as part of HTML/SVG documents (e.g. scrollbars) can be found over in
|
|
* minimal-xul.css. Rules for everything else related to XUL can be found in
|
|
* this file. Make sure you choose the correct style sheet when adding new
|
|
* rules. (This split of the XUL rules is to minimize memory use and improve
|
|
* performance in HTML/SVG documents.)
|
|
*
|
|
* This file should also not contain any app specific styling. Defaults for
|
|
* widgets of a particular application should be in that application's style
|
|
* sheet. For example, style definitions for navigator can be found in
|
|
* navigator.css.
|
|
*
|
|
* THIS FILE IS LOCKED DOWN. YOU ARE NOT ALLOWED TO MODIFY IT WITHOUT FIRST
|
|
* HAVING YOUR CHANGES REVIEWED BY enndeakin@gmail.com
|
|
*/
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
|
|
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
|
|
@namespace xbl url("http://www.mozilla.org/xbl"); /* namespace for XBL elements */
|
|
|
|
:root {
|
|
--animation-easing-function: cubic-bezier(.07, .95, 0, 1);
|
|
}
|
|
|
|
/* ::::::::::
|
|
:: Rules for 'hiding' portions of the chrome for special
|
|
:: kinds of windows (not JUST browser windows) with toolbars
|
|
::::: */
|
|
|
|
window[chromehidden~="menubar"] .chromeclass-menubar,
|
|
window[chromehidden~="directories"] .chromeclass-directories,
|
|
window[chromehidden~="status"] .chromeclass-status,
|
|
window[chromehidden~="extrachrome"] .chromeclass-extrachrome,
|
|
window[chromehidden~="location"] .chromeclass-location,
|
|
window[chromehidden~="location"][chromehidden~="toolbar"] .chromeclass-toolbar,
|
|
window[chromehidden~="toolbar"] .chromeclass-toolbar-additional {
|
|
display: none;
|
|
}
|
|
|
|
/* ::::::::::
|
|
:: Rules for forcing direction for entry and display of URIs
|
|
:: or URI elements
|
|
::::: */
|
|
|
|
.uri-element {
|
|
direction: ltr !important;
|
|
}
|
|
|
|
/****** elements that have no visual representation ******/
|
|
|
|
script, data,
|
|
commands, commandset, command,
|
|
broadcasterset, broadcaster, observes,
|
|
keyset, key, toolbarpalette, toolbarset,
|
|
template, rule, conditions, action,
|
|
bindings, binding, content, member, triple,
|
|
treechildren, treeitem, treeseparator, treerow, treecell {
|
|
display: none;
|
|
}
|
|
|
|
xbl|children {
|
|
display: none !important;
|
|
}
|
|
|
|
/********** focus rules **********/
|
|
|
|
button,
|
|
checkbox,
|
|
colorpicker[type="button"],
|
|
datepicker[type="grid"],
|
|
menulist,
|
|
radiogroup,
|
|
tree,
|
|
browser,
|
|
editor,
|
|
iframe {
|
|
-moz-user-focus: normal;
|
|
}
|
|
|
|
menulist[editable="true"] {
|
|
-moz-user-focus: ignore;
|
|
}
|
|
|
|
/******** window & page ******/
|
|
|
|
window,
|
|
page {
|
|
overflow: -moz-hidden-unscrollable;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/******** box *******/
|
|
|
|
vbox {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/********** button **********/
|
|
|
|
button {
|
|
-moz-binding: url("chrome://global/content/bindings/button.xml#button");
|
|
}
|
|
|
|
button[type="menu"] {
|
|
-moz-binding: url("chrome://global/content/bindings/button.xml#menu");
|
|
}
|
|
|
|
button[type="menu-button"] {
|
|
-moz-binding: url("chrome://global/content/bindings/button.xml#menu-button");
|
|
}
|
|
|
|
/********** toolbarbutton **********/
|
|
|
|
toolbarbutton {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#toolbarbutton");
|
|
}
|
|
|
|
toolbarbutton.badged-button > toolbarbutton,
|
|
toolbarbutton.badged-button {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#toolbarbutton-badged");
|
|
}
|
|
|
|
.toolbarbutton-badge:not([value]),
|
|
.toolbarbutton-badge[value=""] {
|
|
display: none;
|
|
}
|
|
|
|
toolbarbutton[type="menu"] {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#menu");
|
|
}
|
|
|
|
toolbarbutton.badged-button[type="menu"] {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#toolbarbutton-badged-menu");
|
|
}
|
|
|
|
toolbarbutton:not([type="menu"]) > .toolbarbutton-menu-dropmarker,
|
|
toolbar[mode="icons"] .toolbarbutton-text,
|
|
toolbar[mode="icons"] .toolbarbutton-multiline-text,
|
|
toolbar[mode="text"] .toolbarbutton-icon,
|
|
.toolbarbutton-multiline-text:not([wrap="true"]),
|
|
.toolbarbutton-text[wrap="true"] {
|
|
display: none;
|
|
-moz-binding: none;
|
|
}
|
|
|
|
/******** browser, editor, iframe ********/
|
|
|
|
browser,
|
|
editor,
|
|
iframe {
|
|
display: inline;
|
|
}
|
|
|
|
@supports -moz-bool-pref("layout.css.emulate-moz-box-with-flex") {
|
|
browser,
|
|
editor,
|
|
iframe {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
browser {
|
|
-moz-binding: url("chrome://global/content/bindings/browser.xml#browser");
|
|
}
|
|
|
|
browser[remote=true]:not(.lightweight) {
|
|
-moz-binding: url("chrome://global/content/bindings/remote-browser.xml#remote-browser");
|
|
}
|
|
|
|
editor {
|
|
-moz-binding: url("chrome://global/content/bindings/editor.xml#editor");
|
|
}
|
|
|
|
iframe {
|
|
-moz-binding: url("chrome://global/content/bindings/general.xml#iframe");
|
|
}
|
|
|
|
/********** notifications **********/
|
|
|
|
notificationbox {
|
|
-moz-binding: url("chrome://global/content/bindings/notification.xml#notificationbox");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.notificationbox-stack {
|
|
overflow: -moz-hidden-unscrollable;
|
|
}
|
|
|
|
notification {
|
|
-moz-binding: url("chrome://global/content/bindings/notification.xml#notification");
|
|
}
|
|
|
|
notification.animated {
|
|
transition: margin-top 300ms var(--animation-easing-function), opacity 300ms var(--animation-easing-function);
|
|
}
|
|
|
|
/*********** popup notification ************/
|
|
popupnotification {
|
|
-moz-binding: url("chrome://global/content/bindings/notification.xml#popup-notification");
|
|
}
|
|
|
|
.popup-notification-menubutton:not([label]) {
|
|
display: none;
|
|
}
|
|
|
|
/********** checkbox **********/
|
|
|
|
checkbox {
|
|
-moz-binding: url("chrome://global/content/bindings/checkbox.xml#checkbox");
|
|
}
|
|
|
|
/********** radio **********/
|
|
|
|
radiogroup {
|
|
-moz-binding: url("chrome://global/content/bindings/radio.xml#radiogroup");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
radio {
|
|
-moz-binding: url("chrome://global/content/bindings/radio.xml#radio");
|
|
}
|
|
|
|
/******** groupbox *********/
|
|
|
|
groupbox {
|
|
-moz-binding: url("chrome://global/content/bindings/groupbox.xml#groupbox");
|
|
display: -moz-groupbox;
|
|
}
|
|
|
|
caption {
|
|
-moz-binding: url("chrome://global/content/bindings/groupbox.xml#caption");
|
|
}
|
|
|
|
.groupbox-body {
|
|
-moz-box-pack: inherit;
|
|
-moz-box-align: inherit;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/******** draggable elements *********/
|
|
|
|
%ifndef MOZ_WIDGET_GTK
|
|
titlebar,
|
|
toolbar:not([nowindowdrag="true"]):not([customizing="true"]) {
|
|
-moz-window-dragging: drag;
|
|
}
|
|
%endif
|
|
|
|
/* The list below is non-comprehensive and will probably need some tweaking. */
|
|
toolbaritem,
|
|
toolbarbutton,
|
|
toolbarseparator,
|
|
button,
|
|
textbox,
|
|
tab,
|
|
radio,
|
|
splitter,
|
|
scale,
|
|
menulist {
|
|
-moz-window-dragging: no-drag;
|
|
}
|
|
|
|
/******* toolbar *******/
|
|
|
|
toolbox {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
toolbar[customizing="true"][collapsed="true"] {
|
|
/* Some apps, e.g. Firefox, use 'collapsed' to hide toolbars.
|
|
Override it while customizing. */
|
|
visibility: visible;
|
|
}
|
|
|
|
toolbar[customizing="true"][hidden="true"] {
|
|
/* Some apps, e.g. SeaMonkey, use 'hidden' to hide toolbars.
|
|
Override it while customizing. */
|
|
display: -moz-box;
|
|
}
|
|
|
|
%ifdef XP_MACOSX
|
|
toolbar[type="menubar"] {
|
|
min-height: 0 !important;
|
|
border: 0 !important;
|
|
}
|
|
%else
|
|
toolbar[type="menubar"][autohide="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar-menubar-autohide");
|
|
overflow: hidden;
|
|
}
|
|
|
|
toolbar[type="menubar"][autohide="true"][inactive="true"]:not([customizing="true"]) {
|
|
min-height: 0 !important;
|
|
height: 0 !important;
|
|
-moz-appearance: none !important;
|
|
border-style: none !important;
|
|
}
|
|
%endif
|
|
|
|
toolbarspring {
|
|
-moz-box-flex: 1000;
|
|
}
|
|
|
|
toolbarpaletteitem {
|
|
-moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbarpaletteitem");
|
|
}
|
|
|
|
toolbarpaletteitem[place="palette"] {
|
|
-moz-box-orient: vertical;
|
|
-moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbarpaletteitem-palette");
|
|
}
|
|
|
|
/********* menu ***********/
|
|
|
|
menubar > menu {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menu-menubar");
|
|
}
|
|
|
|
menubar > menu.menu-iconic {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menu-menubar-iconic");
|
|
}
|
|
|
|
menu {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menu");
|
|
}
|
|
|
|
menu.menu-iconic {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menu-iconic");
|
|
}
|
|
|
|
menubar > menu:empty {
|
|
visibility: collapse;
|
|
}
|
|
|
|
/********* menuitem ***********/
|
|
|
|
menuitem {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem");
|
|
}
|
|
|
|
menuitem.menuitem-iconic {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic");
|
|
}
|
|
|
|
menuitem[type="checkbox"],
|
|
menuitem[type="radio"] {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic");
|
|
}
|
|
|
|
menucaption {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menucaption");
|
|
}
|
|
|
|
.menu-text {
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
/********* popup & menupopup ***********/
|
|
|
|
/* <popup> is deprecated. Only <menupopup> and <tooltip> are still valid. */
|
|
|
|
popup,
|
|
menupopup {
|
|
-moz-binding: url("chrome://global/content/bindings/popup.xml#popup");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
panel {
|
|
-moz-binding: url("chrome://global/content/bindings/popup.xml#panel");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
popup,
|
|
menupopup,
|
|
panel,
|
|
tooltip {
|
|
display: -moz-popup;
|
|
z-index: 2147483647;
|
|
text-shadow: none;
|
|
}
|
|
|
|
tooltip {
|
|
-moz-binding: url("chrome://global/content/bindings/popup.xml#tooltip");
|
|
-moz-box-orient: vertical;
|
|
white-space: pre-wrap;
|
|
margin-top: 21px;
|
|
}
|
|
|
|
panel[type="arrow"] {
|
|
-moz-binding: url("chrome://global/content/bindings/popup.xml#arrowpanel");
|
|
}
|
|
|
|
%ifdef MOZ_WIDGET_COCOA
|
|
|
|
/* On Mac, use the properties "-moz-window-transform" and "-moz-window-opacity"
|
|
instead of "transform" and "opacity" for these animations.
|
|
The -moz-window* properties apply to the whole window including the window's
|
|
shadow, and they don't affect the window's "shape", so the system doesn't
|
|
have to recompute the shadow shape during the animation. This makes them a
|
|
lot faster. In fact, Gecko no longer triggers shadow shape recomputations
|
|
for repaints.
|
|
These properties are not implemented on other platforms. */
|
|
panel[type="arrow"][side]:not([animate="false"]) {
|
|
-moz-window-opacity: 0;
|
|
-moz-window-transform: translateY(-70px);
|
|
transition-property: -moz-window-transform, -moz-window-opacity;
|
|
transition-duration: 0.18s, 0.18s;
|
|
transition-timing-function:
|
|
var(--animation-easing-function), ease-out;
|
|
}
|
|
|
|
panel[type="arrow"][side="bottom"]:not([animate="false"]) {
|
|
-moz-window-transform: translateY(70px);
|
|
}
|
|
|
|
panel[type="arrow"][side][animate="open"] {
|
|
-moz-window-opacity: 1.0;
|
|
transition-duration: 0.18s, 0.18s;
|
|
-moz-window-transform: none;
|
|
transition-timing-function:
|
|
var(--animation-easing-function), ease-in-out;
|
|
}
|
|
|
|
panel[type="arrow"][side][animate="cancel"] {
|
|
-moz-window-transform: none;
|
|
}
|
|
|
|
%elifndef MOZ_WIDGET_GTK
|
|
|
|
panel[type="arrow"][side] {
|
|
will-change: transform, opacity; /* workaround for bug 1414033 */
|
|
}
|
|
|
|
panel[type="arrow"][side]:not([animate="false"]) {
|
|
opacity: 0;
|
|
transform: translateY(-70px);
|
|
transition-property: transform, opacity;
|
|
transition-duration: 0.18s, 0.18s;
|
|
transition-timing-function:
|
|
var(--animation-easing-function), ease-out;
|
|
}
|
|
|
|
panel[type="arrow"][side="bottom"]:not([animate="false"]) {
|
|
transform: translateY(70px);
|
|
}
|
|
|
|
panel[type="arrow"][side][animate="open"] {
|
|
opacity: 1.0;
|
|
transition-duration: 0.18s, 0.18s;
|
|
transform: none;
|
|
transition-timing-function:
|
|
var(--animation-easing-function), ease-in-out;
|
|
}
|
|
|
|
panel[type="arrow"][side][animate="cancel"] {
|
|
transform: none;
|
|
}
|
|
|
|
%endif
|
|
panel[type="arrow"][animating] {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/******** grid **********/
|
|
|
|
grid {
|
|
display: -moz-grid;
|
|
}
|
|
|
|
rows,
|
|
columns {
|
|
display: -moz-grid-group;
|
|
}
|
|
|
|
row,
|
|
column {
|
|
display: -moz-grid-line;
|
|
}
|
|
|
|
rows {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
column {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/******** listbox **********/
|
|
|
|
listbox {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listbox");
|
|
}
|
|
|
|
listhead {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listhead");
|
|
}
|
|
|
|
listrows {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listrows");
|
|
}
|
|
|
|
listitem {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem");
|
|
}
|
|
|
|
listitem[type="checkbox"] {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem-checkbox");
|
|
}
|
|
|
|
listheader {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listheader");
|
|
-moz-box-ordinal-group: 2147483646;
|
|
}
|
|
|
|
listcell {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell");
|
|
}
|
|
|
|
listcell[type="checkbox"] {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell-checkbox");
|
|
}
|
|
|
|
.listitem-iconic {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem-iconic");
|
|
}
|
|
|
|
.listcell-iconic {
|
|
-moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell-iconic");
|
|
}
|
|
|
|
listbox {
|
|
display: -moz-grid;
|
|
}
|
|
|
|
listbox[rows] {
|
|
height: auto;
|
|
}
|
|
|
|
listcols, listhead, listrows, listboxbody {
|
|
display: -moz-grid-group;
|
|
}
|
|
|
|
listcol, listitem, listheaditem {
|
|
display: -moz-grid-line;
|
|
}
|
|
|
|
listbox {
|
|
-moz-user-focus: normal;
|
|
-moz-box-orient: vertical;
|
|
min-width: 0px;
|
|
min-height: 0px;
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
listhead {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
listrows {
|
|
-moz-box-orient: vertical;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
listboxbody {
|
|
-moz-box-orient: vertical;
|
|
-moz-box-flex: 1;
|
|
/* Don't permit a horizontal scrollbar. See bug 285449 */
|
|
overflow-x: hidden !important;
|
|
overflow-y: auto;
|
|
min-height: 0px;
|
|
}
|
|
|
|
listcol {
|
|
-moz-box-orient: vertical;
|
|
min-width: 16px;
|
|
}
|
|
|
|
listcell {
|
|
-moz-box-align: center;
|
|
}
|
|
|
|
/******** tree ******/
|
|
|
|
tree {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#tree");
|
|
}
|
|
|
|
treecols {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#treecols");
|
|
}
|
|
|
|
treecol {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#treecol");
|
|
-moz-box-ordinal-group: 2147483646;
|
|
}
|
|
|
|
treecol.treecol-image {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#treecol-image");
|
|
}
|
|
|
|
tree > treechildren {
|
|
display: -moz-box;
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#treebody");
|
|
-moz-user-select: none;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
treerows {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#treerows");
|
|
}
|
|
|
|
treecolpicker {
|
|
-moz-binding: url("chrome://global/content/bindings/tree.xml#columnpicker");
|
|
}
|
|
|
|
tree {
|
|
-moz-box-orient: vertical;
|
|
min-width: 0px;
|
|
min-height: 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
tree[hidecolumnpicker="true"] > treecols > treecolpicker {
|
|
display: none;
|
|
}
|
|
|
|
treecol {
|
|
min-width: 16px;
|
|
}
|
|
|
|
treecol[hidden="true"] {
|
|
visibility: collapse;
|
|
display: -moz-box;
|
|
}
|
|
|
|
.tree-scrollable-columns {
|
|
/* Yes, Virginia, this makes it scrollable */
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ::::: lines connecting cells ::::: */
|
|
tree:not([treelines="true"]) > treechildren::-moz-tree-line {
|
|
visibility: hidden;
|
|
}
|
|
|
|
treechildren::-moz-tree-cell(ltr) {
|
|
direction: ltr !important;
|
|
}
|
|
|
|
/********** deck & stack *********/
|
|
|
|
deck {
|
|
display: -moz-deck;
|
|
-moz-binding: url("chrome://global/content/bindings/general.xml#deck");
|
|
}
|
|
|
|
stack {
|
|
display: -moz-stack;
|
|
}
|
|
|
|
/********** tabbox *********/
|
|
|
|
tabbox {
|
|
-moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabbox");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
tabs {
|
|
-moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabs");
|
|
-moz-box-orient: horizontal;
|
|
}
|
|
|
|
tab {
|
|
-moz-binding: url("chrome://global/content/bindings/tabbox.xml#tab");
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
tab[selected="true"]:not([ignorefocus="true"]) {
|
|
-moz-user-focus: normal;
|
|
}
|
|
|
|
tabpanels {
|
|
-moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabpanels");
|
|
display: -moz-deck;
|
|
}
|
|
|
|
/********** progressmeter **********/
|
|
|
|
progressmeter {
|
|
-moz-binding: url("chrome://global/content/bindings/progressmeter.xml#progressmeter");
|
|
}
|
|
|
|
/********** basic rule for anonymous content that needs to pass box properties through
|
|
********** to an insertion point parent that holds the real kids **************/
|
|
|
|
.box-inherit {
|
|
-moz-box-orient: inherit;
|
|
-moz-box-pack: inherit;
|
|
-moz-box-align: inherit;
|
|
-moz-box-direction: inherit;
|
|
}
|
|
|
|
/********** textbox **********/
|
|
|
|
textbox {
|
|
-moz-binding: url("chrome://global/content/bindings/textbox.xml#textbox");
|
|
-moz-user-select: text;
|
|
text-shadow: none;
|
|
}
|
|
|
|
textbox[multiline="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/textbox.xml#textarea");
|
|
}
|
|
|
|
.textbox-input-box {
|
|
-moz-binding: url("chrome://global/content/bindings/textbox.xml#input-box");
|
|
}
|
|
|
|
html|textarea.textbox-textarea {
|
|
resize: none;
|
|
}
|
|
|
|
textbox[resizable="true"] > .textbox-input-box > html|textarea.textbox-textarea {
|
|
resize: both;
|
|
}
|
|
|
|
.textbox-input-box[spellcheck="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/textbox.xml#input-box-spell");
|
|
}
|
|
|
|
textbox[type="search"] {
|
|
-moz-binding: url("chrome://global/content/bindings/textbox.xml#search-textbox");
|
|
}
|
|
|
|
textbox[type="number"] {
|
|
-moz-binding: url("chrome://global/content/bindings/numberbox.xml#numberbox");
|
|
}
|
|
|
|
.textbox-contextmenu:-moz-locale-dir(rtl) {
|
|
direction: rtl;
|
|
}
|
|
|
|
/********** autocomplete textbox **********/
|
|
|
|
/* SeaMonkey uses its own autocomplete and the toolkit's autocomplete widget */
|
|
%ifndef MOZ_SUITE
|
|
|
|
textbox[type="autocomplete"] {
|
|
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#autocomplete");
|
|
}
|
|
|
|
panel[type="autocomplete-richlistbox"] {
|
|
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#autocomplete-rich-result-popup");
|
|
}
|
|
|
|
.autocomplete-richlistbox {
|
|
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#autocomplete-richlistbox");
|
|
-moz-user-focus: ignore;
|
|
}
|
|
|
|
.autocomplete-richlistbox > scrollbox {
|
|
overflow-x: hidden !important;
|
|
}
|
|
|
|
.autocomplete-richlistitem {
|
|
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#autocomplete-richlistitem");
|
|
-moz-box-orient: vertical;
|
|
overflow: -moz-hidden-unscrollable;
|
|
}
|
|
|
|
%endif
|
|
|
|
/* The following rule is here to fix bug 96899 (and now 117952).
|
|
Somehow trees create a situation
|
|
in which a popupset flows itself as if its popup child is directly within it
|
|
instead of the placeholder child that should actually be inside the popupset.
|
|
This is a stopgap measure, and it does not address the real bug. */
|
|
.autocomplete-result-popupset {
|
|
max-width: 0px;
|
|
width: 0 !important;
|
|
min-width: 0%;
|
|
min-height: 0%;
|
|
}
|
|
|
|
/********** colorpicker **********/
|
|
|
|
colorpicker {
|
|
-moz-binding: url("chrome://global/content/bindings/colorpicker.xml#colorpicker");
|
|
}
|
|
|
|
colorpicker[type="button"] {
|
|
-moz-binding: url("chrome://global/content/bindings/colorpicker.xml#colorpicker-button");
|
|
}
|
|
|
|
/********** menulist **********/
|
|
|
|
menulist {
|
|
-moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist");
|
|
}
|
|
|
|
menulist[popuponly="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-popuponly");
|
|
-moz-appearance: none !important;
|
|
margin: 0 !important;
|
|
height: 0 !important;
|
|
min-height: 0 !important;
|
|
border: 0 !important;
|
|
}
|
|
|
|
menulist[editable="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-editable");
|
|
}
|
|
|
|
menulist > menupopup > menuitem {
|
|
-moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic-noaccel");
|
|
}
|
|
|
|
html|*.menulist-editable-input {
|
|
-moz-appearance: none !important;
|
|
background: transparent ! important;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
dropmarker {
|
|
-moz-binding: url("chrome://global/content/bindings/general.xml#dropmarker");
|
|
}
|
|
|
|
/********** splitter **********/
|
|
|
|
.tree-splitter {
|
|
width: 0px;
|
|
max-width: 0px;
|
|
min-width: 0% ! important;
|
|
min-height: 0% ! important;
|
|
-moz-box-ordinal-group: 2147483646;
|
|
}
|
|
|
|
/********** scale **************/
|
|
|
|
scale {
|
|
-moz-binding: url(chrome://global/content/bindings/scale.xml#scale);
|
|
}
|
|
|
|
.scale-slider {
|
|
-moz-binding: url(chrome://global/content/bindings/general.xml#basecontrol);
|
|
-moz-user-focus: normal;
|
|
}
|
|
|
|
/******** scrollbar ********/
|
|
|
|
slider {
|
|
/* This is a hint to layerization that the scrollbar thumb can never leave
|
|
the scrollbar track. */
|
|
overflow: hidden;
|
|
}
|
|
|
|
/******** scrollbox ********/
|
|
|
|
scrollbox {
|
|
-moz-binding: url("chrome://global/content/bindings/scrollbox.xml#scrollbox");
|
|
/* This makes it scrollable! */
|
|
overflow: hidden;
|
|
}
|
|
|
|
scrollbox[smoothscroll=true] {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
arrowscrollbox {
|
|
-moz-binding: url("chrome://global/content/bindings/scrollbox.xml#arrowscrollbox");
|
|
}
|
|
|
|
arrowscrollbox[clicktoscroll="true"] {
|
|
-moz-binding: url("chrome://global/content/bindings/scrollbox.xml#arrowscrollbox-clicktoscroll");
|
|
}
|
|
|
|
autorepeatbutton {
|
|
-moz-binding: url("chrome://global/content/bindings/scrollbox.xml#autorepeatbutton");
|
|
}
|
|
|
|
/********** stringbundle **********/
|
|
|
|
stringbundleset {
|
|
visibility: collapse;
|
|
}
|
|
|
|
stringbundle {
|
|
-moz-binding: url("chrome://global/content/bindings/stringbundle.xml#stringbundle");
|
|
visibility: collapse;
|
|
}
|
|
|
|
/********** dialog **********/
|
|
|
|
dialog,
|
|
dialog:root /* override :root from above */ {
|
|
-moz-binding: url("chrome://global/content/bindings/dialog.xml#dialog");
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/********* page ************/
|
|
|
|
page {
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/********** wizard **********/
|
|
|
|
wizard,
|
|
wizard:root /* override :root from above */ {
|
|
-moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard");
|
|
-moz-box-orient: vertical;
|
|
width: 40em;
|
|
height: 30em;
|
|
}
|
|
|
|
wizardpage {
|
|
-moz-binding: url("chrome://global/content/bindings/wizard.xml#wizardpage");
|
|
-moz-box-orient: vertical;
|
|
overflow: auto;
|
|
}
|
|
|
|
.wizard-header {
|
|
-moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-header");
|
|
}
|
|
|
|
.wizard-buttons {
|
|
-moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-buttons");
|
|
}
|
|
|
|
/********** Rich Listbox ********/
|
|
|
|
richlistbox {
|
|
-moz-binding: url('chrome://global/content/bindings/richlistbox.xml#richlistbox');
|
|
-moz-user-focus: normal;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
richlistitem {
|
|
-moz-binding: url('chrome://global/content/bindings/richlistbox.xml#richlistitem');
|
|
}
|
|
|
|
richlistbox > listheader {
|
|
-moz-box-ordinal-group: 1;
|
|
}
|
|
|
|
|
|
/*********** findbar ************/
|
|
findbar {
|
|
-moz-binding: url('chrome://global/content/bindings/findbar.xml#findbar');
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.findbar-textbox {
|
|
-moz-binding: url("chrome://global/content/bindings/findbar.xml#findbar-textbox");
|
|
}
|
|
|
|
/*********** tabmodalprompt ************/
|
|
tabmodalprompt {
|
|
-moz-binding: url("chrome://global/content/tabprompts.xml#tabmodalprompt");
|
|
overflow: hidden;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.button-highlightable-text:not([highlightable="true"]),
|
|
.button-text[highlightable="true"],
|
|
.menulist-highlightable-label:not([highlightable="true"]),
|
|
.menulist-label[highlightable="true"],
|
|
.menu-iconic-highlightable-text:not([highlightable="true"]),
|
|
.menu-iconic-text[highlightable="true"] {
|
|
display: none;
|
|
}
|
|
|
|
@supports -moz-bool-pref("layout.css.emulate-moz-box-with-flex") {
|
|
/* Support common XUL attributes in the emulated flex mode so we can
|
|
test the browser in this configuration without mass-changing existing
|
|
markup and CSS. */
|
|
[orient="vertical"] { -moz-box-orient: vertical; }
|
|
[orient="horizontal"] { -moz-box-orient: horizontal; }
|
|
|
|
[dir="reverse"] { -moz-box-direction: reverse; }
|
|
|
|
[align="start"] { -moz-box-align: start; }
|
|
[align="center"] { -moz-box-align: center; }
|
|
[align="end"] { -moz-box-align: end; }
|
|
[align="baseline"] { -moz-box-align: baseline; }
|
|
[align="stretch"] { -moz-box-align: stretch; }
|
|
|
|
[pack="start"] { -moz-box-pack: start; }
|
|
[pack="center"] { -moz-box-pack: center; }
|
|
[pack="end"] { -moz-box-pack: end; }
|
|
|
|
/* This isn't a real solution for [flex] and [ordinal], but it covers enough
|
|
cases to render the browser chrome. If we get attr() in Bug 435426 this could
|
|
work for all cases. */
|
|
[flex="1"] { -moz-box-flex: 1; }
|
|
[flex="2"] { -moz-box-flex: 2; }
|
|
[flex="3"] { -moz-box-flex: 3; }
|
|
[flex="4"] { -moz-box-flex: 4; }
|
|
[flex="5"] { -moz-box-flex: 5; }
|
|
[flex="6"] { -moz-box-flex: 6; }
|
|
[flex="7"] { -moz-box-flex: 7; }
|
|
[flex="8"] { -moz-box-flex: 8; }
|
|
[flex="9"] { -moz-box-flex: 9; }
|
|
[flex="100"] { -moz-box-flex: 100; }
|
|
[flex="400"] { -moz-box-flex: 400; }
|
|
[flex="1000"] { -moz-box-flex: 1000; }
|
|
[flex="10000"] { -moz-box-flex: 10000; }
|
|
|
|
[ordinal="1"] { -moz-box-ordinal-group: 1; }
|
|
[ordinal="2"] { -moz-box-ordinal-group: 2; }
|
|
[ordinal="3"] { -moz-box-ordinal-group: 3; }
|
|
[ordinal="4"] { -moz-box-ordinal-group: 4; }
|
|
[ordinal="5"] { -moz-box-ordinal-group: 5; }
|
|
[ordinal="6"] { -moz-box-ordinal-group: 6; }
|
|
[ordinal="7"] { -moz-box-ordinal-group: 7; }
|
|
[ordinal="8"] { -moz-box-ordinal-group: 8; }
|
|
[ordinal="9"] { -moz-box-ordinal-group: 9; }
|
|
[ordinal="1000"] { -moz-box-ordinal-group: 1000; }
|
|
}
|