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 .device { | 5 .device { |
6 margin: 23px 0; | 6 margin: 23px 0; |
7 max-width: 695px; | 7 max-width: 695px; |
8 overflow: hidden; | 8 overflow: hidden; |
9 } | 9 } |
10 | 10 |
11 .device .device-info { | 11 .device .device-info { |
| 12 -webkit-padding-start: 40px; |
12 float: left; | 13 float: left; |
13 } | 14 } |
14 | 15 |
| 16 .printer { |
| 17 background: url(printer.png) no-repeat; |
| 18 } |
| 19 |
15 html[dir='rtl'] .device .device-info { | 20 html[dir='rtl'] .device .device-info { |
16 float: right; | 21 float: right; |
17 } | 22 } |
18 | 23 |
19 .device button { | 24 .device button { |
20 float: right; | 25 float: right; |
21 } | 26 } |
22 | 27 |
23 html[dir='rtl'] .device button { | 28 html[dir='rtl'] .device button { |
24 float: left; | 29 float: left; |
(...skipping 29 matching lines...) Expand all Loading... |
54 padding: 13px 3px 7px 4px; | 59 padding: 13px 3px 7px 4px; |
55 } | 60 } |
56 | 61 |
57 html[dir='rtl'] .controls { | 62 html[dir='rtl'] .controls { |
58 padding: 13px 4px 7px 3px; | 63 padding: 13px 4px 7px 3px; |
59 } | 64 } |
60 | 65 |
61 .controls .subline { | 66 .controls .subline { |
62 -webkit-margin-start: 10px; | 67 -webkit-margin-start: 10px; |
63 } | 68 } |
OLD | NEW |