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