| OLD | NEW |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | 4 |
| 5 html, | 5 html, |
| 6 body { | 6 body { |
| 7 margin: 0; | 7 margin: 0; |
| 8 padding: 0; | 8 padding: 0; |
| 9 background-color: #ced7de; | 9 background-color: #ced7de; |
| 10 -moz-user-select: none; | 10 -moz-user-select: none; |
| 11 font-family: "Clear Sans",sans-serif; | 11 font-family: "Clear Sans",sans-serif; |
| 12 -moz-text-size-adjust: none; | 12 -moz-text-size-adjust: none; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .toolbar { | 15 .toolbar { |
| 16 width: 100%; | 16 width: 100%; |
| 17 min-height: 3em; | 17 min-height: 3em; |
| 18 display: flow-root; | 18 display: flow-root; |
| 19 position: sticky; | 19 position: sticky; |
| 20 top: 0; | 20 top: 0; |
| 21 left: 0; | 21 left: 0; |
| 22 z-index: 10; | 22 z-index: 10; |
| 23 box-shadow: 0 0 3px #444; | 23 box-shadow: 0 0 3px #444; |
| 24 background-color: #ced7de; | 24 background-color: #ced7de; |
| 25 color: #000000; | 25 color: #000000; |
| 26 font-weight: bold; | 26 font-weight: bold; |
| 27 border-bottom: 2px solid; | 27 border-bottom: 2px solid; |
| 28 -moz-border-bottom-colors: #009CD9 #009CD9; /* Changed to match abb_accent_d
ark_blue. See https://issues.adblockplus.org/ticket/3769 */ | 28 -moz-border-bottom-colors: #ff9100 #f27900; |
| 29 } | 29 } |
| 30 | 30 |
| 31 .toolbar-container { | 31 .toolbar-container { |
| 32 max-width: 40em; | 32 max-width: 40em; |
| 33 margin-left: auto; | 33 margin-left: auto; |
| 34 margin-right: auto; | 34 margin-right: auto; |
| 35 } | 35 } |
| 36 | 36 |
| 37 #filter-container { | 37 #filter-container { |
| 38 margin: 0.375em; | 38 margin: 0.375em; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 } | 336 } |
| 337 | 337 |
| 338 #loading-container > li { | 338 #loading-container > li { |
| 339 background-image: url(chrome://browser/skin/images/throbber.png); | 339 background-image: url(chrome://browser/skin/images/throbber.png); |
| 340 background-position: center center; | 340 background-position: center center; |
| 341 background-repeat: no-repeat; | 341 background-repeat: no-repeat; |
| 342 padding-left: 40px; | 342 padding-left: 40px; |
| 343 height: 3em; | 343 height: 3em; |
| 344 width: 100%; | 344 width: 100%; |
| 345 } | 345 } |
| OLD | NEW |