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