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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 .cloud-print-message { | 101 .cloud-print-message { |
102 margin: 23px 0; | 102 margin: 23px 0; |
103 } | 103 } |
104 | 104 |
105 section { | 105 section { |
106 margin-bottom: 23px; | 106 margin-bottom: 23px; |
107 } | 107 } |
108 | 108 |
109 .dialog-contents { | 109 .dialog-contents { |
110 padding-left: 17px; | 110 padding-left: 17px; |
111 } | 111 } |
| 112 |
| 113 #back-button { |
| 114 background: url('chrome://theme/IDR_CHEVRON_LEFT') left no-repeat; |
| 115 margin-bottom: 25px; |
| 116 margin-top: 6px; |
| 117 padding-left: 23px; |
| 118 } |
| 119 |
| 120 html[dir='rtl'] #back-button { |
| 121 transform: scaleX(-1); |
| 122 } |
| 123 |
| 124 html[dir='rtl'] #back-button span { |
| 125 display: inline-block; |
| 126 transform: scaleX(-1); |
| 127 } |
OLD | NEW |