Index: pkg/polymer/lib/elements/polymer-ui-field/polymer-ui-field.css |
diff --git a/pkg/polymer/lib/elements/polymer-ui-field/polymer-ui-field.css b/pkg/polymer/lib/elements/polymer-ui-field/polymer-ui-field.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3098ec0c37115f94af56b90bd422b0aa57271143 |
--- /dev/null |
+++ b/pkg/polymer/lib/elements/polymer-ui-field/polymer-ui-field.css |
@@ -0,0 +1,38 @@ |
+/* |
+Copyright 2013 The Polymer Authors. All rights reserved. |
+Use of this source code is governed by a BSD-style |
+license that can be found in the LICENSE file. |
+*/ |
+ |
+:host { |
+ display: block; |
+ /* border-bottom: 1px solid rgba(0, 0, 0, 0.15); */ |
+ color: #333; |
+ font-size: 14px; |
+} |
+ |
+/*@polyfill :host > polymer-ui-icon*/ |
+::content > polymer-ui-icon { |
+ margin: 8px; |
+} |
+ |
+/*@polyfill :host input*/ |
+::content input { |
+ display: block; |
+ background: transparent; |
+ border: 0; |
+ padding: 0; |
+ margin: 0 4px; |
+ color: #333; |
+ font-size: 14px; |
+} |
+ |
+/*@polyfill :host input:focus*/ |
+::content input:focus { |
+ outline: none; |
+} |
+ |
+/*@polyfill :host input::placeholder*/ |
+::content input::placeholder { |
+ color: #b3b3b3; |
+} |