make checkboxes in in-content prefs captions look and work decently
[themes.git] / LCARStrek / browser / aboutWelcomeBack.css
CommitLineData
e7c8bab1
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#errorPageContainer {
6 background-image: url("chrome://global/skin/icons/information-64.png");
8c5bee4f
RK
7 height: auto;
8}
9
10/* tablist starts out hidden, but JS may make it visible in response to
11 clicks on the radio buttons by setting an "available" attribute.
12*/
13#tabList {
14 display: none;
15}
16
17#tabList[available] {
18 display: -moz-box;
19}
20
21.radioRestoreContainer {
22 display: flex;
23}
24
25.radioRestoreButton {
26 flex: 0 0 auto;
27}
28
29.radioRestoreButton:-moz-focusring {
30 outline: 1px dotted #008484;
31}
32
33.radioChooseLabel {
34 flex: 1 1 auto;
35}
36
37/* We want errorTrailerDesc to have the same padding-top as errorShortDesc
38 has padding-bottom
39*/
40#errorTrailerDesc {
41 padding-top: 1em;
e7c8bab1 42}