OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 #change-home-page-section { | 5 paper-radio-button { |
| 6 display: block; |
| 7 } |
| 8 |
| 9 .radio-container { |
| 10 display: flex; |
| 11 } |
| 12 |
| 13 .radio-extended { |
| 14 align-self: flex-end; |
| 15 display: flex; |
| 16 } |
| 17 |
| 18 #change-home-page-section { |
6 -webkit-margin-start: 40px; | 19 -webkit-margin-start: 40px; |
7 font-size: 90%; | 20 font-size: 90%; |
8 } | 21 } |
9 | 22 |
10 /* TODO(jhawkins): This does not span the width of the entire paper-material | 23 /* TODO(jhawkins): This does not span the width of the entire paper-material |
11 * element because our styling of all paper-material includes a fixed margin. | 24 * element because our styling of all paper-material includes a fixed margin. |
12 * This can be fixed by creating a generic content container inside of each | 25 * This can be fixed by creating a generic content container inside of each |
13 * paper-material which would have this margin instead. | 26 * paper-material which would have this margin instead. |
14 * | 27 * |
15 * TODO(jhawkins): Share this rule set at a higher level, e.g., to share with | 28 * TODO(jhawkins): Share this rule set at a higher level, e.g., to share with |
16 * the device page. | 29 * the device page. |
17 */ | 30 */ |
18 hr { | 31 hr { |
19 width: 100%; | 32 width: 100%; |
20 } | 33 } |
21 | 34 |
22 #action-container { | 35 #action-container { |
23 display: flex; | 36 display: flex; |
24 flex-direction: row; | 37 flex-direction: row; |
25 justify-content: flex-end; | 38 justify-content: flex-end; |
26 } | 39 } |
27 | 40 |
28 #action-container > paper-button { | 41 #action-container > paper-button { |
29 text-transform: upper-case; | 42 text-transform: upper-case; |
30 } | 43 } |
OLD | NEW |