| OLD | NEW |
| (Empty) | |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 #backdrop { |
| 6 align-items: center; |
| 7 background: rgba(255, 255, 255, 0.6); |
| 8 bottom: 0; |
| 9 display: flex; |
| 10 justify-content: center; |
| 11 left: 0; |
| 12 position: absolute; |
| 13 right: 0; |
| 14 top: 0; |
| 15 } |
| 16 |
| 17 #dialog { |
| 18 background: white; |
| 19 border-radius: 2px; |
| 20 box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), |
| 21 0 6px 30px 5px rgba(0, 0, 0, 0.12), |
| 22 0 8px 10px -5px rgba(0, 0, 0, 0.4); |
| 23 color: var(--paper-grey-800); |
| 24 width: 512px; |
| 25 } |
| 26 |
| 27 #title-bar { |
| 28 align-items: center; |
| 29 border-bottom: 1px solid rgba(0, 0, 0, .12); |
| 30 font-size: 16px; |
| 31 padding: 16px; |
| 32 } |
| 33 |
| 34 #title-bar iron-icon { |
| 35 --iron-icon-height: 12px; |
| 36 --iron-icon-width: 12px; |
| 37 } |
| 38 |
| 39 #message { |
| 40 padding: 20px 16px 16px 16px; |
| 41 white-space: pre-wrap; |
| 42 word-wrap: break-word; |
| 43 } |
| 44 |
| 45 #user-list .list-item { |
| 46 align-items: center; |
| 47 display: flex; |
| 48 height: 52px; |
| 49 padding: 0 16px; |
| 50 } |
| 51 |
| 52 #user-list .list-item .profile-img { |
| 53 flex-shrink: 0; |
| 54 } |
| 55 |
| 56 #user-list .list-item .profile-name { |
| 57 overflow: hidden; |
| 58 padding-left: 10px; |
| 59 text-overflow: ellipsis; |
| 60 white-space: nowrap; |
| 61 } |
| 62 |
| 63 #user-list .list-item .on-device { |
| 64 flex-shrink: 0; |
| 65 padding-left: 10px; |
| 66 } |
| 67 |
| 68 #user-list .list-item.selectable.iron-selected { |
| 69 background: var(--paper-grey-200); |
| 70 } |
| 71 |
| 72 #actions { |
| 73 margin-top: 20px; |
| 74 padding: 16px; |
| 75 } |
| 76 |
| 77 #actions paper-button { |
| 78 border-radius: 2px; |
| 79 font-weight: 500; |
| 80 line-height: 36px; |
| 81 margin: 0; |
| 82 min-width: 52px; |
| 83 padding: 0 16px; |
| 84 } |
| 85 |
| 86 #actions #cancel { |
| 87 color: var(--paper-grey-600); |
| 88 } |
| 89 |
| 90 #actions #import { |
| 91 -webkit-margin-start: 8px; |
| 92 background: var(--google-blue-500); |
| 93 color: white; |
| 94 } |
| 95 |
| 96 #actions #import[disabled] { |
| 97 background: rgba(66, 133, 244, .5); |
| 98 } |
| OLD | NEW |