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-info { | 5 .device { |
6 -webkit-box-flex: 1; | 6 margin: 23px 0; |
7 -webkit-padding-start: 55px; | 7 max-width: 695px; |
| 8 overflow: hidden; |
8 } | 9 } |
9 | 10 |
10 .device { | 11 .device .device-info { |
11 display: -webkit-box; | 12 float: left; |
12 max-width: 738px; | |
13 } | 13 } |
14 | 14 |
15 .device .button-container { | 15 html[dir='rtl'] .device .device-info { |
16 -webkit-padding-end: 10px; | 16 float: right; |
17 display: inline-block; | |
18 width: 70px; | |
19 } | 17 } |
20 | 18 |
21 .device .button-container button { | 19 .device button { |
22 margin-top: 0.5em; | 20 float: right; |
23 padding-bottom: 10px; | 21 } |
24 padding-top: 10px; | 22 |
| 23 html[dir='rtl'] .device button { |
| 24 float: left; |
| 25 } |
| 26 |
| 27 .subline, |
| 28 .device-subline { |
| 29 color: #999; |
| 30 margin: 5px 0; |
| 31 } |
| 32 |
| 33 h3.device-name { |
| 34 margin: 0; |
25 } | 35 } |
26 | 36 |
27 .register-page { | 37 .register-page { |
28 padding: 15px; | 38 padding: 15px; |
29 width: 600px; | 39 width: 600px; |
30 } | 40 } |
31 | 41 |
32 .register-page .button-list { | 42 .register-page .button-list { |
33 padding-top: 15px; | 43 padding-top: 15px; |
34 text-align: right; | 44 text-align: right; |
35 } | 45 } |
36 | 46 |
37 html[dir='rtl'] .register-page .button-list { | 47 html[dir='rtl'] .register-page .button-list { |
38 text-align: left; | 48 text-align: left; |
39 } | 49 } |
| 50 |
| 51 .controls { |
| 52 border-bottom: 1px solid #eee; |
| 53 max-width: 711px; |
| 54 padding: 13px 3px 7px 4px; |
| 55 } |
| 56 |
| 57 html[dir='rtl'] .controls { |
| 58 padding: 13px 4px 7px 3px; |
| 59 } |
| 60 |
| 61 .controls .subline { |
| 62 -webkit-margin-start: 10px; |
| 63 } |
OLD | NEW |