@storybook/core-common 6.4.1 → 6.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/templates/base-preview-body.html +21 -217
- package/dist/cjs/templates/base-preview-head.html +197 -2
- package/dist/esm/templates/base-preview-body.html +21 -217
- package/dist/esm/templates/base-preview-head.html +197 -2
- package/dist/modern/templates/base-preview-body.html +21 -217
- package/dist/modern/templates/base-preview-head.html +197 -2
- package/package.json +3 -3
|
@@ -1,217 +1,21 @@
|
|
|
1
|
-
<style>
|
|
2
|
-
@-webkit-keyframes rotate360 {
|
|
3
|
-
from {
|
|
4
|
-
transform: rotate(0deg);
|
|
5
|
-
}
|
|
6
|
-
to {
|
|
7
|
-
transform: rotate(360deg);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
@keyframes rotate360 {
|
|
11
|
-
from {
|
|
12
|
-
transform: rotate(0deg);
|
|
13
|
-
}
|
|
14
|
-
to {
|
|
15
|
-
transform: rotate(360deg);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
@-webkit-keyframes glow {
|
|
19
|
-
0%,
|
|
20
|
-
100% {
|
|
21
|
-
opacity: 1;
|
|
22
|
-
}
|
|
23
|
-
50% {
|
|
24
|
-
opacity: 0.4;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
@keyframes glow {
|
|
28
|
-
0%,
|
|
29
|
-
100% {
|
|
30
|
-
opacity: 1;
|
|
31
|
-
}
|
|
32
|
-
50% {
|
|
33
|
-
opacity: 0.4;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
.isLoading {
|
|
37
|
-
cursor: progress;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.loader {
|
|
41
|
-
-webkit-animation: rotate360 0.7s linear infinite;
|
|
42
|
-
animation: rotate360 0.7s linear infinite;
|
|
43
|
-
border-color: rgba(97, 97, 97, 0.29);
|
|
44
|
-
border-radius: 50%;
|
|
45
|
-
border-style: solid;
|
|
46
|
-
border-top-color: #646464;
|
|
47
|
-
border-width: 2px;
|
|
48
|
-
display: inline-block;
|
|
49
|
-
height: 32px;
|
|
50
|
-
left: 50%;
|
|
51
|
-
margin-left: -16px;
|
|
52
|
-
margin-top: -16px;
|
|
53
|
-
mix-blend-mode: difference;
|
|
54
|
-
overflow: hidden;
|
|
55
|
-
position: absolute;
|
|
56
|
-
top: 50%;
|
|
57
|
-
transition: all 200ms ease-out;
|
|
58
|
-
vertical-align: top;
|
|
59
|
-
width: 32px;
|
|
60
|
-
z-index: 4;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.previewBlock {
|
|
64
|
-
background: #fff;
|
|
65
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
66
|
-
border-radius: 4px;
|
|
67
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0;
|
|
68
|
-
margin: 25px auto 40px;
|
|
69
|
-
max-width: 600px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.previewBlock_header {
|
|
73
|
-
align-items: center;
|
|
74
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 0 0 inset;
|
|
75
|
-
display: flex;
|
|
76
|
-
gap: 14px;
|
|
77
|
-
height: 40px;
|
|
78
|
-
padding: 0 12px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.previewBlock_icon {
|
|
82
|
-
-webkit-animation: glow 1.5s ease-in-out infinite;
|
|
83
|
-
animation: glow 1.5s ease-in-out infinite;
|
|
84
|
-
background: #e6e6e6;
|
|
85
|
-
height: 14px;
|
|
86
|
-
width: 14px;
|
|
87
|
-
}
|
|
88
|
-
.previewBlock_icon:last-child {
|
|
89
|
-
margin-left: auto;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.previewBlock_body {
|
|
93
|
-
-webkit-animation: glow 1.5s ease-in-out infinite;
|
|
94
|
-
animation: glow 1.5s ease-in-out infinite;
|
|
95
|
-
height: 182px;
|
|
96
|
-
position: relative;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.argstableBlock {
|
|
100
|
-
border-collapse: collapse;
|
|
101
|
-
border-spacing: 0;
|
|
102
|
-
font-size: 13px;
|
|
103
|
-
line-height: 20px;
|
|
104
|
-
margin: 25px auto 40px;
|
|
105
|
-
max-width: 600px;
|
|
106
|
-
text-align: left;
|
|
107
|
-
width: 100%;
|
|
108
|
-
}
|
|
109
|
-
.argstableBlock th:first-of-type,
|
|
110
|
-
.argstableBlock td:first-of-type {
|
|
111
|
-
padding-left: 20px;
|
|
112
|
-
}
|
|
113
|
-
.argstableBlock th:nth-of-type(2),
|
|
114
|
-
.argstableBlock td:nth-of-type(2) {
|
|
115
|
-
width: 35%;
|
|
116
|
-
}
|
|
117
|
-
.argstableBlock th:nth-of-type(3),
|
|
118
|
-
.argstableBlock td:nth-of-type(3) {
|
|
119
|
-
width: 15%;
|
|
120
|
-
}
|
|
121
|
-
.argstableBlock th:laste-of-type,
|
|
122
|
-
.argstableBlock td:laste-of-type {
|
|
123
|
-
width: 25%;
|
|
124
|
-
padding-right: 20px;
|
|
125
|
-
}
|
|
126
|
-
.argstableBlock th span,
|
|
127
|
-
.argstableBlock td span {
|
|
128
|
-
-webkit-animation: glow 1.5s ease-in-out infinite;
|
|
129
|
-
animation: glow 1.5s ease-in-out infinite;
|
|
130
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
131
|
-
border-radius: 0;
|
|
132
|
-
box-shadow: none;
|
|
133
|
-
color: transparent;
|
|
134
|
-
}
|
|
135
|
-
.argstableBlock th {
|
|
136
|
-
padding: 10px 15px;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.argstableBlock-body {
|
|
140
|
-
border-radius: 4px;
|
|
141
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 1px, rgba(0, 0, 0, 0.065) 0 0 0 1px;
|
|
142
|
-
}
|
|
143
|
-
.argstableBlock-body tr {
|
|
144
|
-
background: transparent;
|
|
145
|
-
overflow: hidden;
|
|
146
|
-
}
|
|
147
|
-
.argstableBlock-body tr:not(:first-child) {
|
|
148
|
-
border-top: 1px solid #e6e6e6;
|
|
149
|
-
}
|
|
150
|
-
.argstableBlock-body tr:first-child td:first-child {
|
|
151
|
-
border-top-left-radius: 4px;
|
|
152
|
-
}
|
|
153
|
-
.argstableBlock-body tr:first-child td:last-child {
|
|
154
|
-
border-top-right-radius: 4px;
|
|
155
|
-
}
|
|
156
|
-
.argstableBlock-body tr:last-child td:first-child {
|
|
157
|
-
border-bottom-left-radius: 4px;
|
|
158
|
-
}
|
|
159
|
-
.argstableBlock-body tr:last-child td:last-child {
|
|
160
|
-
border-bottom-right-radius: 4px;
|
|
161
|
-
}
|
|
162
|
-
.argstableBlock-body td {
|
|
163
|
-
background: #fff;
|
|
164
|
-
padding-bottom: 10px;
|
|
165
|
-
padding-top: 10px;
|
|
166
|
-
vertical-align: top;
|
|
167
|
-
}
|
|
168
|
-
.argstableBlock-body td:not(:first-of-type) {
|
|
169
|
-
padding-left: 15px;
|
|
170
|
-
padding-right: 15px;
|
|
171
|
-
}
|
|
172
|
-
.argstableBlock-body button {
|
|
173
|
-
-webkit-animation: glow 1.5s ease-in-out infinite;
|
|
174
|
-
animation: glow 1.5s ease-in-out infinite;
|
|
175
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
176
|
-
border: 0;
|
|
177
|
-
border-radius: 0;
|
|
178
|
-
box-shadow: none;
|
|
179
|
-
color: transparent;
|
|
180
|
-
display: inline;
|
|
181
|
-
font-size: 12px;
|
|
182
|
-
line-height: 1;
|
|
183
|
-
padding: 10px 16px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.argstableBlock-summary {
|
|
187
|
-
margin-top: 4px;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.argstableBlock-code {
|
|
191
|
-
margin-right: 4px;
|
|
192
|
-
margin-bottom: 4px;
|
|
193
|
-
padding: 2px 5px;
|
|
194
|
-
}
|
|
195
|
-
</style>
|
|
196
|
-
|
|
197
1
|
<div class="sb-preparing-story sb-wrapper">
|
|
198
|
-
<div class="loader"></div>
|
|
2
|
+
<div class="sb-loader"></div>
|
|
199
3
|
</div>
|
|
200
4
|
|
|
201
5
|
<div class="sb-preparing-docs sb-wrapper">
|
|
202
|
-
<div class="previewBlock">
|
|
203
|
-
<div class="previewBlock_header">
|
|
204
|
-
<div class="previewBlock_icon"></div>
|
|
205
|
-
<div class="previewBlock_icon"></div>
|
|
206
|
-
<div class="previewBlock_icon"></div>
|
|
207
|
-
<div class="previewBlock_icon"></div>
|
|
6
|
+
<div class="sb-previewBlock">
|
|
7
|
+
<div class="sb-previewBlock_header">
|
|
8
|
+
<div class="sb-previewBlock_icon"></div>
|
|
9
|
+
<div class="sb-previewBlock_icon"></div>
|
|
10
|
+
<div class="sb-previewBlock_icon"></div>
|
|
11
|
+
<div class="sb-previewBlock_icon"></div>
|
|
208
12
|
</div>
|
|
209
|
-
<div class="previewBlock_body">
|
|
210
|
-
<div class="loader"></div>
|
|
13
|
+
<div class="sb-previewBlock_body">
|
|
14
|
+
<div class="sb-loader"></div>
|
|
211
15
|
</div>
|
|
212
16
|
</div>
|
|
213
|
-
<table aria-hidden="true" class="argstableBlock">
|
|
214
|
-
<thead class="argstableBlock-head">
|
|
17
|
+
<table aria-hidden="true" class="sb-argstableBlock">
|
|
18
|
+
<thead class="sb-argstableBlock-head">
|
|
215
19
|
<tr>
|
|
216
20
|
<th><span>Name</span></th>
|
|
217
21
|
<th><span>Description</span></th>
|
|
@@ -219,17 +23,17 @@
|
|
|
219
23
|
<th><span>Control </span></th>
|
|
220
24
|
</tr>
|
|
221
25
|
</thead>
|
|
222
|
-
<tbody class="argstableBlock-body">
|
|
26
|
+
<tbody class="sb-argstableBlock-body">
|
|
223
27
|
<tr>
|
|
224
28
|
<td><span>propertyName</span><span title="Required">*</span></td>
|
|
225
29
|
<td>
|
|
226
30
|
<div><span>This is a short description</span></div>
|
|
227
|
-
<div class="argstableBlock-summary">
|
|
228
|
-
<div><span class="argstableBlock-code">summary</span></div>
|
|
31
|
+
<div class="sb-argstableBlock-summary">
|
|
32
|
+
<div><span class="sb-argstableBlock-code">summary</span></div>
|
|
229
33
|
</div>
|
|
230
34
|
</td>
|
|
231
35
|
<td>
|
|
232
|
-
<div><span class="argstableBlock-code">defaultValue</span></div>
|
|
36
|
+
<div><span class="sb-argstableBlock-code">defaultValue</span></div>
|
|
233
37
|
</td>
|
|
234
38
|
<td><button>Set string</button></td>
|
|
235
39
|
</tr>
|
|
@@ -237,12 +41,12 @@
|
|
|
237
41
|
<td><span>propertyName</span><span>*</span></td>
|
|
238
42
|
<td>
|
|
239
43
|
<div><span>This is a short description</span></div>
|
|
240
|
-
<div class="argstableBlock-summary">
|
|
241
|
-
<div><span class="argstableBlock-code">summary</span></div>
|
|
44
|
+
<div class="sb-argstableBlock-summary">
|
|
45
|
+
<div><span class="sb-argstableBlock-code">summary</span></div>
|
|
242
46
|
</div>
|
|
243
47
|
</td>
|
|
244
48
|
<td>
|
|
245
|
-
<div><span class="argstableBlock-code">defaultValue</span></div>
|
|
49
|
+
<div><span class="sb-argstableBlock-code">defaultValue</span></div>
|
|
246
50
|
</td>
|
|
247
51
|
<td><button>Set string</button></td>
|
|
248
52
|
</tr>
|
|
@@ -250,12 +54,12 @@
|
|
|
250
54
|
<td><span>propertyName</span><span>*</span></td>
|
|
251
55
|
<td>
|
|
252
56
|
<div><span>This is a short description</span></div>
|
|
253
|
-
<div class="argstableBlock-summary">
|
|
254
|
-
<div><span class="argstableBlock-code">summary</span></div>
|
|
57
|
+
<div class="sb-argstableBlock-summary">
|
|
58
|
+
<div><span class="sb-argstableBlock-code">summary</span></div>
|
|
255
59
|
</div>
|
|
256
60
|
</td>
|
|
257
61
|
<td>
|
|
258
|
-
<div><span class="argstableBlock-code">defaultValue</span></div>
|
|
62
|
+
<div><span class="sb-argstableBlock-code">defaultValue</span></div>
|
|
259
63
|
</td>
|
|
260
64
|
<td><button>Set string</button></td>
|
|
261
65
|
</tr>
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
<base target="_parent" />
|
|
2
2
|
|
|
3
3
|
<style>
|
|
4
|
-
:not(.sb-show-main) > #root,
|
|
5
|
-
:not(.sb-show-main) > #docs-root,
|
|
6
4
|
:not(.sb-show-preparing-story) > .sb-preparing-story,
|
|
7
5
|
:not(.sb-show-preparing-docs) > .sb-preparing-docs,
|
|
8
6
|
:not(.sb-show-nopreview) > .sb-nopreview,
|
|
@@ -102,6 +100,203 @@
|
|
|
102
100
|
.sb-errordisplay pre {
|
|
103
101
|
white-space: pre-wrap;
|
|
104
102
|
}
|
|
103
|
+
|
|
104
|
+
@-webkit-keyframes sb-rotate360 {
|
|
105
|
+
from {
|
|
106
|
+
transform: rotate(0deg);
|
|
107
|
+
}
|
|
108
|
+
to {
|
|
109
|
+
transform: rotate(360deg);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
@keyframes sb-rotate360 {
|
|
113
|
+
from {
|
|
114
|
+
transform: rotate(0deg);
|
|
115
|
+
}
|
|
116
|
+
to {
|
|
117
|
+
transform: rotate(360deg);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
@-webkit-keyframes sb-glow {
|
|
121
|
+
0%,
|
|
122
|
+
100% {
|
|
123
|
+
opacity: 1;
|
|
124
|
+
}
|
|
125
|
+
50% {
|
|
126
|
+
opacity: 0.4;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
@keyframes sb-glow {
|
|
130
|
+
0%,
|
|
131
|
+
100% {
|
|
132
|
+
opacity: 1;
|
|
133
|
+
}
|
|
134
|
+
50% {
|
|
135
|
+
opacity: 0.4;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/* We display the preparing loaders *over* the rendering story */
|
|
140
|
+
.sb-preparing-story,
|
|
141
|
+
.sb-preparing-docs {
|
|
142
|
+
background-color: white;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sb-loader {
|
|
146
|
+
-webkit-animation: sb-rotate360 0.7s linear infinite;
|
|
147
|
+
animation: sb-rotate360 0.7s linear infinite;
|
|
148
|
+
border-color: rgba(97, 97, 97, 0.29);
|
|
149
|
+
border-radius: 50%;
|
|
150
|
+
border-style: solid;
|
|
151
|
+
border-top-color: #646464;
|
|
152
|
+
border-width: 2px;
|
|
153
|
+
display: inline-block;
|
|
154
|
+
height: 32px;
|
|
155
|
+
left: 50%;
|
|
156
|
+
margin-left: -16px;
|
|
157
|
+
margin-top: -16px;
|
|
158
|
+
mix-blend-mode: difference;
|
|
159
|
+
overflow: hidden;
|
|
160
|
+
position: absolute;
|
|
161
|
+
top: 50%;
|
|
162
|
+
transition: all 200ms ease-out;
|
|
163
|
+
vertical-align: top;
|
|
164
|
+
width: 32px;
|
|
165
|
+
z-index: 4;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.sb-previewBlock {
|
|
169
|
+
background: #fff;
|
|
170
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
171
|
+
border-radius: 4px;
|
|
172
|
+
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0;
|
|
173
|
+
margin: 25px auto 40px;
|
|
174
|
+
max-width: 600px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.sb-previewBlock_header {
|
|
178
|
+
align-items: center;
|
|
179
|
+
box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 0 0 inset;
|
|
180
|
+
display: flex;
|
|
181
|
+
gap: 14px;
|
|
182
|
+
height: 40px;
|
|
183
|
+
padding: 0 12px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.sb-previewBlock_icon {
|
|
187
|
+
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
188
|
+
animation: sb-glow 1.5s ease-in-out infinite;
|
|
189
|
+
background: #e6e6e6;
|
|
190
|
+
height: 14px;
|
|
191
|
+
width: 14px;
|
|
192
|
+
}
|
|
193
|
+
.sb-previewBlock_icon:last-child {
|
|
194
|
+
margin-left: auto;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.sb-previewBlock_body {
|
|
198
|
+
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
199
|
+
animation: sb-glow 1.5s ease-in-out infinite;
|
|
200
|
+
height: 182px;
|
|
201
|
+
position: relative;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.sb-argstableBlock {
|
|
205
|
+
border-collapse: collapse;
|
|
206
|
+
border-spacing: 0;
|
|
207
|
+
font-size: 13px;
|
|
208
|
+
line-height: 20px;
|
|
209
|
+
margin: 25px auto 40px;
|
|
210
|
+
max-width: 600px;
|
|
211
|
+
text-align: left;
|
|
212
|
+
width: 100%;
|
|
213
|
+
}
|
|
214
|
+
.sb-argstableBlock th:first-of-type,
|
|
215
|
+
.sb-argstableBlock td:first-of-type {
|
|
216
|
+
padding-left: 20px;
|
|
217
|
+
}
|
|
218
|
+
.sb-argstableBlock th:nth-of-type(2),
|
|
219
|
+
.sb-argstableBlock td:nth-of-type(2) {
|
|
220
|
+
width: 35%;
|
|
221
|
+
}
|
|
222
|
+
.sb-argstableBlock th:nth-of-type(3),
|
|
223
|
+
.sb-argstableBlock td:nth-of-type(3) {
|
|
224
|
+
width: 15%;
|
|
225
|
+
}
|
|
226
|
+
.sb-argstableBlock th:laste-of-type,
|
|
227
|
+
.sb-argstableBlock td:laste-of-type {
|
|
228
|
+
width: 25%;
|
|
229
|
+
padding-right: 20px;
|
|
230
|
+
}
|
|
231
|
+
.sb-argstableBlock th span,
|
|
232
|
+
.sb-argstableBlock td span {
|
|
233
|
+
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
234
|
+
animation: sb-glow 1.5s ease-in-out infinite;
|
|
235
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
236
|
+
border-radius: 0;
|
|
237
|
+
box-shadow: none;
|
|
238
|
+
color: transparent;
|
|
239
|
+
}
|
|
240
|
+
.sb-argstableBlock th {
|
|
241
|
+
padding: 10px 15px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.sb-argstableBlock-body {
|
|
245
|
+
border-radius: 4px;
|
|
246
|
+
box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 1px, rgba(0, 0, 0, 0.065) 0 0 0 1px;
|
|
247
|
+
}
|
|
248
|
+
.sb-argstableBlock-body tr {
|
|
249
|
+
background: transparent;
|
|
250
|
+
overflow: hidden;
|
|
251
|
+
}
|
|
252
|
+
.sb-argstableBlock-body tr:not(:first-child) {
|
|
253
|
+
border-top: 1px solid #e6e6e6;
|
|
254
|
+
}
|
|
255
|
+
.sb-argstableBlock-body tr:first-child td:first-child {
|
|
256
|
+
border-top-left-radius: 4px;
|
|
257
|
+
}
|
|
258
|
+
.sb-argstableBlock-body tr:first-child td:last-child {
|
|
259
|
+
border-top-right-radius: 4px;
|
|
260
|
+
}
|
|
261
|
+
.sb-argstableBlock-body tr:last-child td:first-child {
|
|
262
|
+
border-bottom-left-radius: 4px;
|
|
263
|
+
}
|
|
264
|
+
.sb-argstableBlock-body tr:last-child td:last-child {
|
|
265
|
+
border-bottom-right-radius: 4px;
|
|
266
|
+
}
|
|
267
|
+
.sb-argstableBlock-body td {
|
|
268
|
+
background: #fff;
|
|
269
|
+
padding-bottom: 10px;
|
|
270
|
+
padding-top: 10px;
|
|
271
|
+
vertical-align: top;
|
|
272
|
+
}
|
|
273
|
+
.sb-argstableBlock-body td:not(:first-of-type) {
|
|
274
|
+
padding-left: 15px;
|
|
275
|
+
padding-right: 15px;
|
|
276
|
+
}
|
|
277
|
+
.sb-argstableBlock-body button {
|
|
278
|
+
-webkit-animation: sb-glow 1.5s ease-in-out infinite;
|
|
279
|
+
animation: sb-glow 1.5s ease-in-out infinite;
|
|
280
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
281
|
+
border: 0;
|
|
282
|
+
border-radius: 0;
|
|
283
|
+
box-shadow: none;
|
|
284
|
+
color: transparent;
|
|
285
|
+
display: inline;
|
|
286
|
+
font-size: 12px;
|
|
287
|
+
line-height: 1;
|
|
288
|
+
padding: 10px 16px;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.sb-argstableBlock-summary {
|
|
292
|
+
margin-top: 4px;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.sb-argstableBlock-code {
|
|
296
|
+
margin-right: 4px;
|
|
297
|
+
margin-bottom: 4px;
|
|
298
|
+
padding: 2px 5px;
|
|
299
|
+
}
|
|
105
300
|
</style>
|
|
106
301
|
|
|
107
302
|
<script>
|