Index: polymer_1.0.4/bower_components/iron-doc-viewer/iron-doc-viewer.css |
diff --git a/polymer_1.0.4/bower_components/iron-doc-viewer/iron-doc-viewer.css b/polymer_1.0.4/bower_components/iron-doc-viewer/iron-doc-viewer.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0e8646cad36c851490bd228f6597b64e08f2fa49 |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/iron-doc-viewer/iron-doc-viewer.css |
@@ -0,0 +1,151 @@ |
+/* |
+@license |
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
+Code distributed by Google as part of the polymer project is also |
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
+*/ |
+:host { |
+ @apply(--paper-font-body1); |
+ display: block; |
+ color: #212121; |
+} |
+ |
+:host > header { |
+ @apply(--paper-font-headline); |
+ margin-bottom: 18px; |
+} |
+ |
+[hidden] { |
+ display: none !important; |
+} |
+ |
+#api { |
+ display: flex; |
+ align-items: center; |
+} |
+#api header { |
+ flex: 1; |
+ padding-left: 16px; |
+ @apply(--paper-font-subhead); |
+} |
+#api a { |
+ @apply(--paper-font-button); |
+ cursor: pointer; |
+ display: block; |
+ padding: 4px 16px; |
+ color: var(--paper-grey-800); |
+} |
+ |
+/* Common Formatting */ |
+ |
+#summary { |
+ padding: 4px 0; |
+} |
+ |
+#summary marked-element::shadow #content pre { |
+ background-color: var(--paper-grey-50); |
+ border: solid #e5e5e5; |
+ border-width: 1px 0; |
+ overflow-x: auto; |
+ padding: 12px 24px; |
+ font-size: 15px; |
+} |
+ |
+#summary marked-element::shadow #content table { |
+ width: 100%; |
+ border-collapse: collapse; |
+ margin: 12px 0; |
+ border-top: 1px solid #e5e5e5; |
+} |
+ |
+#summary marked-element::shadow #content tr { |
+ border-bottom: 1px solid #e5e5e5; |
+ padding: 0 18px; |
+} |
+ |
+#summary marked-element::shadow #content td, |
+#summary marked-element::shadow #content th { |
+ padding: 6px 12px; |
+} |
+ |
+#summary marked-element::shadow #content td:first-child, |
+#summary marked-element::shadow #content th:first-child { |
+ padding-left: 24px; |
+} |
+ |
+#summary marked-element::shadow #content td:last-child, |
+#summary marked-element::shadow #content th:last-child { |
+ padding-right: 24px; |
+} |
+ |
+#summary marked-element::shadow #content code { |
+ @apply(--paper-font-code1); |
+} |
+ |
+#summary marked-element::shadow #content p { |
+ padding: 0 24px; |
+} |
+ |
+#summary marked-element::shadow #content a { |
+ color: var(--paper-indigo-a200); |
+ font-weight: 500; |
+ text-decoration: none; |
+} |
+ |
+#summary marked-element::shadow #content h1, |
+#summary marked-element::shadow #content h2, |
+#summary marked-element::shadow #content h3, |
+#summary marked-element::shadow #content h4, |
+#summary marked-element::shadow #content h5 { |
+ padding: 0 18px; |
+} |
+ |
+/* Property Sections */ |
+ |
+.card { |
+ background: white; |
+ margin-bottom: 20px; |
+ border-radius: 2px; |
+ @apply(--shadow-elevation-2dp); |
+} |
+ |
+.card > header { |
+ padding: 14px 24px; |
+ border-bottom: 1px solid #e5e5e5; |
+ font-size: 20px; |
+ line-height: 28px; |
+ font-weight: 400; |
+} |
+ |
+iron-doc-property { |
+ border-bottom: 1px solid #e5e5e5; |
+} |
+iron-doc-property:last-of-type { |
+ border-bottom-width: 0; |
+} |
+ |
+/* Private Properties */ |
+ |
+iron-doc-property[private] { |
+ display: none; |
+} |
+ |
+:host(.show-private) iron-doc-property[private] { |
+ display: block; |
+} |
+ |
+iron-doc-property[configuration] { |
+ display: none !important; /* Never. */ |
+} |
+ |
+#behaviors > p { |
+ border-bottom: 1px solid #e5e5e5; |
+ box-sizing: border-box; |
+ display: block; |
+ padding: 16px 24px; |
+ cursor: pointer; |
+} |
+ |