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