OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 body { | 5 body { |
6 margin: 21px 10px 24px 10px; | 6 margin: 21px 10px 24px 10px; |
7 } | 7 } |
8 | 8 |
9 h1 { | 9 h1 { |
10 margin: 0 0 13px 0; | 10 margin: 0 0 13px 0; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 108 |
109 section { | 109 section { |
110 margin-bottom: 23px; | 110 margin-bottom: 23px; |
111 } | 111 } |
112 | 112 |
113 .dialog-contents { | 113 .dialog-contents { |
114 padding-left: 17px; | 114 padding-left: 17px; |
115 } | 115 } |
116 | 116 |
117 #back-link { | 117 #back-link { |
118 background: url(chrome://theme/IDR_CHEVRON_LEFT) left no-repeat; | 118 background: -webkit-image-set( |
| 119 url(chevron_left-1x.png) 1x, |
| 120 url(chevron_left-2x.png) 2x) |
| 121 no-repeat; |
119 margin-bottom: 25px; | 122 margin-bottom: 25px; |
120 margin-top: 6px; | 123 margin-top: 6px; |
121 padding-left: 23px; | 124 padding-left: 23px; |
122 } | 125 } |
123 | 126 |
124 html[dir='rtl'] #back-link { | 127 html[dir='rtl'] #back-link { |
125 transform: scaleX(-1); | 128 transform: scaleX(-1); |
126 } | 129 } |
127 | 130 |
128 html[dir='rtl'] #back-link span { | 131 html[dir='rtl'] #back-link span { |
129 display: inline-block; | 132 display: inline-block; |
130 transform: scaleX(-1); | 133 transform: scaleX(-1); |
131 } | 134 } |
OLD | NEW |