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 .container { |
| 6 color: var(--paper-grey-800); |
| 7 margin: 64px auto; |
| 8 width: 556px; |
| 9 } |
| 10 |
| 11 #title-bar { |
| 12 border-bottom: 1px solid rgba(0, 0, 0, .12); |
| 13 font-size: 16px; |
| 14 padding-bottom: 20px; |
| 15 } |
| 16 |
| 17 #nameInput, |
| 18 paper-dropdown-menu { |
| 19 --paper-input-container-input: { |
| 20 color: inherit; |
| 21 font-size: inherit; |
| 22 }; |
| 23 } |
| 24 |
| 25 #nameInput { |
| 26 width: 300px; |
| 27 } |
| 28 |
| 29 paper-dropdown-menu { |
| 30 position: relative; |
| 31 top: -1px; |
| 32 width: 200px; |
| 33 } |
| 34 |
| 35 #icons { |
| 36 margin-top: 24px; |
| 37 } |
| 38 |
| 39 #icons #wrapper { |
| 40 margin: -12px -10px; |
| 41 } |
| 42 |
| 43 #icons paper-button { |
| 44 background: rgb(222, 222, 222); |
| 45 border: 1px solid rgba(0, 0, 0, .12); |
| 46 margin: 12px 10px; |
| 47 min-width: 0; |
| 48 padding: 6px 4px; |
| 49 } |
| 50 |
| 51 #icons paper-button[active] { |
| 52 border-color: var(--google-blue-500); |
| 53 } |
| 54 |
| 55 #icons paper-button:focus:not([active]) { |
| 56 outline: 1px dotted #666; |
| 57 } |
| 58 |
| 59 #createSupervisedContainer { |
| 60 margin-top: 10px; |
| 61 } |
| 62 |
| 63 #messageBubble { |
| 64 -webkit-transition: max-height 200ms, padding 200ms; |
| 65 background-color: var(--google-red-700); |
| 66 border-radius: 4px; |
| 67 color: white; |
| 68 font-weight: bold; |
| 69 margin-left: auto; |
| 70 margin-right: auto; |
| 71 margin-top: 16px; |
| 72 max-height: 50px; |
| 73 overflow: hidden; |
| 74 padding: 10px 10px; |
| 75 text-align: center; |
| 76 width: 80%; |
| 77 } |
| 78 |
| 79 #messageBubble:empty { |
| 80 display: none; |
| 81 } |
| 82 |
| 83 #actions { |
| 84 margin-top: 32px; |
| 85 } |
| 86 |
| 87 #actions paper-button { |
| 88 border-radius: 2px; |
| 89 line-height: 32px; |
| 90 min-width: 52px; |
| 91 padding: 0 16px; |
| 92 } |
| 93 |
| 94 #cancel { |
| 95 color: var(--paper-grey-600); |
| 96 } |
| 97 |
| 98 #save { |
| 99 -webkit-margin-end: 0; |
| 100 background: var(--google-blue-500); |
| 101 color: white; |
| 102 } |
| 103 |
| 104 #save[disabled] { |
| 105 background: rgba(66, 133, 244, .5); |
| 106 } |
OLD | NEW |