Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* General */
2 /* Specify the size for the wizardpage so the billboard has a fixed size. 3rd
3 party themes should typically specify the same values. */
4 wizardpage {
5 height: 360px;
6 width: 700px;
7 }
9 /* Remove margin and padding so the billboard will extend to the edge of the
10 window. 3rd party themes should typically specify the same values. */
11 #updates, .wizard-page-box {
12 margin: 0;
13 padding: 0;
14 }
16 .update-header {
17 padding: 0px 10px;
18 }
20 .update-content {
21 padding: 10px;
22 }
24 .loadingBox {
25 padding: 3px 5px 3px 5px;
26 }
28 .remoteLoadingThrobber {
29 margin-top: 3px;
30 }
32 .remoteLoadingThrobber[state="loading"] {
33 list-style-image: url("chrome://global/skin/icons/loading_16.png");
34 }
36 .remoteLoadingThrobber[state="error"] {
37 list-style-image: url("chrome://global/skin/icons/information-16.png");
38 }
40 .wizard-buttons-separator {
41 margin-top: 0 !important;
42 }
44 #licenseContent, #incompatibleListbox {
45 -moz-margin-start: 6px;
46 -moz-margin-end: 6px;
47 }
49 .inline-link {
50 color: -moz-nativehyperlinktext;
51 text-decoration: none;
52 }
54 .inline-link:hover {
55 text-decoration: underline;
56 }
58 /* Unsupported Page */
59 #unsupportedLabel, #unsupportedLinkLabel {
60 -moz-margin-start: 0;
61 -moz-padding-start: 0;
62 }
64 /* Update Found Basic Page */
65 #updateName, #updateFinishedName {
66 font-weight: bold;
67 font-size: larger;
68 }
70 /* License Page */
71 #licenseContent {
72 -moz-appearance: listbox;
73 }
75 /* Incompatible List Page */
76 #incompatibleListbox {
77 margin-bottom: 6px;
78 }
80 /* Downloading Page */
81 #downloadStatusLine {
82 -moz-box-align: center;
83 }
85 #downloadStatus {
86 height: 3em !important;
87 }
89 #downloadStatusProgress {
90 padding-right: 5px;
91 }
93 #pauseButton {
94 list-style-image: url(chrome://mozapps/skin/update/downloadButtons.png);
95 -moz-image-region: rect(0px, 48px, 16px, 32px);
96 -moz-appearance: none;
97 background-color: transparent;
98 border: none;
99 min-width: 0;
100 min-height: 0;
101 margin: 0;
102 padding: 0;
103 }
105 /* !Important must be used otherwise this won't immediately take affect */
106 #pauseButton > .button-box {
107 padding: 0 !important;
108 }
110 #pauseButton:hover {
111 -moz-image-region: rect(16px, 48px, 32px, 32px);
112 }
114 #pauseButton:active {
115 -moz-image-region: rect(32px, 48px, 48px, 32px);
116 }
118 #pauseButton[disabled="true"] {
119 -moz-image-region: rect(48px, 48px, 64px, 32px);
120 }
122 #pauseButton[paused="true"] {
123 -moz-image-region: rect(0px, 16px, 16px, 0px);
124 }
126 #pauseButton[paused="true"]:hover {
127 -moz-image-region: rect(16px, 16px, 32px, 0px);
128 }
130 #pauseButton[paused="true"]:active {
131 -moz-image-region: rect(32px, 16px, 48px, 0px);
132 }
134 #pauseButton[paused="true"][disabled="true"] {
135 -moz-image-region: rect(48px, 16px, 64px, 0px);
136 }
138 #verificationFailedIcon {
139 margin-left: 5px;
140 list-style-image: url("chrome://global/skin/icons/notfound.png");
141 }
143 /* Error Page */
144 #errorReason {
145 margin-top: 1px;
146 margin-bottom: 2px;
147 -moz-margin-start: 6px !important;
148 -moz-margin-end: 5px;
149 font-weight: bold;
150 }
152 /* Update History Window */
153 update {
154 border-bottom: 1px dotted #C0C0C0;
155 }
157 .update-name {
158 font-weight: bold;
159 }
161 .update-label-column {
162 -moz-box-align: end;
163 }
165 .update-type {
166 font-weight: bold;
167 color: #990000;
168 }
170 #historyItems {
171 -moz-appearance: listbox;
172 height: 200px;
173 margin: 1px 5px 4px 5px;
174 }
176 #historyItems > scrollbox {
177 margin-bottom: 1px;
178 }