зеркало из https://github.com/mozilla/gecko-dev.git
64 строки
1.3 KiB
CSS
64 строки
1.3 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/. */
|
|
|
|
%filter substitution
|
|
%include defines.inc
|
|
|
|
.pane {
|
|
-moz-box-pack: center;
|
|
-moz-box-align: center;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
#main-page {
|
|
background-image: url("chrome://branding/content/logo.png");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
|
|
#main-page:not([mode="loading"]) #loading-label,
|
|
#main-page[mode] #continue-in-button,
|
|
#main-page[mode] #change-language {
|
|
visibility: hidden;
|
|
}
|
|
|
|
#picker-title {
|
|
font-weight: bold;
|
|
font-size: @font_normal@;
|
|
}
|
|
|
|
.link {
|
|
padding: @padding_xlarge@ 0px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
richlistbox {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#installer-page {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
richlistitem {
|
|
height: @touch_row@;
|
|
font-size: @font_normal@;
|
|
border-bottom: @border_width_tiny@ solid gray;
|
|
padding: 0px @padding_normal@;
|
|
-moz-box-align: center;
|
|
}
|
|
|
|
richlistitem .checkbox {
|
|
width: 30px;
|
|
height: 30px;
|
|
list-style-image: url("chrome://browser/skin/images/check-unselected-30.png");
|
|
}
|
|
|
|
richlistitem[selected] .checkbox {
|
|
list-style-image: url("chrome://browser/skin/images/check-selected-30.png");
|
|
}
|