mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 928787 - Convert in-content preference style sheets to LF; r=jaws
This commit is contained in:
parent
d4f46d2178
commit
564612b251
0
browser/components/preferences/in-content/applications.js
Executable file → Normal file
0
browser/components/preferences/in-content/applications.js
Executable file → Normal file
@ -1,155 +1,155 @@
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid ThreeDShadow;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar");
|
||||
}
|
||||
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar");
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar");
|
||||
}
|
||||
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar");
|
||||
}
|
||||
|
||||
#back-btn[disabled="true"]:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#forward-btn[disabled="true"]:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#back-btn[disabled="true"]:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#forward-btn[disabled="true"]:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
.header-button .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid ThreeDShadow;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar");
|
||||
}
|
||||
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar");
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar");
|
||||
}
|
||||
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar");
|
||||
}
|
||||
|
||||
#back-btn[disabled="true"]:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#forward-btn[disabled="true"]:-moz-locale-dir(ltr) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#back-btn[disabled="true"]:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
#forward-btn[disabled="true"]:-moz-locale-dir(rtl) {
|
||||
list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar&state=disabled");
|
||||
}
|
||||
|
||||
.header-button .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
|
@ -1,166 +1,166 @@
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid rgba(60,73,97,0.5);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
list-style-image: url(chrome://mozapps/skin/extensions/navigation.png);
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr),
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-right: none;
|
||||
-moz-image-region: rect(0, 20px, 20px, 0);
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl),
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
-moz-image-region: rect(0, 40px, 20px, 20px);
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
.header-button {
|
||||
-moz-appearance: none;
|
||||
padding: 0 4px;
|
||||
margin: 0;
|
||||
height: 22px;
|
||||
border: 1px solid rgba(60,73,97,0.5);
|
||||
border-radius: @toolbarbuttonCornerRadius@;
|
||||
box-shadow: inset 0 1px rgba(255,255,255,0.25), 0 1px rgba(255,255,255,0.25);
|
||||
background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0));
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.header-button .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] .toolbarbutton-icon {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.header-button:not([disabled="true"]):active:hover,
|
||||
.header-button[open="true"] {
|
||||
border-color: rgba(45,54,71,0.7);
|
||||
box-shadow: inset 0 0 4px rgb(45,54,71), 0 1px rgba(255,255,255,0.25);
|
||||
background-image: linear-gradient(rgba(45,54,71,0.6), rgba(45,54,71,0));
|
||||
}
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid rgba(60,73,97,0.5);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
list-style-image: url(chrome://mozapps/skin/extensions/navigation.png);
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr),
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-right: none;
|
||||
-moz-image-region: rect(0, 20px, 20px, 0);
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl),
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
-moz-image-region: rect(0, 40px, 20px, 20px);
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
.header-button {
|
||||
-moz-appearance: none;
|
||||
padding: 0 4px;
|
||||
margin: 0;
|
||||
height: 22px;
|
||||
border: 1px solid rgba(60,73,97,0.5);
|
||||
border-radius: @toolbarbuttonCornerRadius@;
|
||||
box-shadow: inset 0 1px rgba(255,255,255,0.25), 0 1px rgba(255,255,255,0.25);
|
||||
background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0));
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.header-button .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] .toolbarbutton-icon {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.header-button:not([disabled="true"]):active:hover,
|
||||
.header-button[open="true"] {
|
||||
border-color: rgba(45,54,71,0.7);
|
||||
box-shadow: inset 0 0 4px rgb(45,54,71), 0 1px rgba(255,255,255,0.25);
|
||||
background-image: linear-gradient(rgba(45,54,71,0.6), rgba(45,54,71,0));
|
||||
}
|
||||
|
@ -1,177 +1,177 @@
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid rgba(31,64,100,0.4);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
list-style-image: url(chrome://mozapps/skin/extensions/navigation.png);
|
||||
}
|
||||
|
||||
#forward-btn {
|
||||
-moz-border-start: none;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr),
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
-moz-image-region: rect(0, 18px, 18px, 0);
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl),
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
-moz-image-region: rect(0, 36px, 18px, 18px);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.header-button {
|
||||
-moz-appearance: none;
|
||||
padding: 1px 3px;
|
||||
color: #444;
|
||||
text-shadow: 0 0 3px white;
|
||||
background: linear-gradient(
|
||||
rgba(251,252,253,0.95),
|
||||
rgba(246,247,248,0) 49%,
|
||||
rgba(211,212,213,0.45) 51%,
|
||||
rgba(225,226,229, 0.3));
|
||||
background-clip: padding-box;
|
||||
border-radius: 2.5px;
|
||||
border: 1px solid rgba(31,64,100,0.4);
|
||||
border-top-color: rgba(31,64,100,0.3);
|
||||
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset,
|
||||
0 0 2px 1px rgba(255, 255, 255, 0.25) inset;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] > .toolbarbutton-icon {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.header-button:not([disabled="true"]):active:hover,
|
||||
.header-button[open="true"] {
|
||||
background-color: rgba(61, 76, 92, 0.2);
|
||||
border-color: rgba(39, 53, 68, 0.5);
|
||||
box-shadow: 0 0 3px 1px rgba(39, 53, 68, 0.2) inset;
|
||||
}
|
||||
|
||||
.header-button > .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
/* - 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/. */
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
||||
#preferences-home {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.landingButton {
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: vertical;
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.landingButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.landingButton-label {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.landingButton-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.preference-icon {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-image: url("chrome://browser/skin/preferences/Options.png");
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.preference-icon[type="general"],
|
||||
.landingButton-icon[type="general"] {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="content"],
|
||||
.landingButton-icon[type="content"] {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="applications"],
|
||||
.landingButton-icon[type="applications"] {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="privacy"],
|
||||
.landingButton-icon[type="privacy"] {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="security"],
|
||||
.landingButton-icon[type="security"] {
|
||||
background-position: -160px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="advanced"],
|
||||
.landingButton-icon[type="advanced"] {
|
||||
background-position: -192px 0;
|
||||
}
|
||||
|
||||
.preference-icon[type="sync"],
|
||||
.landingButton-icon[type="sync"] {
|
||||
background-image: url("chrome://browser/skin/preferences/Options-sync.png");
|
||||
}
|
||||
|
||||
caption {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
height: 50px;
|
||||
background-color: rgba(192,199,210,0.7);
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-bottom: 15px;
|
||||
-moz-box-align: center;
|
||||
}
|
||||
|
||||
prefpane > .content-box {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Applications Pane Styles */
|
||||
|
||||
#applications-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#handlersView {
|
||||
-moz-appearance: none;
|
||||
border: 1px solid rgba(31,64,100,0.4);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* XXX This style is for bug 740213 and should be removed once that
|
||||
bug has a solution. */
|
||||
description > html|a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* XXX Styles Below can be removed once bug 660726 lands */
|
||||
.nav-button {
|
||||
list-style-image: url(chrome://mozapps/skin/extensions/navigation.png);
|
||||
}
|
||||
|
||||
#forward-btn {
|
||||
-moz-border-start: none;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(ltr),
|
||||
#forward-btn:-moz-locale-dir(rtl) {
|
||||
-moz-image-region: rect(0, 18px, 18px, 0);
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
#back-btn:-moz-locale-dir(rtl),
|
||||
#forward-btn:-moz-locale-dir(ltr) {
|
||||
-moz-image-region: rect(0, 36px, 18px, 18px);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.header-button {
|
||||
-moz-appearance: none;
|
||||
padding: 1px 3px;
|
||||
color: #444;
|
||||
text-shadow: 0 0 3px white;
|
||||
background: linear-gradient(
|
||||
rgba(251,252,253,0.95),
|
||||
rgba(246,247,248,0) 49%,
|
||||
rgba(211,212,213,0.45) 51%,
|
||||
rgba(225,226,229, 0.3));
|
||||
background-clip: padding-box;
|
||||
border-radius: 2.5px;
|
||||
border: 1px solid rgba(31,64,100,0.4);
|
||||
border-top-color: rgba(31,64,100,0.3);
|
||||
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset,
|
||||
0 0 2px 1px rgba(255, 255, 255, 0.25) inset;
|
||||
}
|
||||
|
||||
.header-button[disabled="true"] > .toolbarbutton-icon {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.header-button:not([disabled="true"]):active:hover,
|
||||
.header-button[open="true"] {
|
||||
background-color: rgba(61, 76, 92, 0.2);
|
||||
border-color: rgba(39, 53, 68, 0.5);
|
||||
box-shadow: 0 0 3px 1px rgba(39, 53, 68, 0.2) inset;
|
||||
}
|
||||
|
||||
.header-button > .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user