OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Copyright 2013 The Polymer Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style |
| 4 license that can be found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 :host { |
| 8 display: block; |
| 9 /* border-bottom: 1px solid rgba(0, 0, 0, 0.15); */ |
| 10 color: #333; |
| 11 font-size: 14px; |
| 12 } |
| 13 |
| 14 /*@polyfill :host > polymer-ui-icon*/ |
| 15 ::content > polymer-ui-icon { |
| 16 margin: 8px; |
| 17 } |
| 18 |
| 19 /*@polyfill :host input*/ |
| 20 ::content input { |
| 21 display: block; |
| 22 background: transparent; |
| 23 border: 0; |
| 24 padding: 0; |
| 25 margin: 0 4px; |
| 26 color: #333; |
| 27 font-size: 14px; |
| 28 } |
| 29 |
| 30 /*@polyfill :host input:focus*/ |
| 31 ::content input:focus { |
| 32 outline: none; |
| 33 } |
| 34 |
| 35 /*@polyfill :host input::placeholder*/ |
| 36 ::content input::placeholder { |
| 37 color: #b3b3b3; |
| 38 } |
OLD | NEW |