73bcce88
luigser
COMPONENTS
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
@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;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
48
|
#summary .markdown-html pre {
|
73bcce88
luigser
COMPONENTS
|
49
50
51
52
53
54
|
background-color: var(--paper-grey-50);
border: solid #e5e5e5;
border-width: 1px 0;
overflow-x: auto;
padding: 12px 24px;
font-size: 15px;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
55
|
word-wrap: break-word;
|
73bcce88
luigser
COMPONENTS
|
56
57
|
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
58
|
#summary .markdown-html table {
|
73bcce88
luigser
COMPONENTS
|
59
60
61
62
63
64
|
width: 100%;
border-collapse: collapse;
margin: 12px 0;
border-top: 1px solid #e5e5e5;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
65
|
#summary .markdown-html tr {
|
73bcce88
luigser
COMPONENTS
|
66
67
68
69
|
border-bottom: 1px solid #e5e5e5;
padding: 0 18px;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
70
71
|
#summary .markdown-html td,
#summary .markdown-html th {
|
73bcce88
luigser
COMPONENTS
|
72
73
74
|
padding: 6px 12px;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
75
76
|
#summary .markdown-html td:first-child,
#summary .markdown-html th:first-child {
|
73bcce88
luigser
COMPONENTS
|
77
78
79
|
padding-left: 24px;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
80
81
|
#summary .markdown-html td:last-child,
#summary .markdown-html th:last-child {
|
73bcce88
luigser
COMPONENTS
|
82
83
84
|
padding-right: 24px;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
85
|
#summary .markdown-html code {
|
73bcce88
luigser
COMPONENTS
|
86
87
88
|
@apply(--paper-font-code1);
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
89
|
#summary .markdown-html p {
|
73bcce88
luigser
COMPONENTS
|
90
91
92
|
padding: 0 24px;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
93
|
#summary .markdown-html a {
|
73bcce88
luigser
COMPONENTS
|
94
95
96
97
98
|
color: var(--paper-indigo-a200);
font-weight: 500;
text-decoration: none;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
99
100
101
102
103
|
#summary .markdown-html h1,
#summary .markdown-html h2,
#summary .markdown-html h3,
#summary .markdown-html h4,
#summary .markdown-html h5 {
|
73bcce88
luigser
COMPONENTS
|
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
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;
}
|