diff options
| author | Vineet Kumar <git@vineetk.net> | 2022-08-29 17:02:12 -0400 |
|---|---|---|
| committer | Vineet Kumar <git@vineetk.net> | 2026-05-14 17:02:12 -0400 |
| commit | 199c684366d6cf7431513ff15bae9861166a3a19 (patch) | |
| tree | ab143c779ca20d6ba39be37b2ee2b93b2802cfa2 /src/chrome/browser | |
| parent | 48c977ab7fcab19dc4da19bba4b209b220c0a33e (diff) | |
Diffstat (limited to 'src/chrome/browser')
| -rw-r--r-- | src/chrome/browser/aboutCertError.css | 6 | ||||
| -rw-r--r-- | src/chrome/browser/aboutTabCrashed.css | 2 | ||||
| -rw-r--r-- | src/chrome/browser/browser.css | 85 | ||||
| -rw-r--r-- | src/chrome/browser/devtools.css | 6 | ||||
| -rw-r--r-- | src/chrome/browser/downloads/allDownloadsViewOverlay.css | 6 | ||||
| -rw-r--r-- | src/chrome/browser/downloads/downloads.css | 10 | ||||
| -rw-r--r-- | src/chrome/browser/feeds/subscribe.css | 16 | ||||
| -rw-r--r-- | src/chrome/browser/newtab/newTab.css | 28 | ||||
| -rw-r--r-- | src/chrome/browser/pageInfo.css | 24 | ||||
| -rw-r--r-- | src/chrome/browser/places/organizer.css | 18 | ||||
| -rw-r--r-- | src/chrome/browser/places/places.css | 4 | ||||
| -rw-r--r-- | src/chrome/browser/syncCommon.css | 2 | ||||
| -rw-r--r-- | src/chrome/browser/syncSetup.css | 6 | ||||
| -rw-r--r-- | src/chrome/browser/tabview/tabview.css | 2 |
14 files changed, 108 insertions, 107 deletions
diff --git a/src/chrome/browser/aboutCertError.css b/src/chrome/browser/aboutCertError.css index 17ed964..d5264d0 100644 --- a/src/chrome/browser/aboutCertError.css +++ b/src/chrome/browser/aboutCertError.css | |||
| @@ -4,13 +4,13 @@ | |||
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | html { | 6 | html { |
| 7 | background: rgb(0, 0, 0); | 7 | background: #181411; |
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | body { | 10 | body { |
| 11 | margin: 0; | 11 | margin: 0; |
| 12 | padding: 0 1em; | 12 | padding: 0 1em; |
| 13 | color: #fff; | 13 | color: #bfbbb6; |
| 14 | font: message-box; | 14 | font: message-box; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| @@ -33,7 +33,7 @@ h2 { | |||
| 33 | border-radius: 10px; | 33 | border-radius: 10px; |
| 34 | padding: 3em; | 34 | padding: 3em; |
| 35 | padding-inline-start: 30px; | 35 | padding-inline-start: 30px; |
| 36 | background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat rgb(0, 0, 0); | 36 | background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #181411; |
| 37 | background-origin: content-box; | 37 | background-origin: content-box; |
| 38 | } | 38 | } |
| 39 | 39 | ||
diff --git a/src/chrome/browser/aboutTabCrashed.css b/src/chrome/browser/aboutTabCrashed.css index 0689ed1..de29a00 100644 --- a/src/chrome/browser/aboutTabCrashed.css +++ b/src/chrome/browser/aboutTabCrashed.css | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | body { | 1 | body { |
| 2 | background-color: rgb(0, 0, 0); | 2 | background-color: #181411; |
| 3 | margin-top: 2em; | 3 | margin-top: 2em; |
| 4 | font: message-box; | 4 | font: message-box; |
| 5 | font-size: 100%; | 5 | font-size: 100%; |
diff --git a/src/chrome/browser/browser.css b/src/chrome/browser/browser.css index 483e076..6196e97 100644 --- a/src/chrome/browser/browser.css +++ b/src/chrome/browser/browser.css | |||
| @@ -7,18 +7,18 @@ | |||
| 7 | @namespace html url("http://www.w3.org/1999/xhtml"); | 7 | @namespace html url("http://www.w3.org/1999/xhtml"); |
| 8 | 8 | ||
| 9 | :root { | 9 | :root { |
| 10 | --tab-background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,1)); | 10 | --tab-background: #181411; |
| 11 | --tab-border-color: rgb(64,64,64); | 11 | --tab-border-color: #9a9a9a; |
| 12 | --tab-border-radius: 0px; | 12 | --tab-border-radius: 0px; |
| 13 | --tab-box-shadow: none; | 13 | --tab-box-shadow: none; |
| 14 | --tab-hover-background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)); | 14 | --tab-hover-background: rgba(24,20,17,.85); |
| 15 | --tab-hover-border: var(--tab-border-color); | 15 | --tab-hover-border: var(--tab-border-color); |
| 16 | --tab-pinned-background: linear-gradient(rgba(255,255,255,1) -8px, rgba(23,23,23,1), rgba(23,23,23,1)); | 16 | --tab-pinned-background: linear-gradient(rgba(255,255,255,1) -8px, rgba(23,23,23,1), rgba(23,23,23,1)); |
| 17 | --tab-selected-background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,1)); | 17 | --tab-selected-background: rgba(24,20,17,1); |
| 18 | --tab-selected-border: var(--tab-border-color); | 18 | --tab-selected-border: var(--tab-border-color); |
| 19 | 19 | ||
| 20 | --toolbar-border: rgba(64,64,64,1); | 20 | --toolbar-border: #9a9a9a; |
| 21 | --toolbar-highlight-top: rgba(32,32,32); | 21 | --toolbar-highlight-top: #2b2722; |
| 22 | --toolbar-highlight-bottom: var(--toolbar-highlight-top); | 22 | --toolbar-highlight-bottom: var(--toolbar-highlight-top); |
| 23 | 23 | ||
| 24 | --toolbarbutton-background-color: hsla(210,32%,93%,0); | 24 | --toolbarbutton-background-color: hsla(210,32%,93%,0); |
| @@ -55,12 +55,12 @@ | |||
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | #main-window:not(:-moz-lwtheme):after { | 57 | #main-window:not(:-moz-lwtheme):after { |
| 58 | color: #fff !important; | 58 | color: #bfbbb6 !important; |
| 59 | text-shadow: none !important; | 59 | text-shadow: none !important; |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | #main-window { | 62 | #main-window { |
| 63 | background-color: rgb(0,0,0); | 63 | background-color: #181411; |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | #menubar-items { | 66 | #menubar-items { |
| @@ -73,9 +73,9 @@ | |||
| 73 | 73 | ||
| 74 | #navigator-toolbox { | 74 | #navigator-toolbox { |
| 75 | -moz-appearance: none; | 75 | -moz-appearance: none; |
| 76 | background-color: rgb(0,0,0); /*transparent;*/ | 76 | background-color: #181411; /*transparent;*/ |
| 77 | border-top: none; | 77 | border-top: none; |
| 78 | color: #fff; | 78 | color: #bfbbb6; |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | #navigator-toolbox::after { | 81 | #navigator-toolbox::after { |
| @@ -83,7 +83,7 @@ | |||
| 83 | display: -moz-box; | 83 | display: -moz-box; |
| 84 | -moz-box-ordinal-group: 101; | 84 | -moz-box-ordinal-group: 101; |
| 85 | height: 1px; | 85 | height: 1px; |
| 86 | background-color: rgba(0,0,0,1); | 86 | background-color: #181411; |
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | #navigator-toolbox[tabsontop=false]::after, | 89 | #navigator-toolbox[tabsontop=false]::after, |
| @@ -94,16 +94,16 @@ | |||
| 94 | #navigator-toolbox > toolbar:not(:-moz-lwtheme) { | 94 | #navigator-toolbox > toolbar:not(:-moz-lwtheme) { |
| 95 | -moz-appearance: none; | 95 | -moz-appearance: none; |
| 96 | border-style: none; | 96 | border-style: none; |
| 97 | background-color: rgba(0,0,0,1); | 97 | background-color: #181411; |
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | #toolbar-menubar:not(:-moz-lwtheme), | 100 | #toolbar-menubar:not(:-moz-lwtheme), |
| 101 | #TabsToolbar[tabsontop=true]:not(:-moz-lwtheme), | 101 | #TabsToolbar[tabsontop=true]:not(:-moz-lwtheme), |
| 102 | #navigator-toolbox[tabsontop=false] > #nav-bar:not(:-moz-lwtheme), | 102 | #navigator-toolbox[tabsontop=false] > #nav-bar:not(:-moz-lwtheme), |
| 103 | #nav-bar + #customToolbars + #PersonalToolbar[collapsed=true] + #TabsToolbar[tabsontop=false]:last-child:not(:-moz-lwtheme) { | 103 | #nav-bar + #customToolbars + #PersonalToolbar[collapsed=true] + #TabsToolbar[tabsontop=false]:last-child:not(:-moz-lwtheme) { |
| 104 | background-color: rgb(0,0,0) !important; /*transparent !important;*/ | 104 | background-color: #181411 !important; /*transparent !important;*/ |
| 105 | background-image: none !important; | 105 | background-image: none !important; |
| 106 | color: #fff; | 106 | color: #bfbbb6; |
| 107 | border-left-style: none !important; | 107 | border-left-style: none !important; |
| 108 | border-right-style: none !important; | 108 | border-right-style: none !important; |
| 109 | } | 109 | } |
| @@ -153,7 +153,7 @@ | |||
| 153 | 153 | ||
| 154 | #print-preview-toolbar:not(:-moz-lwtheme) { | 154 | #print-preview-toolbar:not(:-moz-lwtheme) { |
| 155 | -moz-appearance: none; | 155 | -moz-appearance: none; |
| 156 | background-color: rgb(0, 0, 0); | 156 | background-color: #181411; |
| 157 | } | 157 | } |
| 158 | 158 | ||
| 159 | /* ::::: app menu button ::::: */ | 159 | /* ::::: app menu button ::::: */ |
| @@ -185,16 +185,16 @@ | |||
| 185 | 185 | ||
| 186 | #appmenu-popup { | 186 | #appmenu-popup { |
| 187 | -moz-appearance: none; | 187 | -moz-appearance: none; |
| 188 | background: rgb(0,0,0); | 188 | background: #181411; |
| 189 | border: 1px solid rgb(64,64,64); | 189 | border: 1px solid rgb(64,64,64); |
| 190 | } | 190 | } |
| 191 | #appmenuPrimaryPane { | 191 | #appmenuPrimaryPane { |
| 192 | background-color: rgb(0,0,0); | 192 | background-color: #181411; |
| 193 | padding: 2px; | 193 | padding: 2px; |
| 194 | border-inline-end: none; | 194 | border-inline-end: none; |
| 195 | } | 195 | } |
| 196 | #appmenuSecondaryPane { | 196 | #appmenuSecondaryPane { |
| 197 | background-color: rgb(0,0,0); | 197 | background-color: #181411; |
| 198 | padding-inline-start: 3px; | 198 | padding-inline-start: 3px; |
| 199 | padding-inline-end: 2px; | 199 | padding-inline-end: 2px; |
| 200 | padding-top: 2px; | 200 | padding-top: 2px; |
| @@ -213,7 +213,7 @@ | |||
| 213 | } | 213 | } |
| 214 | 214 | ||
| 215 | .appmenu-edit-button:not([disabled]):hover { | 215 | .appmenu-edit-button:not([disabled]):hover { |
| 216 | background: rgb(0,0,0); | 216 | background: #181411; |
| 217 | } | 217 | } |
| 218 | 218 | ||
| 219 | #appmenuSecondaryPane-spacer { | 219 | #appmenuSecondaryPane-spacer { |
| @@ -376,13 +376,13 @@ toolbarbutton.bookmark-item { | |||
| 376 | } | 376 | } |
| 377 | 377 | ||
| 378 | toolbarbutton.bookmark-item:hover { | 378 | toolbarbutton.bookmark-item:hover { |
| 379 | background-color: rgb(0,0,0); | 379 | background-color: #181411; |
| 380 | color: white; | 380 | color: white; |
| 381 | text-shadow: none; | 381 | text-shadow: none; |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | toolbarbutton.bookmark-item:hover:active { | 384 | toolbarbutton.bookmark-item:hover:active { |
| 385 | background-color: rgb(0,0,0); | 385 | background-color: #181411; |
| 386 | color: white; | 386 | color: white; |
| 387 | text-shadow: none; | 387 | text-shadow: none; |
| 388 | } | 388 | } |
| @@ -847,8 +847,8 @@ toolbar:not([brighttext]) #tabview-button { | |||
| 847 | border: none; | 847 | border: none; |
| 848 | border-color: rgba(32,32,32,1); | 848 | border-color: rgba(32,32,32,1); |
| 849 | border-radius: 0px; | 849 | border-radius: 0px; |
| 850 | background-color: rgb(0,0,0); | 850 | background-color: #181411; |
| 851 | color: #fff; | 851 | color: #bfbbb6; |
| 852 | } | 852 | } |
| 853 | 853 | ||
| 854 | #urlbar { | 854 | #urlbar { |
| @@ -860,22 +860,23 @@ toolbar:not([brighttext]) #tabview-button { | |||
| 860 | .searchbar-textbox:-moz-lwtheme { | 860 | .searchbar-textbox:-moz-lwtheme { |
| 861 | background-color: rgba(0,0,0,.8); | 861 | background-color: rgba(0,0,0,.8); |
| 862 | border-color: rgba(64,64,64,.27) rgba(64,64,64,.2) rgba(64,64,64,.18); | 862 | border-color: rgba(64,64,64,.27) rgba(64,64,64,.2) rgba(64,64,64,.18); |
| 863 | color: #fff; | 863 | color: #bfbbb6; |
| 864 | } | 864 | } |
| 865 | 865 | ||
| 866 | html|*.urlbar-input:-moz-lwtheme:-moz-placeholder, | 866 | html|*.urlbar-input:-moz-lwtheme:-moz-placeholder, |
| 867 | .searchbar-textbox:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input:-moz-placeholder { | 867 | .searchbar-textbox:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input:-moz-placeholder { |
| 868 | color: #fff; | 868 | color: #bfbbb6; |
| 869 | } | 869 | } |
| 870 | 870 | ||
| 871 | #urlbar:-moz-lwtheme[focused="true"], | 871 | #urlbar:-moz-lwtheme[focused="true"], |
| 872 | .searchbar-textbox:-moz-lwtheme[focused="true"] { | 872 | .searchbar-textbox:-moz-lwtheme[focused="true"] { |
| 873 | background-color: rgb(0,0,0); | 873 | background-color: #181411; |
| 874 | } | 874 | } |
| 875 | 875 | ||
| 876 | #urlbar-container { | 876 | #urlbar-container { |
| 877 | -moz-box-orient: horizontal; | 877 | -moz-box-orient: horizontal; |
| 878 | -moz-box-align: stretch; | 878 | -moz-box-align: stretch; |
| 879 | background-color: #181411; | ||
| 879 | } | 880 | } |
| 880 | 881 | ||
| 881 | .urlbar-textbox-container { | 882 | .urlbar-textbox-container { |
| @@ -1086,7 +1087,7 @@ window:not([chromehidden~=toolbar]) #navigator-toolbox[iconsize=large][mode=icon | |||
| 1086 | 1087 | ||
| 1087 | .ac-url-text, | 1088 | .ac-url-text, |
| 1088 | .ac-action-text { | 1089 | .ac-action-text { |
| 1089 | color: #fff; | 1090 | color: #bfbbb6; |
| 1090 | } | 1091 | } |
| 1091 | 1092 | ||
| 1092 | 1093 | ||
| @@ -1266,20 +1267,20 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- | |||
| 1266 | } | 1267 | } |
| 1267 | 1268 | ||
| 1268 | #sidebar-search-container { | 1269 | #sidebar-search-container { |
| 1269 | background-color: #000; | 1270 | background-color: #181411; |
| 1270 | } | 1271 | } |
| 1271 | 1272 | ||
| 1272 | #sidebar-header { | 1273 | #sidebar-header { |
| 1273 | -moz-appearance: none; | 1274 | -moz-appearance: none; |
| 1274 | border-top: none; | 1275 | border-top: none; |
| 1275 | border-bottom: none; | 1276 | border-bottom: none; |
| 1276 | background-color: rgb(0,0,0); | 1277 | background-color: #181411; |
| 1277 | color: #fff; | 1278 | color: #bfbbb6; |
| 1278 | } | 1279 | } |
| 1279 | 1280 | ||
| 1280 | .browserContainer > findbar { | 1281 | .browserContainer > findbar { |
| 1281 | background-color: rgb(0,0,0); | 1282 | background-color: #181411; |
| 1282 | color: #fff; | 1283 | color: #bfbbb6; |
| 1283 | text-shadow: none; | 1284 | text-shadow: none; |
| 1284 | } | 1285 | } |
| 1285 | 1286 | ||
| @@ -1332,7 +1333,7 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- | |||
| 1332 | border-radius: var(--tab-border-radius) var(--tab-border-radius) 0 0; | 1333 | border-radius: var(--tab-border-radius) var(--tab-border-radius) 0 0; |
| 1333 | box-shadow: var(--tab-box-shadow); | 1334 | box-shadow: var(--tab-box-shadow); |
| 1334 | margin-inline-start: -1px; | 1335 | margin-inline-start: -1px; |
| 1335 | color: #fff; | 1336 | color: #bfbbb6; |
| 1336 | } | 1337 | } |
| 1337 | 1338 | ||
| 1338 | .tabs-newtab-button { | 1339 | .tabs-newtab-button { |
| @@ -2202,12 +2203,12 @@ toolbarbutton.bookmark-item[dragover="true"][open="true"] { | |||
| 2202 | #ctrlTab-panel { | 2203 | #ctrlTab-panel { |
| 2203 | padding: 20px 10px 10px; | 2204 | padding: 20px 10px 10px; |
| 2204 | font-weight: bold; | 2205 | font-weight: bold; |
| 2205 | background: rgb(0,0,0); | 2206 | background: #181411; |
| 2206 | color: #fff; | 2207 | color: #bfbbb6; |
| 2207 | } | 2208 | } |
| 2208 | 2209 | ||
| 2209 | .ctrlTab-favicon[src] { | 2210 | .ctrlTab-favicon[src] { |
| 2210 | background-color: rgb(0,0,0); | 2211 | background-color: #181411; |
| 2211 | width: 20px; | 2212 | width: 20px; |
| 2212 | height: 20px; | 2213 | height: 20px; |
| 2213 | padding: 2px; | 2214 | padding: 2px; |
| @@ -2252,8 +2253,8 @@ toolbarbutton.bookmark-item[dragover="true"][open="true"] { | |||
| 2252 | padding-bottom: 10px; | 2253 | padding-bottom: 10px; |
| 2253 | -moz-appearance: none; | 2254 | -moz-appearance: none; |
| 2254 | border: none; | 2255 | border: none; |
| 2255 | background: rgb(0,0,0); | 2256 | background: #181411; |
| 2256 | color: #fff; | 2257 | color: #bfbbb6; |
| 2257 | } | 2258 | } |
| 2258 | 2259 | ||
| 2259 | #allTabs-meta { | 2260 | #allTabs-meta { |
| @@ -2270,7 +2271,7 @@ toolbarbutton.bookmark-item[dragover="true"][open="true"] { | |||
| 2270 | } | 2271 | } |
| 2271 | 2272 | ||
| 2272 | .allTabs-favicon[src] { | 2273 | .allTabs-favicon[src] { |
| 2273 | background-color: rgb(0,0,0); | 2274 | background-color: #181411; |
| 2274 | width: 22px; | 2275 | width: 22px; |
| 2275 | height: 22px; | 2276 | height: 22px; |
| 2276 | padding-top: 1px; | 2277 | padding-top: 1px; |
| @@ -2305,7 +2306,7 @@ toolbarbutton.bookmark-item[dragover="true"][open="true"] { | |||
| 2305 | } | 2306 | } |
| 2306 | 2307 | ||
| 2307 | #allTabs-tab-close-button { | 2308 | #allTabs-tab-close-button { |
| 2308 | background: rgb(0,0,0); | 2309 | background: #181411; |
| 2309 | border-bottom-left-radius: 4px; | 2310 | border-bottom-left-radius: 4px; |
| 2310 | padding: 2px 1px; | 2311 | padding: 2px 1px; |
| 2311 | } | 2312 | } |
| @@ -2320,7 +2321,7 @@ toolbarbutton.bookmark-item[dragover="true"][open="true"] { | |||
| 2320 | #addon-bar:not(:-moz-lwtheme), | 2321 | #addon-bar:not(:-moz-lwtheme), |
| 2321 | #FindToolbar:not(:-moz-lwtheme) { | 2322 | #FindToolbar:not(:-moz-lwtheme) { |
| 2322 | -moz-appearance: none; | 2323 | -moz-appearance: none; |
| 2323 | color: #fff; | 2324 | color: #bfbbb6; |
| 2324 | } | 2325 | } |
| 2325 | 2326 | ||
| 2326 | #status-bar { | 2327 | #status-bar { |
| @@ -2559,5 +2560,5 @@ toolbar[mode="text"] #addonbar-closebutton > .toolbarbutton-icon { | |||
| 2559 | } | 2560 | } |
| 2560 | 2561 | ||
| 2561 | #main-window[treestyletab-mode=vertical]:not([treestyletab-style]) .treestyletab-tabbar-placeholder { | 2562 | #main-window[treestyletab-mode=vertical]:not([treestyletab-style]) .treestyletab-tabbar-placeholder { |
| 2562 | background: rgb(0,0,0) !important; | 2563 | background: #181411 !important; |
| 2563 | } | 2564 | } |
diff --git a/src/chrome/browser/devtools.css b/src/chrome/browser/devtools.css index fe56765..150a9c0 100644 --- a/src/chrome/browser/devtools.css +++ b/src/chrome/browser/devtools.css | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | /* Responsive Mode */ | 5 | /* Responsive Mode */ |
| 6 | 6 | ||
| 7 | .browserContainer[responsivemode] { | 7 | .browserContainer[responsivemode] { |
| 8 | background-color: #000; | 8 | background-color: #181411; |
| 9 | padding: 0 20px 20px 20px; | 9 | padding: 0 20px 20px 20px; |
| 10 | } | 10 | } |
| 11 | 11 | ||
| @@ -29,7 +29,7 @@ | |||
| 29 | .devtools-responsiveui-textinput { | 29 | .devtools-responsiveui-textinput { |
| 30 | -moz-appearance: none; | 30 | -moz-appearance: none; |
| 31 | background: #000; | 31 | background: #000; |
| 32 | color: #fff; | 32 | color: #bfbbb6; |
| 33 | border: 1px solid #111; | 33 | border: 1px solid #111; |
| 34 | border-radius: 2px; | 34 | border-radius: 2px; |
| 35 | padding: 0 5px; | 35 | padding: 0 5px; |
| @@ -255,7 +255,7 @@ | |||
| 255 | border: 1px solid #FFFFFF; | 255 | border: 1px solid #FFFFFF; |
| 256 | border-bottom-width: 0; | 256 | border-bottom-width: 0; |
| 257 | 257 | ||
| 258 | background-color: #000000; | 258 | background-color: #181411; |
| 259 | 259 | ||
| 260 | box-shadow: 0 3px 0.7px 1px #777777, 0 5px rgba(0, 0, 0, 0.4) inset; | 260 | box-shadow: 0 3px 0.7px 1px #777777, 0 5px rgba(0, 0, 0, 0.4) inset; |
| 261 | 261 | ||
diff --git a/src/chrome/browser/downloads/allDownloadsViewOverlay.css b/src/chrome/browser/downloads/allDownloadsViewOverlay.css index 6e35119..9f72c1c 100644 --- a/src/chrome/browser/downloads/allDownloadsViewOverlay.css +++ b/src/chrome/browser/downloads/allDownloadsViewOverlay.css | |||
| @@ -80,14 +80,14 @@ | |||
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | #downloadsRichListBox > richlistitem.download[selected] { | 82 | #downloadsRichListBox > richlistitem.download[selected] { |
| 83 | color: #fff; | 83 | color: #bfbbb6; |
| 84 | background-color: rgb(0,0,0); | 84 | background-color: #181411; |
| 85 | } | 85 | } |
| 86 | 86 | ||
| 87 | /* Fixes for "Downloads Window" extension */ | 87 | /* Fixes for "Downloads Window" extension */ |
| 88 | 88 | ||
| 89 | #downloadsWindow > #downloadsRichListBox > richlistitem.download:not([selected="true"]):nth-child(odd) { | 89 | #downloadsWindow > #downloadsRichListBox > richlistitem.download:not([selected="true"]):nth-child(odd) { |
| 90 | background-color: rgb(0, 0, 0) !important; | 90 | background-color: #181411 !important; |
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | #downloadsWindow > #downloadsRichListBox { | 93 | #downloadsWindow > #downloadsRichListBox { |
diff --git a/src/chrome/browser/downloads/downloads.css b/src/chrome/browser/downloads/downloads.css index e9ba951..9c490a2 100644 --- a/src/chrome/browser/downloads/downloads.css +++ b/src/chrome/browser/downloads/downloads.css | |||
| @@ -22,13 +22,13 @@ | |||
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | #downloadsFooter { | 24 | #downloadsFooter { |
| 25 | background: rgb(0,0,0); | 25 | background: #181411; |
| 26 | border-top: 1px solid rgb(64,64,64); | 26 | border-top: 1px solid rgb(64,64,64); |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | #downloadsHistory { | 29 | #downloadsHistory { |
| 30 | background: transparent; | 30 | background: transparent; |
| 31 | color: #fff; | 31 | color: #bfbbb6; |
| 32 | cursor: pointer; | 32 | cursor: pointer; |
| 33 | } | 33 | } |
| 34 | 34 | ||
| @@ -73,7 +73,7 @@ richlistitem[type="download"] { | |||
| 73 | richlistitem[type="download"] { | 73 | richlistitem[type="download"] { |
| 74 | margin: 0; | 74 | margin: 0; |
| 75 | border-bottom: 1px solid rgb(64,64,64); | 75 | border-bottom: 1px solid rgb(64,64,64); |
| 76 | background: rgb(0,0,0); | 76 | background: #181411; |
| 77 | padding: 8px; | 77 | padding: 8px; |
| 78 | } | 78 | } |
| 79 | 79 | ||
| @@ -157,8 +157,8 @@ richlistitem[type="download"]:first-child { | |||
| 157 | /*** Highlighted list items ***/ | 157 | /*** Highlighted list items ***/ |
| 158 | 158 | ||
| 159 | #downloadsPanel:not([keyfocus]) > #downloadsListBox > richlistitem[type="download"][state="1"][exists]:hover { | 159 | #downloadsPanel:not([keyfocus]) > #downloadsListBox > richlistitem[type="download"][state="1"][exists]:hover { |
| 160 | color: #fff; | 160 | color: #bfbbb6; |
| 161 | background-color: rgb(0,0,0); | 161 | background-color: #181411; |
| 162 | } | 162 | } |
| 163 | 163 | ||
| 164 | /*** Button icons ***/ | 164 | /*** Button icons ***/ |
diff --git a/src/chrome/browser/feeds/subscribe.css b/src/chrome/browser/feeds/subscribe.css index a9bf6cd..bd17eaa 100644 --- a/src/chrome/browser/feeds/subscribe.css +++ b/src/chrome/browser/feeds/subscribe.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 | ||
| 5 | html { | 5 | html { |
| 6 | background: rgb(0,0,0); | 6 | background: #181411; |
| 7 | font: 3mm tahoma,arial,helvetica,sans-serif; | 7 | font: 3mm tahoma,arial,helvetica,sans-serif; |
| 8 | } | 8 | } |
| 9 | 9 | ||
| @@ -13,14 +13,14 @@ html { | |||
| 13 | padding: 3em; | 13 | padding: 3em; |
| 14 | padding-inline-start: 30px; | 14 | padding-inline-start: 30px; |
| 15 | margin: 2em auto; | 15 | margin: 2em auto; |
| 16 | background: rgb(0,0,0); | 16 | background: #181411; |
| 17 | } | 17 | } |
| 18 | 18 | ||
| 19 | #feedHeaderContainer { | 19 | #feedHeaderContainer { |
| 20 | border: 1px solid rgb(64,64,64); | 20 | border: 1px solid rgb(64,64,64); |
| 21 | border-radius: 10px; | 21 | border-radius: 10px; |
| 22 | margin: -4em auto 0 auto; | 22 | margin: -4em auto 0 auto; |
| 23 | background-color: rgb(0,0,0); | 23 | background-color: #181411; |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | #feedHeader { | 26 | #feedHeader { |
| @@ -30,7 +30,7 @@ html { | |||
| 30 | margin-inline-end: 1em; | 30 | margin-inline-end: 1em; |
| 31 | padding-inline-start: 2.9em; | 31 | padding-inline-start: 2.9em; |
| 32 | font-size: 110%; | 32 | font-size: 110%; |
| 33 | color: #fff; | 33 | color: #bfbbb6; |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | #feedIntroText { | 36 | #feedIntroText { |
| @@ -40,7 +40,7 @@ html { | |||
| 40 | .feedBackground, | 40 | .feedBackground, |
| 41 | .videoPodcastBackground, | 41 | .videoPodcastBackground, |
| 42 | .audioPodcastBackground { | 42 | .audioPodcastBackground { |
| 43 | background: url("chrome://browser/skin/feeds/feedIcon.svg") 0% 10% no-repeat rgb(0,0,0); | 43 | background: url("chrome://browser/skin/feeds/feedIcon.svg") 0% 10% no-repeat #181411; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | #feedHeader[dir="rtl"] { | 46 | #feedHeader[dir="rtl"] { |
| @@ -71,7 +71,7 @@ html { | |||
| 71 | body { | 71 | body { |
| 72 | margin: 0; | 72 | margin: 0; |
| 73 | padding: 0 3em; | 73 | padding: 0 3em; |
| 74 | color: #fff; | 74 | color: #bfbbb6; |
| 75 | font: message-box; | 75 | font: message-box; |
| 76 | } | 76 | } |
| 77 | 77 | ||
| @@ -121,7 +121,7 @@ a[href] img { | |||
| 121 | 121 | ||
| 122 | .link, | 122 | .link, |
| 123 | a { | 123 | a { |
| 124 | color: #fff; | 124 | color: #bfbbb6; |
| 125 | text-decoration: underline; | 125 | text-decoration: underline; |
| 126 | cursor: pointer; | 126 | cursor: pointer; |
| 127 | } | 127 | } |
| @@ -148,7 +148,7 @@ a:hover:active { | |||
| 148 | border: rgb(64,64,64); | 148 | border: rgb(64,64,64); |
| 149 | padding: 1em; | 149 | padding: 1em; |
| 150 | margin: 1em auto; | 150 | margin: 1em auto; |
| 151 | background: rgb(0,0,0); | 151 | background: #181411; |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | .enclosure { | 154 | .enclosure { |
diff --git a/src/chrome/browser/newtab/newTab.css b/src/chrome/browser/newtab/newTab.css index 1d6d236..98ab306 100644 --- a/src/chrome/browser/newtab/newTab.css +++ b/src/chrome/browser/newtab/newTab.css | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | /* SCROLLBOX */ | 11 | /* SCROLLBOX */ |
| 12 | #newtab-vertical-margin { | 12 | #newtab-vertical-margin { |
| 13 | background-color: rgb(0,0,0); | 13 | background-color: #181411; |
| 14 | background-attachment: fixed; | 14 | background-attachment: fixed; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| @@ -19,8 +19,8 @@ | |||
| 19 | padding: 4px 3px; | 19 | padding: 4px 3px; |
| 20 | border: 1px solid; | 20 | border: 1px solid; |
| 21 | border-color: rgb(64,64,64); | 21 | border-color: rgb(64,64,64); |
| 22 | background-color: rgb(0,0,0); | 22 | background-color: #181411; |
| 23 | color: #fff; | 23 | color: #bfbbb6; |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | #newtab-undo-label { | 26 | #newtab-undo-label { |
| @@ -30,7 +30,7 @@ | |||
| 30 | 30 | ||
| 31 | .newtab-undo-button { | 31 | .newtab-undo-button { |
| 32 | -moz-appearance: none; | 32 | -moz-appearance: none; |
| 33 | color: #fff; | 33 | color: #bfbbb6; |
| 34 | cursor: pointer; | 34 | cursor: pointer; |
| 35 | padding: 0; | 35 | padding: 0; |
| 36 | margin: 0 4px; | 36 | margin: 0 4px; |
| @@ -100,7 +100,7 @@ | |||
| 100 | /* CELLS */ | 100 | /* CELLS */ |
| 101 | .newtab-cell { | 101 | .newtab-cell { |
| 102 | margin-inline-end: 20px; | 102 | margin-inline-end: 20px; |
| 103 | background-color: rgb(0,0,0); | 103 | background-color: #181411; |
| 104 | border: 1px solid rgb(64,64,64); | 104 | border: 1px solid rgb(64,64,64); |
| 105 | transition: border-color 100ms ease-out; | 105 | transition: border-color 100ms ease-out; |
| 106 | } | 106 | } |
| @@ -130,7 +130,7 @@ | |||
| 130 | 130 | ||
| 131 | .newtab-site[dragged] { | 131 | .newtab-site[dragged] { |
| 132 | transition-property: box-shadow, background-color; | 132 | transition-property: box-shadow, background-color; |
| 133 | background-color: rgb(0,0,0); | 133 | background-color: #181411; |
| 134 | box-shadow: 0 18px 24px rgba(255,255,255,.5); | 134 | box-shadow: 0 18px 24px rgba(255,255,255,.5); |
| 135 | } | 135 | } |
| 136 | 136 | ||
| @@ -146,8 +146,8 @@ | |||
| 146 | /* TITLES */ | 146 | /* TITLES */ |
| 147 | .newtab-title { | 147 | .newtab-title { |
| 148 | padding: 0 8px; | 148 | padding: 0 8px; |
| 149 | background-color: rgb(0,0,0); | 149 | background-color: #181411; |
| 150 | color: #fff; | 150 | color: #bfbbb6; |
| 151 | line-height: 24px; | 151 | line-height: 24px; |
| 152 | } | 152 | } |
| 153 | 153 | ||
| @@ -251,9 +251,9 @@ | |||
| 251 | 251 | ||
| 252 | #searchText { | 252 | #searchText { |
| 253 | -moz-box-flex: 1; | 253 | -moz-box-flex: 1; |
| 254 | color: #fff; | 254 | color: #bfbbb6; |
| 255 | padding: 6px 8px; | 255 | padding: 6px 8px; |
| 256 | background-color: rgb(0, 0, 0); | 256 | background-color: #181411; |
| 257 | border: 1px solid; | 257 | border: 1px solid; |
| 258 | border-color: rgb(64, 64, 64); | 258 | border-color: rgb(64, 64, 64); |
| 259 | border-radius: 5px 0 0 5px; | 259 | border-radius: 5px 0 0 5px; |
| @@ -272,8 +272,8 @@ | |||
| 272 | #searchSubmit { | 272 | #searchSubmit { |
| 273 | margin-inline-start: -1px; | 273 | margin-inline-start: -1px; |
| 274 | padding: 0 9px; | 274 | padding: 0 9px; |
| 275 | color: #fff; | 275 | color: #bfbbb6; |
| 276 | background-color: rgb(0, 0, 0); | 276 | background-color: #181411; |
| 277 | border: 1px solid; | 277 | border: 1px solid; |
| 278 | border-color: rgb(64, 64, 64); | 278 | border-color: rgb(64, 64, 64); |
| 279 | border-radius: 0 5px 5px 0; | 279 | border-radius: 0 5px 5px 0; |
| @@ -291,10 +291,10 @@ | |||
| 291 | #searchText + #searchSubmit:hover, | 291 | #searchText + #searchSubmit:hover, |
| 292 | #searchText[autofocus] + #searchSubmit { | 292 | #searchText[autofocus] + #searchSubmit { |
| 293 | border-color: rgb(128, 128, 128); | 293 | border-color: rgb(128, 128, 128); |
| 294 | background-color: rgb(0, 0, 0); | 294 | background-color: #181411; |
| 295 | } | 295 | } |
| 296 | 296 | ||
| 297 | #searchText + #searchSubmit:hover:active { | 297 | #searchText + #searchSubmit:hover:active { |
| 298 | border-color: rgb(64, 64, 64); | 298 | border-color: rgb(64, 64, 64); |
| 299 | background-color: rgb(0, 0, 0); | 299 | background-color: #181411; |
| 300 | } | 300 | } |
diff --git a/src/chrome/browser/pageInfo.css b/src/chrome/browser/pageInfo.css index ddbc44c..e4523b0 100644 --- a/src/chrome/browser/pageInfo.css +++ b/src/chrome/browser/pageInfo.css | |||
| @@ -20,20 +20,20 @@ | |||
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | #viewGroup > radio:hover { | 22 | #viewGroup > radio:hover { |
| 23 | background-color: rgb(0,0,0); | 23 | background-color: #181411; |
| 24 | color: #fff; | 24 | color: #bfbbb6; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | #viewGroup > radio[selected="true"] { | 27 | #viewGroup > radio[selected="true"] { |
| 28 | background-color: rgb(0,0,0); | 28 | background-color: #181411; |
| 29 | color: #fff; | 29 | color: #bfbbb6; |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | #topBar { | 32 | #topBar { |
| 33 | border-bottom: 1px solid rgb(64,64,64); | 33 | border-bottom: 1px solid rgb(64,64,64); |
| 34 | padding-inline-start: 10px; | 34 | padding-inline-start: 10px; |
| 35 | background-color: rgb(0,0,0); | 35 | background-color: #181411; |
| 36 | color: #fff; | 36 | color: #bfbbb6; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | #generalTab { | 39 | #generalTab { |
| @@ -194,8 +194,8 @@ treechildren::-moz-tree-cell-text(broken) { | |||
| 194 | } | 194 | } |
| 195 | 195 | ||
| 196 | #feedListbox richlistitem[selected="true"] { | 196 | #feedListbox richlistitem[selected="true"] { |
| 197 | background-color: rgb(0,0,0); | 197 | background-color: #181411; |
| 198 | color: #fff; | 198 | color: #bfbbb6; |
| 199 | } | 199 | } |
| 200 | 200 | ||
| 201 | #feedListbox { | 201 | #feedListbox { |
| @@ -211,8 +211,8 @@ treechildren::-moz-tree-cell-text(broken) { | |||
| 211 | margin-top: .5em; | 211 | margin-top: .5em; |
| 212 | overflow: auto; | 212 | overflow: auto; |
| 213 | border: 1px solid rgb(64,64,64); | 213 | border: 1px solid rgb(64,64,64); |
| 214 | background-color: rgb(0,0,0); | 214 | background-color: #181411; |
| 215 | color: #fff; | 215 | color: #bfbbb6; |
| 216 | } | 216 | } |
| 217 | 217 | ||
| 218 | .permission { | 218 | .permission { |
| @@ -226,11 +226,11 @@ treechildren::-moz-tree-cell-text(broken) { | |||
| 226 | 226 | ||
| 227 | .permissionLabel { | 227 | .permissionLabel { |
| 228 | font-weight: bold; | 228 | font-weight: bold; |
| 229 | color: #fff; | 229 | color: #bfbbb6; |
| 230 | } | 230 | } |
| 231 | 231 | ||
| 232 | .permission:hover { | 232 | .permission:hover { |
| 233 | background-color: rgb(0,0,0); | 233 | background-color: #181411; |
| 234 | } | 234 | } |
| 235 | 235 | ||
| 236 | /* Security Tab */ | 236 | /* Security Tab */ |
diff --git a/src/chrome/browser/places/organizer.css b/src/chrome/browser/places/organizer.css index b9a5784..f3aab15 100644 --- a/src/chrome/browser/places/organizer.css +++ b/src/chrome/browser/places/organizer.css | |||
| @@ -49,23 +49,23 @@ | |||
| 49 | padding-top: 2px; | 49 | padding-top: 2px; |
| 50 | padding-bottom: 2px; | 50 | padding-bottom: 2px; |
| 51 | -moz-appearance: none; | 51 | -moz-appearance: none; |
| 52 | color: #fff; | 52 | color: #bfbbb6; |
| 53 | border: 1px solid transparent; | 53 | border: 1px solid transparent; |
| 54 | border-radius: 3px; | 54 | border-radius: 3px; |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | #placesMenu > menu[_moz-menuactive="true"] { | 57 | #placesMenu > menu[_moz-menuactive="true"] { |
| 58 | background-color: rgb(0,0,0); | 58 | background-color: #181411; |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | #placesMenu > menu:hover { | 61 | #placesMenu > menu:hover { |
| 62 | border: 1px solid rgb(64,64,64); | 62 | border: 1px solid rgb(64,64,64); |
| 63 | background-color: rgb(0,0,0); | 63 | background-color: #181411; |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | #placesMenu > menu[open="true"] { | 66 | #placesMenu > menu[open="true"] { |
| 67 | border: 1px solid rgb(64,64,64); | 67 | border: 1px solid rgb(64,64,64); |
| 68 | background-color: rgb(0,0,0); | 68 | background-color: #181411; |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | #placesMenu > menu > .menubar-text { | 71 | #placesMenu > menu > .menubar-text { |
| @@ -141,7 +141,7 @@ | |||
| 141 | } | 141 | } |
| 142 | 142 | ||
| 143 | #placesToolbar { | 143 | #placesToolbar { |
| 144 | background-color: rgb(0,0,0); | 144 | background-color: #181411; |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | #placesView > splitter { | 147 | #placesView > splitter { |
| @@ -155,7 +155,7 @@ | |||
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | #placesToolbar { | 157 | #placesToolbar { |
| 158 | color: #fff; | 158 | color: #bfbbb6; |
| 159 | } | 159 | } |
| 160 | 160 | ||
| 161 | #detailsDeck { | 161 | #detailsDeck { |
| @@ -166,7 +166,7 @@ | |||
| 166 | -moz-appearance: none; | 166 | -moz-appearance: none; |
| 167 | padding: 4px; | 167 | padding: 4px; |
| 168 | padding-inline-start: 6px; | 168 | padding-inline-start: 6px; |
| 169 | background-color: rgb(0,0,0); | 169 | background-color: #181411; |
| 170 | background-clip: padding-box; | 170 | background-clip: padding-box; |
| 171 | border: 1px solid rgb(64,64,64); | 171 | border: 1px solid rgb(64,64,64); |
| 172 | border-radius: 5px; | 172 | border-radius: 5px; |
| @@ -178,13 +178,13 @@ | |||
| 178 | } | 178 | } |
| 179 | #placesToolbar > toolbarbutton:not([disabled="true"]):hover { | 179 | #placesToolbar > toolbarbutton:not([disabled="true"]):hover { |
| 180 | border: 1px solid rgb(64,64,64); | 180 | border: 1px solid rgb(64,64,64); |
| 181 | background-color: rgb(0,0,0); | 181 | background-color: #181411; |
| 182 | } | 182 | } |
| 183 | 183 | ||
| 184 | #placesToolbar > toolbarbutton:not([disabled="true"]):hover:active, | 184 | #placesToolbar > toolbarbutton:not([disabled="true"]):hover:active, |
| 185 | #placesToolbar > toolbarbutton:not([disabled="true"])[open="true"] { | 185 | #placesToolbar > toolbarbutton:not([disabled="true"])[open="true"] { |
| 186 | border: 1px solid rgb(64,64,64); | 186 | border: 1px solid rgb(64,64,64); |
| 187 | background-color: rgb(0,0,0); | 187 | background-color: #181411; |
| 188 | } | 188 | } |
| 189 | #placesToolbar > toolbarbutton > .toolbarbutton-icon { | 189 | #placesToolbar > toolbarbutton > .toolbarbutton-icon { |
| 190 | margin-right: 4px; | 190 | margin-right: 4px; |
diff --git a/src/chrome/browser/places/places.css b/src/chrome/browser/places/places.css index 63151a2..2b2d3ef 100644 --- a/src/chrome/browser/places/places.css +++ b/src/chrome/browser/places/places.css | |||
| @@ -123,11 +123,11 @@ treechildren::-moz-tree-cell-text(cutting) { | |||
| 123 | 123 | ||
| 124 | /*added by Louis*/ | 124 | /*added by Louis*/ |
| 125 | treechildren::-moz-tree-row(selected, focus) { | 125 | treechildren::-moz-tree-row(selected, focus) { |
| 126 | background-color: rgb(0,0,0); | 126 | background-color: #181411; |
| 127 | border: none; | 127 | border: none; |
| 128 | } | 128 | } |
| 129 | treechildren::-moz-tree-cell-text(selected, focus) { | 129 | treechildren::-moz-tree-cell-text(selected, focus) { |
| 130 | color: #fff; | 130 | color: #bfbbb6; |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | /* Browser Sidebars */ | 133 | /* Browser Sidebars */ |
diff --git a/src/chrome/browser/syncCommon.css b/src/chrome/browser/syncCommon.css index 8e48969..d05185e 100644 --- a/src/chrome/browser/syncCommon.css +++ b/src/chrome/browser/syncCommon.css | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | /* The following are used by both sync/setup.xul and sync/genericChange.xul */ | 5 | /* The following are used by both sync/setup.xul and sync/genericChange.xul */ |
| 6 | .status { | 6 | .status { |
| 7 | color: #fff; | 7 | color: #bfbbb6; |
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | .statusIcon { | 10 | .statusIcon { |
diff --git a/src/chrome/browser/syncSetup.css b/src/chrome/browser/syncSetup.css index cfbb193..8da9513 100644 --- a/src/chrome/browser/syncSetup.css +++ b/src/chrome/browser/syncSetup.css | |||
| @@ -7,8 +7,8 @@ wizard { | |||
| 7 | width: 55em; | 7 | width: 55em; |
| 8 | height: 45em; | 8 | height: 45em; |
| 9 | padding: 0; | 9 | padding: 0; |
| 10 | background-color: rgb(0,0,0); | 10 | background-color: #181411; |
| 11 | color: #fff; | 11 | color: #bfbbb6; |
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | .wizard-page-box { | 14 | .wizard-page-box { |
| @@ -23,7 +23,7 @@ wizardpage { | |||
| 23 | -moz-box-align: center; | 23 | -moz-box-align: center; |
| 24 | margin: 0; | 24 | margin: 0; |
| 25 | padding: 0 6em; | 25 | padding: 0 6em; |
| 26 | background-color: rgb(0,0,0); | 26 | background-color: #181411; |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | .wizard-header { | 29 | .wizard-header { |
diff --git a/src/chrome/browser/tabview/tabview.css b/src/chrome/browser/tabview/tabview.css index 15e5d47..7df1e46 100644 --- a/src/chrome/browser/tabview/tabview.css +++ b/src/chrome/browser/tabview/tabview.css | |||
| @@ -575,7 +575,7 @@ html[dir=rtl] .iq-resizable-se { | |||
| 575 | box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,1), 0px 0px 9px rgba(0,0,0,.8); | 575 | box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,1), 0px 0px 9px rgba(0,0,0,.8); |
| 576 | color: white; | 576 | color: white; |
| 577 | border: none; | 577 | border: none; |
| 578 | background-color: #000; | 578 | background-color: #181411; |
| 579 | border-radius: 0.4em; | 579 | border-radius: 0.4em; |
| 580 | padding-inline-start: 5px; | 580 | padding-inline-start: 5px; |
| 581 | padding-inline-end: 5px; | 581 | padding-inline-end: 5px; |
