Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: pkg/polymer/lib/elements/polymer-ui-field/polymer-ui-field.css

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698