| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 :host { | 7 :host { |
| 8 -webkit-user-select: none; | 8 -webkit-user-select: none; |
| 9 padding: 4px 12px 12px 12px; | 9 padding: 4px 12px 12px 12px; |
| 10 } | 10 } |
| 11 | 11 |
| 12 .shadow-editor-field { | 12 .shadow-editor-field { |
| 13 height: 24px; |
| 13 margin-top: 8px; | 14 margin-top: 8px; |
| 14 font-size: 12px; | 15 font-size: 12px; |
| 15 } | 16 } |
| 16 | 17 |
| 18 .shadow-editor-blur-field { |
| 19 height: 24px; |
| 20 margin-top: 40px; |
| 21 font-size: 12px; |
| 22 } |
| 23 |
| 24 .shadow-editor-2D-slider { |
| 25 position: absolute; |
| 26 height: 88px; |
| 27 width: 88px; |
| 28 border: 1px solid rgba(0, 0, 0, 0.14); |
| 29 border-radius: 2px; |
| 30 } |
| 31 |
| 17 .shadow-editor-label { | 32 .shadow-editor-label { |
| 18 display: inline-block; | 33 display: inline-block; |
| 19 width: 52px; | 34 width: 52px; |
| 20 height: 24px; | 35 height: 24px; |
| 21 line-height: 24px; | 36 line-height: 24px; |
| 22 margin-right: 8px; | 37 margin-right: 8px; |
| 23 text-align: right; | 38 text-align: right; |
| 24 } | 39 } |
| 25 | 40 |
| 26 .shadow-editor-button-left, .shadow-editor-button-right { | 41 .shadow-editor-button-left, .shadow-editor-button-right { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 .shadow-editor-text-input { | 77 .shadow-editor-text-input { |
| 63 -webkit-appearance: none; | 78 -webkit-appearance: none; |
| 64 box-sizing: border-box; | 79 box-sizing: border-box; |
| 65 width: 52px; | 80 width: 52px; |
| 66 height: 24px; | 81 height: 24px; |
| 67 margin-right: 8px; | 82 margin-right: 8px; |
| 68 padding: 3px 7px; | 83 padding: 3px 7px; |
| 69 line-height: 16px; | 84 line-height: 16px; |
| 70 border: 1px solid rgba(0, 0, 0, 0.14); | 85 border: 1px solid rgba(0, 0, 0, 0.14); |
| 71 border-radius: 2px; | 86 border-radius: 2px; |
| 72 border-color: rgba(0, 0, 0, 0.14); | |
| 73 background-color: #ffffff; | 87 background-color: #ffffff; |
| 74 color: #333; | 88 color: #333; |
| 75 text-align: right; | 89 text-align: right; |
| 76 } | 90 } |
| 77 | 91 |
| 78 .shadow-editor-text-input:focus { | 92 .shadow-editor-text-input:focus { |
| 79 border-color: #4285F4; | 93 border-color: #4285F4; |
| 80 } | 94 } |
| 81 | 95 |
| 82 .shadow-editor-text-input.invalid { | 96 .shadow-editor-text-input.invalid { |
| 83 border-color: #E67C73; | 97 border-color: #E67C73; |
| 84 } | 98 } |
| OLD | NEW |