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 %filter substitution | 5 %filter substitution |
6 %include defines.inc | 6 %include defines.inc |
7 | 7 |
8 html { | 8 html { |
9 font-family: "Clear Sans",sans-serif; | 9 font-family: "Clear Sans",sans-serif; |
10 font-size: 14px; | 10 font-size: 14px; |
(...skipping 11 matching lines...) Expand all Loading... |
22 input { | 22 input { |
23 -moz-user-select: text; | 23 -moz-user-select: text; |
24 } | 24 } |
25 | 25 |
26 .header { | 26 .header { |
27 color: #363B40; | 27 color: #363B40; |
28 font-size: 1.1em; | 28 font-size: 1.1em; |
29 font-weight: bold; | 29 font-weight: bold; |
30 background-color: #f5f5f5; | 30 background-color: #f5f5f5; |
31 border-bottom: 2px solid; | 31 border-bottom: 2px solid; |
32 -moz-border-bottom-colors: #ff9100 #f27900; | 32 -moz-border-bottom-colors: #009CD9 #009CD9; /*matched to abb_accent_dark_blue
in java codebase*/ |
33 display: flex; | 33 display: flex; |
34 flex-direction: row; | 34 flex-direction: row; |
35 align-items: center; | 35 align-items: center; |
36 } | 36 } |
37 | 37 |
38 .header > div { | 38 .header > div { |
39 flex: 1; | 39 flex: 1; |
40 padding: 1em; | 40 padding: 1em; |
41 -moz-padding-start: 1.5em; | 41 -moz-padding-start: 1.5em; |
42 } | 42 } |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 flex: 1; | 105 flex: 1; |
106 } | 106 } |
107 | 107 |
108 #browse-title { | 108 #browse-title { |
109 margin: 0.5em 0; | 109 margin: 0.5em 0; |
110 background-image: url("chrome://browser/skin/images/chevron.png"); | 110 background-image: url("chrome://browser/skin/images/chevron.png"); |
111 background-size: 8px 20px; | 111 background-size: 8px 20px; |
112 background-position: right; | 112 background-position: right; |
113 background-repeat: no-repeat; | 113 background-repeat: no-repeat; |
114 } | 114 } |
OLD | NEW |