OLD | NEW |
(Empty) | |
| 1 /* Copyright 2015 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 paper-input-decorator /deep/ .unfocused-underline { |
| 7 background-color: rgb(212, 212, 212); |
| 8 } |
| 9 |
| 10 paper-input-decorator /deep/ .focused-underline { |
| 11 background-color: rgb(66, 133, 244); |
| 12 } |
| 13 |
| 14 paper-input-decorator /deep/ ::-webkit-input-placeholder, |
| 15 paper-input-decorator /deep/ .label-text { |
| 16 color: rgba(0, 0, 0, 0.54) !important; |
| 17 } |
| 18 |
| 19 paper-input-decorator { |
| 20 color: rgba(0, 0, 0, 0.87); |
| 21 font-size: 15px; |
| 22 padding: 0; |
| 23 } |
| 24 |
| 25 :host-context(html[dir=rtl]) input { |
| 26 flex-direction: row-reverse; |
| 27 } |
| 28 |
| 29 #domainLabel { |
| 30 color: rgba(0, 0, 0, 0.54); |
| 31 direction: ltr; |
| 32 width: auto; |
| 33 } |
| 34 |
OLD | NEW |