OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 5 |
6 #controller-pairing { | 6 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ |
| 7 |
| 8 :host { |
| 9 -webkit-user-select: none; |
7 background: white; | 10 background: white; |
8 height: 601px; | 11 display: block; |
9 padding: 20px; | 12 font-family: 'Roboto'; |
| 13 height: 600px; |
| 14 position: relative; |
10 width: 720px; | 15 width: 720px; |
11 } | 16 } |
12 | 17 |
13 #controller-pairing .page-name { | 18 core-animated-pages { |
14 text-align: center; | 19 height: 100%; |
| 20 width: 100%; |
15 } | 21 } |
16 | 22 |
17 #controller-pairing .device-list { | 23 .gaia-frame { |
18 border: 2px solid black; | 24 height: 300px; |
| 25 width: 339px; |
| 26 } |
| 27 |
| 28 controller-pairing-page[name='device-select']::shadow #top, |
| 29 controller-pairing-page[name='establishing-connection']::shadow #top { |
19 height: 200px; | 30 height: 200px; |
20 } | 31 } |
21 | 32 |
22 #controller-pairing button { | 33 controller-pairing-page[name='code-confirmation']::shadow #top, |
23 margin: 10px; | 34 controller-pairing-page[name='host-update']::shadow #top, |
| 35 controller-pairing-page[name='host-connection-lost']::shadow #top, |
| 36 controller-pairing-page[name='enrollment-introduction']::shadow #top { |
| 37 height: 300px; |
24 } | 38 } |
25 | 39 |
26 #controller-pairing .gaia-frame { | 40 controller-pairing-page[name='authentication']::shadow #top { |
27 height: 300px; | 41 height: 100px; |
28 } | 42 } |
| 43 |
| 44 indeterminate-progress { |
| 45 margin-bottom: 28px; |
| 46 margin-top: 28px; |
| 47 } |
| 48 |
| 49 #code { |
| 50 color: #757575; |
| 51 font-size: 55px; |
| 52 font-weight: 300; |
| 53 } |
| 54 |
| 55 pairing-device-list { |
| 56 height: 252px; |
| 57 } |
OLD | NEW |