summaryrefslogtreecommitdiff
path: root/src/chrome/mozapps
diff options
context:
space:
mode:
authorVineet Kumar <git@vineetk.net>2022-08-29 17:02:12 -0400
committerVineet Kumar <git@vineetk.net>2026-05-14 17:02:12 -0400
commit199c684366d6cf7431513ff15bae9861166a3a19 (patch)
treeab143c779ca20d6ba39be37b2ee2b93b2802cfa2 /src/chrome/mozapps
parent48c977ab7fcab19dc4da19bba4b209b220c0a33e (diff)
Diffstat (limited to 'src/chrome/mozapps')
-rw-r--r--src/chrome/mozapps/aboutProfiles.css4
-rw-r--r--src/chrome/mozapps/aboutServiceWorkers.css6
-rw-r--r--src/chrome/mozapps/downloads/downloads.css8
-rw-r--r--src/chrome/mozapps/extensions/about.css4
-rw-r--r--src/chrome/mozapps/extensions/eula.css4
-rw-r--r--src/chrome/mozapps/extensions/extensions.css24
-rw-r--r--src/chrome/mozapps/plugins/pluginProblem.css8
-rw-r--r--src/chrome/mozapps/xpinstall/xpinstallConfirm.css8
8 files changed, 33 insertions, 33 deletions
diff --git a/src/chrome/mozapps/aboutProfiles.css b/src/chrome/mozapps/aboutProfiles.css
index 051112f..73ab2da 100644
--- a/src/chrome/mozapps/aboutProfiles.css
+++ b/src/chrome/mozapps/aboutProfiles.css
@@ -3,7 +3,7 @@
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5html { 5html {
6 --aboutProfiles-table-background: rgb(0,0,0); 6 --aboutProfiles-table-background: #181411;
7 background-color: var(--in-content-frame-background); /* was var(--in-content-page-background) --johnGraciliano */ 7 background-color: var(--in-content-frame-background); /* was var(--in-content-page-background) --johnGraciliano */
8 padding: 48px 48px; 8 padding: 48px 48px;
9} 9}
@@ -16,7 +16,7 @@ body {
16 box-sizing: content-box; 16 box-sizing: content-box;
17 max-width: 90em; 17 max-width: 90em;
18 background-color: var(--in-content-page-background); 18 background-color: var(--in-content-page-background);
19 color: #fff; 19 color: #bfbbb6;
20 border: 1px solid var(--in-content-main-border-color); 20 border: 1px solid var(--in-content-main-border-color);
21 border-radius: 10px; 21 border-radius: 10px;
22 padding: 3em 30px; 22 padding: 3em 30px;
diff --git a/src/chrome/mozapps/aboutServiceWorkers.css b/src/chrome/mozapps/aboutServiceWorkers.css
index f915c23..31a08fb 100644
--- a/src/chrome/mozapps/aboutServiceWorkers.css
+++ b/src/chrome/mozapps/aboutServiceWorkers.css
@@ -11,7 +11,7 @@ body {
11 11
12.warningBackground { 12.warningBackground {
13 display: none; 13 display: none;
14 background: rgb(0,0,0); 14 background: #181411;
15 width:100%; 15 width:100%;
16 height:100%; 16 height:100%;
17 z-index:10; 17 z-index:10;
@@ -21,7 +21,7 @@ body {
21} 21}
22 22
23.warningMessage { 23.warningMessage {
24 color: #fff; 24 color: #bfbbb6;
25 position: relative; 25 position: relative;
26 min-width: 330px; 26 min-width: 330px;
27 max-width: 50em; 27 max-width: 50em;
@@ -30,7 +30,7 @@ body {
30 border-radius: 10px; 30 border-radius: 10px;
31 padding: 3em; 31 padding: 3em;
32 padding-inline-start: 30px; 32 padding-inline-start: 30px;
33 background: rgb(0,0,0); 33 background: #181411;
34 margin-left: auto; 34 margin-left: auto;
35 text-align: center; 35 text-align: center;
36} 36}
diff --git a/src/chrome/mozapps/downloads/downloads.css b/src/chrome/mozapps/downloads/downloads.css
index c6c49f4..543157b 100644
--- a/src/chrome/mozapps/downloads/downloads.css
+++ b/src/chrome/mozapps/downloads/downloads.css
@@ -7,7 +7,7 @@
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 7 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 8
9#downloadManager { 9#downloadManager {
10 background-color: rgb(0,0,0); 10 background-color: #181411;
11} 11}
12 12
13/* Download View */ 13/* Download View */
@@ -15,7 +15,7 @@
15 -moz-appearance: none; 15 -moz-appearance: none;
16 margin: 0; 16 margin: 0;
17 border-bottom: 1px solid rgb(64,64,64); 17 border-bottom: 1px solid rgb(64,64,64);
18 background-color: rgb(0,0,0); 18 background-color: #181411;
19} 19}
20 20
21/* Download View Items */ 21/* Download View Items */
@@ -118,7 +118,7 @@ richlistitem[type="download"] .dateTime {
118} 118}
119 119
120#downloadManager { 120#downloadManager {
121 background: rgb(0,0,0); 121 background: #181411;
122} 122}
123 123
124windowdragbox { 124windowdragbox {
@@ -134,7 +134,7 @@ windowdragbox {
134#searchbox { 134#searchbox {
135 margin-inline-end: 0; 135 margin-inline-end: 0;
136 margin-bottom: 0; 136 margin-bottom: 0;
137 background-color: rgb(0,0,0); 137 background-color: #181411;
138 border-radius: 5px; 138 border-radius: 5px;
139 border: 1px solid rgb(64,64,64); 139 border: 1px solid rgb(64,64,64);
140} 140}
diff --git a/src/chrome/mozapps/extensions/about.css b/src/chrome/mozapps/extensions/about.css
index 9cdfa0a..2b9d16a 100644
--- a/src/chrome/mozapps/extensions/about.css
+++ b/src/chrome/mozapps/extensions/about.css
@@ -11,8 +11,8 @@
11 11
12#clientBox, 12#clientBox,
13.dialog-button-box { 13.dialog-button-box {
14 background-color: rgb(0,0,0); 14 background-color: #181411;
15 color: #fff; 15 color: #bfbbb6;
16} 16}
17 17
18.basic-info { 18.basic-info {
diff --git a/src/chrome/mozapps/extensions/eula.css b/src/chrome/mozapps/extensions/eula.css
index e8afc78..b17ed95 100644
--- a/src/chrome/mozapps/extensions/eula.css
+++ b/src/chrome/mozapps/extensions/eula.css
@@ -35,8 +35,8 @@
35 35
36#eula { 36#eula {
37 -moz-appearance: none; 37 -moz-appearance: none;
38 color: #fff; 38 color: #bfbbb6;
39 background-color: rgb(0,0,0); 39 background-color: #181411;
40 margin: 1em; 40 margin: 1em;
41 border: 1px solid; 41 border: 1px solid;
42 -moz-border-top-colors: ActiveBorder; 42 -moz-border-top-colors: ActiveBorder;
diff --git a/src/chrome/mozapps/extensions/extensions.css b/src/chrome/mozapps/extensions/extensions.css
index 6a22924..14c4b2a 100644
--- a/src/chrome/mozapps/extensions/extensions.css
+++ b/src/chrome/mozapps/extensions/extensions.css
@@ -147,7 +147,7 @@
147.category { 147.category {
148 -moz-appearance: none; 148 -moz-appearance: none;
149 background-color: transparent; 149 background-color: transparent;
150 color: #fff; 150 color: #bfbbb6;
151 min-height: 0; 151 min-height: 0;
152 padding: 0 4px; 152 padding: 0 4px;
153 border-width: 1px; 153 border-width: 1px;
@@ -184,7 +184,7 @@
184 184
185.category[selected] { 185.category[selected] {
186 background-color: rgb(110,110,110); 186 background-color: rgb(110,110,110);
187 color: #fff; 187 color: #bfbbb6;
188 border-color: rgb(50,50,50); 188 border-color: rgb(50,50,50);
189 border-inline-end-color: rgb(75,75,75); 189 border-inline-end-color: rgb(75,75,75);
190} 190}
@@ -272,8 +272,8 @@
272#header-search { 272#header-search {
273 margin: 0; 273 margin: 0;
274 -moz-appearance: none; 274 -moz-appearance: none;
275 background-color: rgb(0,0,0); 275 background-color: #181411;
276 color: #fff; 276 color: #bfbbb6;
277 border: 1px solid rgb(64,64,64); 277 border: 1px solid rgb(64,64,64);
278 border-radius: 5px; 278 border-radius: 5px;
279 padding: 4px 5px; 279 padding: 4px 5px;
@@ -307,7 +307,7 @@
307 307
308.sorter { 308.sorter {
309 -moz-appearance: none; 309 -moz-appearance: none;
310 color: #fff; 310 color: #bfbbb6;
311 padding: 0 6px; 311 padding: 0 6px;
312 margin: 0 6px; 312 margin: 0 6px;
313 min-width: 12px !important; 313 min-width: 12px !important;
@@ -377,7 +377,7 @@
377} 377}
378 378
379.addon { 379.addon {
380 color: #fff; 380 color: #bfbbb6;
381 border-top: 1px solid rgb(75,75,75); 381 border-top: 1px solid rgb(75,75,75);
382 padding: 5px; 382 padding: 5px;
383 background-origin: border-box; 383 background-origin: border-box;
@@ -436,7 +436,7 @@
436.name-container { 436.name-container {
437 font-size: 150%; 437 font-size: 150%;
438 font-weight: bold; 438 font-weight: bold;
439 color: #fff; 439 color: #bfbbb6;
440 margin-bottom: 0; 440 margin-bottom: 0;
441 -moz-box-align: end; 441 -moz-box-align: end;
442 -moz-box-flex: 1; 442 -moz-box-flex: 1;
@@ -447,7 +447,7 @@
447} 447}
448 448
449.creator .text-link { 449.creator .text-link {
450 color: #fff; 450 color: #bfbbb6;
451} 451}
452 452
453.description-container { 453.description-container {
@@ -593,7 +593,7 @@
593 593
594.addon[selected] { 594.addon[selected] {
595 background-color: rgb(1,1,1); 595 background-color: rgb(1,1,1);
596 color: #fff; 596 color: #bfbbb6;
597} 597}
598 598
599.addon[active="false"][selected]/* .name-container*/ { 599.addon[active="false"][selected]/* .name-container*/ {
@@ -753,7 +753,7 @@
753 border: 1px solid #DDD; 753 border: 1px solid #DDD;
754 margin-bottom: 2em; 754 margin-bottom: 2em;
755 padding: 1em; 755 padding: 1em;
756 background-color: #000; 756 background-color: #181411;
757} 757}
758 758
759#detail-contrib-description { 759#detail-contrib-description {
@@ -1056,14 +1056,14 @@ button.button-link {
1056 border: none; 1056 border: none;
1057 box-shadow: none; 1057 box-shadow: none;
1058 text-decoration: underline; 1058 text-decoration: underline;
1059 color: #fff; 1059 color: #bfbbb6;
1060 cursor: pointer; 1060 cursor: pointer;
1061 min-width: 0; 1061 min-width: 0;
1062 margin: 0 6px; 1062 margin: 0 6px;
1063} 1063}
1064 1064
1065.text-link { 1065.text-link {
1066 color: #fff; 1066 color: #bfbbb6;
1067} 1067}
1068 1068
1069.button-link:hover, 1069.button-link:hover,
diff --git a/src/chrome/mozapps/plugins/pluginProblem.css b/src/chrome/mozapps/plugins/pluginProblem.css
index 7b4b59c..05380f5 100644
--- a/src/chrome/mozapps/plugins/pluginProblem.css
+++ b/src/chrome/mozapps/plugins/pluginProblem.css
@@ -13,7 +13,7 @@
13 display: table; 13 display: table;
14 width: 100%; 14 width: 100%;
15 height: 100%; 15 height: 100%;
16 background-color: rgb(0,0,0); 16 background-color: #181411;
17 color: white; 17 color: white;
18 -moz-user-select: none; 18 -moz-user-select: none;
19 position: relative; 19 position: relative;
@@ -30,7 +30,7 @@
30:-moz-handler-vulnerable-updatable .hoverBox:active, 30:-moz-handler-vulnerable-updatable .hoverBox:active,
31:-moz-handler-vulnerable-no-update .hoverBox:active, 31:-moz-handler-vulnerable-no-update .hoverBox:active,
32:-moz-handler-clicktoplay .hoverBox:active { 32:-moz-handler-clicktoplay .hoverBox:active {
33 background-color: rgb(0, 0, 0); 33 background-color: #181411;
34} 34}
35 35
36:-moz-handler-clicktoplay .hoverBox:active .msgTapToPlay, 36:-moz-handler-clicktoplay .hoverBox:active .msgTapToPlay,
@@ -195,13 +195,13 @@ html|a {
195.action-link { 195.action-link {
196 display: inline-block; 196 display: inline-block;
197 border-radius: 10px; 197 border-radius: 10px;
198 background-color: rgb(0, 0, 0); 198 background-color: #181411;
199 padding: 2px 8px; 199 padding: 2px 8px;
200 margin-top: 7px; 200 margin-top: 7px;
201 text-decoration: none; 201 text-decoration: none;
202} 202}
203.action-link:active { 203.action-link:active {
204 background-color: rgb(0, 0, 0); 204 background-color: #181411;
205} 205}
206 206
207:-moz-handler-vulnerable-updatable .action-link { 207:-moz-handler-vulnerable-updatable .action-link {
diff --git a/src/chrome/mozapps/xpinstall/xpinstallConfirm.css b/src/chrome/mozapps/xpinstall/xpinstallConfirm.css
index cd51dd3..5eae47e 100644
--- a/src/chrome/mozapps/xpinstall/xpinstallConfirm.css
+++ b/src/chrome/mozapps/xpinstall/xpinstallConfirm.css
@@ -11,8 +11,8 @@
11 margin: 3px 4px 10px 4px; 11 margin: 3px 4px 10px 4px;
12 height: 14em; 12 height: 14em;
13 border: 1px solid rgb(64,64,64); 13 border: 1px solid rgb(64,64,64);
14 background-color: rgb(0,0,0); 14 background-color: #181411;
15 color: #fff; 15 color: #bfbbb6;
16} 16}
17 17
18#itemWarningIntro { 18#itemWarningIntro {
@@ -64,8 +64,8 @@ installitem {
64 -moz-appearance: none; 64 -moz-appearance: none;
65 border: none; 65 border: none;
66 padding: 0; 66 padding: 0;
67 background-color: rgb(0,0,0); 67 background-color: #181411;
68 color: #fff; 68 color: #bfbbb6;
69 margin-top: 1px; 69 margin-top: 1px;
70 margin-bottom: 1px; 70 margin-bottom: 1px;
71 margin-inline-start: 6px; 71 margin-inline-start: 6px;