@healthcatalyst/catalyst-docfx-template 1.0.37 → 1.0.41
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/cashmere/hcicons/hcicons.eot +0 -0
- package/cashmere/hcicons/hcicons.scss +504 -0
- package/cashmere/hcicons/hcicons.svg +169 -0
- package/cashmere/hcicons/hcicons.ttf +0 -0
- package/cashmere/hcicons/hcicons.woff +0 -0
- package/cashmere/hcicons/hcicons.woff2 +0 -0
- package/healthcatalyst-catalyst-docfx-template-1.0.41.tgz +0 -0
- package/package.json +1 -1
- package/partials/affix.tmpl.partial +5 -2
- package/partials/breadcrumb.tmpl.partial +11 -8
- package/partials/footer.tmpl.partial +3 -2
- package/partials/head.tmpl.partial +2 -1
- package/partials/navbar.tmpl.partial +1 -2
- package/partials/scripts.tmpl.partial +1 -0
- package/styles/docs-navbar.js +2581 -1976
- package/styles/main.css +1018 -937
- package/styles/main.js +65 -50
- package/healthcatalyst-catalyst-docfx-template-1.0.37.tgz +0 -0
package/styles/main.css
CHANGED
|
@@ -1,986 +1,1195 @@
|
|
|
1
|
+
.static {
|
|
2
|
+
position: absolute;
|
|
3
|
+
background: white;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.static:hover {
|
|
7
|
+
opacity: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
/* In-copy links */
|
|
2
|
-
|
|
3
|
-
|
|
12
|
+
|
|
13
|
+
button,
|
|
14
|
+
a {
|
|
15
|
+
color: #00aeff;
|
|
4
16
|
}
|
|
5
17
|
|
|
18
|
+
|
|
6
19
|
/* Hover links */
|
|
7
|
-
|
|
8
|
-
|
|
20
|
+
|
|
21
|
+
button:hover,
|
|
22
|
+
button:focus,
|
|
23
|
+
a:hover,
|
|
24
|
+
a:focus {
|
|
25
|
+
color: #33beff;
|
|
9
26
|
}
|
|
10
27
|
|
|
28
|
+
|
|
11
29
|
/* Body */
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
30
|
+
|
|
31
|
+
body,
|
|
32
|
+
p {
|
|
33
|
+
line-height: 1.5;
|
|
34
|
+
color: #555;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
font-size: 15px;
|
|
37
|
+
page-break-inside: avoid;
|
|
17
38
|
}
|
|
18
39
|
|
|
40
|
+
|
|
19
41
|
/* Bold */
|
|
20
|
-
|
|
21
|
-
|
|
42
|
+
|
|
43
|
+
b,
|
|
44
|
+
optgroup,
|
|
45
|
+
strong {
|
|
46
|
+
font-weight: 600;
|
|
22
47
|
}
|
|
23
48
|
|
|
49
|
+
|
|
24
50
|
/* Headings */
|
|
51
|
+
|
|
25
52
|
article h1:first-of-type {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
53
|
+
border-bottom: 1px solid #E1E3E3;
|
|
54
|
+
padding-bottom: 30px;
|
|
55
|
+
padding-right: 200px;
|
|
56
|
+
margin-top: 15px;
|
|
30
57
|
}
|
|
31
58
|
|
|
32
59
|
article h1 {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
60
|
+
font-size: 36px;
|
|
61
|
+
font-weight: 300;
|
|
62
|
+
line-height: 1.2;
|
|
63
|
+
margin-bottom: 35px;
|
|
64
|
+
color: black;
|
|
38
65
|
}
|
|
39
66
|
|
|
40
67
|
article h2 {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
68
|
+
font-size: 26px;
|
|
69
|
+
font-weight: 600;
|
|
70
|
+
line-height: 1.5;
|
|
71
|
+
color: #333;
|
|
72
|
+
margin-top: 25px;
|
|
46
73
|
}
|
|
47
74
|
|
|
48
75
|
article h3 {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
76
|
+
font-size: 22px;
|
|
77
|
+
font-weight: 600;
|
|
78
|
+
line-height: 1.5;
|
|
79
|
+
color: #333;
|
|
80
|
+
margin-top: 30px;
|
|
54
81
|
}
|
|
55
82
|
|
|
56
83
|
article h4 {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
84
|
+
font-size: 18px;
|
|
85
|
+
line-height: 1.5;
|
|
86
|
+
color: #333;
|
|
87
|
+
font-weight: 600;
|
|
88
|
+
border-bottom: none;
|
|
89
|
+
margin-top: 25px;
|
|
90
|
+
margin-bottom: 10px;
|
|
64
91
|
}
|
|
65
92
|
|
|
66
93
|
article h5 {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
94
|
+
font-size: 16px;
|
|
95
|
+
line-height: 1.25em;
|
|
96
|
+
font-weight: 600;
|
|
97
|
+
color: #333;
|
|
98
|
+
margin-top: 20px;
|
|
72
99
|
}
|
|
73
100
|
|
|
74
101
|
article h6 {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
102
|
+
font-size: 14px;
|
|
103
|
+
line-height: 1.25em;
|
|
104
|
+
font-weight: 600;
|
|
105
|
+
color: #006D9A;
|
|
106
|
+
margin-top: 14px;
|
|
80
107
|
}
|
|
81
108
|
|
|
82
|
-
article h1,
|
|
83
|
-
|
|
109
|
+
article h1,
|
|
110
|
+
h2,
|
|
111
|
+
h3,
|
|
112
|
+
h4,
|
|
113
|
+
h5,
|
|
114
|
+
h6 {
|
|
115
|
+
word-break: keep-all;
|
|
84
116
|
}
|
|
85
117
|
|
|
118
|
+
|
|
86
119
|
/* When H3 follows H2 */
|
|
87
|
-
|
|
88
|
-
|
|
120
|
+
|
|
121
|
+
article h2+h3 {
|
|
122
|
+
margin-top: 20px;
|
|
89
123
|
}
|
|
90
124
|
|
|
125
|
+
|
|
91
126
|
/* When H4 follows H3 */
|
|
92
|
-
|
|
93
|
-
|
|
127
|
+
|
|
128
|
+
article h3+h4 {
|
|
129
|
+
margin-top: 20px;
|
|
94
130
|
}
|
|
95
131
|
|
|
132
|
+
|
|
96
133
|
/* When blockquote follows H1 */
|
|
97
|
-
article h1 + blockquote {
|
|
98
|
-
margin-top: 0px;
|
|
99
|
-
}
|
|
100
134
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
margin-top: 15px;
|
|
135
|
+
article h1+blockquote {
|
|
136
|
+
margin-top: 0px;
|
|
104
137
|
}
|
|
105
138
|
|
|
106
|
-
/* Numbering */
|
|
107
139
|
|
|
108
|
-
|
|
109
|
-
margin-top: 10px;
|
|
110
|
-
margin-bottom: 10px;
|
|
111
|
-
padding-left: 34px;
|
|
112
|
-
}
|
|
140
|
+
/* When a blockquote follows a table */
|
|
113
141
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
padding-top: 7px;
|
|
117
|
-
text-indent: -1.3em;
|
|
118
|
-
margin-left: -7px;
|
|
142
|
+
table+blockquote {
|
|
143
|
+
margin-top: 15px;
|
|
119
144
|
}
|
|
120
145
|
|
|
121
|
-
ol > li:before {
|
|
122
|
-
content: "";
|
|
123
|
-
width: 20px;
|
|
124
|
-
display: inline-block;
|
|
125
|
-
}
|
|
126
146
|
|
|
127
147
|
/* Bullets */
|
|
128
|
-
|
|
129
|
-
|
|
148
|
+
|
|
149
|
+
article>ul>li>p {
|
|
150
|
+
margin-bottom: 0px;
|
|
151
|
+
page-break-inside: avoid;
|
|
130
152
|
}
|
|
131
153
|
|
|
132
|
-
article
|
|
133
|
-
|
|
134
|
-
|
|
154
|
+
article>ul>li {
|
|
155
|
+
padding-left: 12px;
|
|
156
|
+
display: table;
|
|
135
157
|
}
|
|
136
158
|
|
|
137
|
-
article
|
|
138
|
-
|
|
159
|
+
article>ul li ul li p {
|
|
160
|
+
margin-bottom: 0px;
|
|
161
|
+
page-break-inside: avoid;
|
|
139
162
|
}
|
|
140
163
|
|
|
141
|
-
article
|
|
142
|
-
|
|
164
|
+
article>ul li ul li ul li p {
|
|
165
|
+
margin-bottom: 0px;
|
|
166
|
+
page-break-inside: avoid;
|
|
143
167
|
}
|
|
144
168
|
|
|
169
|
+
|
|
145
170
|
/* Clickability fix for selector on sm devices */
|
|
171
|
+
|
|
146
172
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
173
|
+
article h1:first-of-type:before {
|
|
174
|
+
height: 0;
|
|
175
|
+
margin-top: 0;
|
|
176
|
+
}
|
|
151
177
|
}
|
|
152
178
|
|
|
153
179
|
@media (max-width: 768px) {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
180
|
+
article {
|
|
181
|
+
margin: 120px 0 0 0 !important;
|
|
182
|
+
}
|
|
157
183
|
}
|
|
158
184
|
|
|
185
|
+
|
|
159
186
|
/* Bullets setup */
|
|
187
|
+
|
|
160
188
|
article ul {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
189
|
+
list-style-type: none;
|
|
190
|
+
padding-left: 0px;
|
|
191
|
+
margin-bottom: 0px;
|
|
192
|
+
page-break-inside: avoid;
|
|
164
193
|
}
|
|
165
194
|
|
|
195
|
+
|
|
166
196
|
/* First-level bullets margin */
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
197
|
+
|
|
198
|
+
article ul>li:before {
|
|
199
|
+
content: "\2022 ";
|
|
200
|
+
display: table-cell;
|
|
201
|
+
padding-right: 10px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
blockquote ul>li:before {
|
|
205
|
+
content: "\2022 ";
|
|
206
|
+
float: left;
|
|
207
|
+
display: table-cell;
|
|
208
|
+
padding-right: 15px;
|
|
171
209
|
}
|
|
172
210
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
211
|
+
blockquote ul>li {
|
|
212
|
+
padding-bottom: 5px;
|
|
213
|
+
text-indent: -15px;
|
|
214
|
+
padding-left: 15px;
|
|
176
215
|
}
|
|
177
216
|
|
|
178
|
-
|
|
179
|
-
|
|
217
|
+
.alert ul>li:before {
|
|
218
|
+
content: "\2022 ";
|
|
219
|
+
display: inline;
|
|
180
220
|
}
|
|
181
221
|
|
|
222
|
+
article ul>li:last-child {
|
|
223
|
+
padding-bottom: 10px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
|
|
182
227
|
/* Exclude these overrides from tab group headers */
|
|
183
|
-
|
|
184
|
-
|
|
228
|
+
|
|
229
|
+
article .tabGroup>ul>li:before {
|
|
230
|
+
content: "";
|
|
185
231
|
}
|
|
186
|
-
|
|
187
|
-
|
|
232
|
+
|
|
233
|
+
article .tabGroup>ul>li:last-child {
|
|
234
|
+
padding-bottom: 0;
|
|
188
235
|
}
|
|
189
236
|
|
|
237
|
+
|
|
190
238
|
/* Second-level bullets */
|
|
191
|
-
|
|
192
|
-
|
|
239
|
+
|
|
240
|
+
article ul li ul li,
|
|
241
|
+
article ol li ul li {
|
|
242
|
+
display: table;
|
|
193
243
|
}
|
|
244
|
+
|
|
194
245
|
article ul li ul li:before {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
246
|
+
content: "\2013 ";
|
|
247
|
+
display: table-cell;
|
|
248
|
+
padding-right: 15px;
|
|
198
249
|
}
|
|
199
250
|
|
|
200
251
|
article ul li ul li:first-child {
|
|
201
|
-
|
|
252
|
+
padding-top: 7px;
|
|
202
253
|
}
|
|
203
254
|
|
|
204
255
|
article ul li ul li:last-child {
|
|
205
|
-
|
|
256
|
+
padding-bottom: 6px;
|
|
206
257
|
}
|
|
207
258
|
|
|
259
|
+
|
|
208
260
|
/* Third-level bullets */
|
|
261
|
+
|
|
209
262
|
article ul li ul li ul li:before {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
263
|
+
content: "\002D ";
|
|
264
|
+
display: table-cell;
|
|
265
|
+
padding-right: 10px;
|
|
213
266
|
}
|
|
214
267
|
|
|
268
|
+
|
|
215
269
|
/* Bullets inside tables */
|
|
270
|
+
|
|
271
|
+
|
|
216
272
|
/*First level */
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
273
|
+
|
|
274
|
+
table>tbody>tr>td>ul>li {
|
|
275
|
+
padding-right: 7px;
|
|
276
|
+
display: table;
|
|
220
277
|
}
|
|
221
278
|
|
|
279
|
+
|
|
222
280
|
/* Second level */
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
281
|
+
|
|
282
|
+
table>tbody>tr>td>ul>li>ul>li {
|
|
283
|
+
content: "\002D ";
|
|
284
|
+
display: table;
|
|
285
|
+
padding-right: 15px;
|
|
227
286
|
}
|
|
228
287
|
|
|
288
|
+
|
|
229
289
|
/* Blockquote */
|
|
290
|
+
|
|
230
291
|
blockquote {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
292
|
+
border-left: 5px solid #F0F3F6;
|
|
293
|
+
font-size: 15px;
|
|
294
|
+
margin-top: 30px;
|
|
295
|
+
margin-bottom: 20px;
|
|
235
296
|
}
|
|
236
297
|
|
|
298
|
+
|
|
237
299
|
/* Code */
|
|
300
|
+
|
|
238
301
|
code {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
302
|
+
color: #a94c9d;
|
|
303
|
+
background-color: #f1f1f1;
|
|
304
|
+
border-color: #F0F3F6;
|
|
305
|
+
border-radius: 3px;
|
|
306
|
+
padding-top: 3px;
|
|
307
|
+
padding-right: 7px;
|
|
308
|
+
padding-bottom: 3px;
|
|
309
|
+
padding-left: 7px;
|
|
310
|
+
line-height: 1.4;
|
|
248
311
|
}
|
|
249
312
|
|
|
250
313
|
pre {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
314
|
+
border: 1px solid #a1a1a1;
|
|
315
|
+
padding: 20px;
|
|
316
|
+
margin: 20px auto;
|
|
317
|
+
border-radius: 5px;
|
|
318
|
+
display: block;
|
|
319
|
+
background-color: #f1f1f1;
|
|
320
|
+
font-weight: 400;
|
|
258
321
|
}
|
|
259
322
|
|
|
260
323
|
.fa-code {
|
|
261
|
-
|
|
324
|
+
font-size: 19px;
|
|
262
325
|
}
|
|
263
326
|
|
|
327
|
+
|
|
264
328
|
/* Images */
|
|
329
|
+
|
|
265
330
|
.article img {
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
331
|
+
max-width: 100%;
|
|
332
|
+
border: solid;
|
|
333
|
+
border-width: thin;
|
|
334
|
+
border-color: #D7DDE4;
|
|
335
|
+
margin-top: 10px;
|
|
336
|
+
margin-bottom: 10px;
|
|
272
337
|
}
|
|
273
338
|
|
|
339
|
+
|
|
274
340
|
/* Tables */
|
|
275
|
-
.table {
|
|
276
|
-
margin-bottom: 20px;
|
|
277
|
-
font-size: 14px;
|
|
278
|
-
}
|
|
279
341
|
|
|
280
|
-
.table
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
342
|
+
.table {
|
|
343
|
+
margin-bottom: 20px;
|
|
344
|
+
font-size: 14px;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.table-bordered,
|
|
348
|
+
.table-bordered>tbody>tr>td,
|
|
349
|
+
.table-bordered>tbody>tr>th,
|
|
350
|
+
.table-bordered>tfoot>tr>td,
|
|
351
|
+
.table-bordered>tfoot>tr>th,
|
|
352
|
+
.table-bordered>thead>tr>td,
|
|
353
|
+
.table-bordered>thead>tr>th {
|
|
354
|
+
border-top: none;
|
|
355
|
+
border-left: none;
|
|
356
|
+
border-right: none;
|
|
357
|
+
padding: 5px;
|
|
358
|
+
border-bottom: 1px solid #D7DDE4;
|
|
359
|
+
font-size: 14px;
|
|
287
360
|
}
|
|
288
361
|
|
|
289
362
|
th {
|
|
290
|
-
|
|
291
|
-
|
|
363
|
+
font-weight: 600;
|
|
364
|
+
color: #006d9a;
|
|
292
365
|
}
|
|
293
366
|
|
|
294
|
-
.table-bordered
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
367
|
+
.table-bordered>thead>tr>td,
|
|
368
|
+
.table-bordered>thead>tr>th {
|
|
369
|
+
border-bottom: 1px solid #D7DDE4;
|
|
370
|
+
padding-top: 15px;
|
|
371
|
+
font-size: 14px;
|
|
298
372
|
}
|
|
299
373
|
|
|
300
374
|
td:nth-of-type(1) {
|
|
301
|
-
|
|
375
|
+
font-weight: 600;
|
|
302
376
|
}
|
|
303
377
|
|
|
304
|
-
.table-striped
|
|
305
|
-
|
|
378
|
+
.table-striped>tbody>tr:nth-of-type(2n+1) {
|
|
379
|
+
background-color: white;
|
|
306
380
|
}
|
|
307
381
|
|
|
382
|
+
|
|
308
383
|
/* Callouts */
|
|
384
|
+
|
|
309
385
|
.alert {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
386
|
+
color: #333;
|
|
387
|
+
background-color: white;
|
|
388
|
+
border-top: #d7dde4 solid 1px;
|
|
389
|
+
border-right: #d7dde4 solid 1px;
|
|
390
|
+
border-bottom: #d7dde4 solid 1px;
|
|
391
|
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.1);
|
|
392
|
+
margin-top: 30px;
|
|
393
|
+
margin-bottom: 30px;
|
|
318
394
|
}
|
|
319
395
|
|
|
320
396
|
.alert h5 {
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
397
|
+
font-size: 18px;
|
|
398
|
+
text-transform: none;
|
|
399
|
+
padding-bottom: 5px;
|
|
324
400
|
}
|
|
325
401
|
|
|
326
402
|
.alert h5:before {
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
403
|
+
position: relative;
|
|
404
|
+
top: 1px;
|
|
405
|
+
display: inline-block;
|
|
406
|
+
font-family: 'FontAwesome';
|
|
407
|
+
line-height: 1;
|
|
408
|
+
-webkit-font-smoothing: antialiased;
|
|
409
|
+
-moz-osx-font-smoothing: grayscale;
|
|
410
|
+
margin-right: 8px;
|
|
411
|
+
font-weight: normal;
|
|
336
412
|
}
|
|
337
413
|
|
|
338
414
|
.alert-info h5 {
|
|
339
|
-
|
|
415
|
+
color: #6e53a3;
|
|
340
416
|
}
|
|
341
417
|
|
|
342
418
|
.alert-info h5:before {
|
|
343
|
-
|
|
419
|
+
content: "\f05a";
|
|
344
420
|
}
|
|
345
421
|
|
|
346
422
|
.alert-info {
|
|
347
|
-
|
|
423
|
+
border-left: #6e53a3 solid 8px;
|
|
348
424
|
}
|
|
349
425
|
|
|
350
426
|
.alert-warning h5 {
|
|
351
|
-
|
|
427
|
+
color: #f8961d;
|
|
352
428
|
}
|
|
353
429
|
|
|
354
430
|
.alert-warning h5:before {
|
|
355
|
-
|
|
431
|
+
content: "\f071";
|
|
356
432
|
}
|
|
357
433
|
|
|
358
434
|
.alert-warning {
|
|
359
|
-
|
|
435
|
+
border-left: #f8961d solid 8px;
|
|
360
436
|
}
|
|
361
437
|
|
|
362
438
|
.alert-danger h5 {
|
|
363
|
-
|
|
439
|
+
color: #00aeff;
|
|
364
440
|
}
|
|
365
441
|
|
|
366
442
|
.alert-danger h5:before {
|
|
367
|
-
|
|
443
|
+
content: "\f06a";
|
|
368
444
|
}
|
|
369
445
|
|
|
370
446
|
.alert-danger {
|
|
371
|
-
|
|
447
|
+
border-left: #00aeff solid 8px;
|
|
372
448
|
}
|
|
373
449
|
|
|
374
450
|
.label-info {
|
|
375
|
-
|
|
376
|
-
|
|
451
|
+
background-color: #00aeff;
|
|
452
|
+
line-height: 2.25;
|
|
377
453
|
}
|
|
378
454
|
|
|
455
|
+
|
|
379
456
|
/* Left-side color on landing page boxes (which are .alert only) */
|
|
380
|
-
|
|
381
|
-
|
|
457
|
+
|
|
458
|
+
#install-box,
|
|
459
|
+
#user-box,
|
|
460
|
+
#developer-box,
|
|
461
|
+
#admin-box,
|
|
462
|
+
#platform-box,
|
|
463
|
+
#CADS-box,
|
|
464
|
+
#ACO-box,
|
|
465
|
+
#OPM-box {
|
|
466
|
+
margin-top: 25px;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
#install-box,
|
|
470
|
+
#user-box {
|
|
471
|
+
border-left: #00abf9 solid 8px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
#developer-box {
|
|
475
|
+
border-left: #f8961d solid 8px;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
#admin-box {
|
|
479
|
+
border-left: #00a859 solid 8px;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
#platform-box {
|
|
483
|
+
border-left: #00abf9 solid 6px;
|
|
382
484
|
}
|
|
383
485
|
|
|
384
|
-
#
|
|
385
|
-
|
|
486
|
+
#CADS-box {
|
|
487
|
+
border-left: #6E53A3 solid 6px;
|
|
386
488
|
}
|
|
387
489
|
|
|
388
|
-
#
|
|
389
|
-
|
|
390
|
-
border-left: #f8961d solid 8px;
|
|
490
|
+
#ACO-box {
|
|
491
|
+
border-left: #F89E54 solid 6px;
|
|
391
492
|
}
|
|
392
493
|
|
|
393
|
-
#
|
|
394
|
-
|
|
395
|
-
border-left: #00a859 solid 8px;
|
|
494
|
+
#OPM-box {
|
|
495
|
+
border-left: #E04E5B solid 6px;
|
|
396
496
|
}
|
|
397
497
|
|
|
498
|
+
|
|
398
499
|
/* TOC */
|
|
399
|
-
.toc .level1 > li {
|
|
400
|
-
color: #6D6E70;
|
|
401
|
-
font-size: 14px;
|
|
402
|
-
/*text-transform: uppercase;*/
|
|
403
|
-
margin-bottom: 5px;
|
|
404
|
-
font-weight: 400;
|
|
405
|
-
}
|
|
406
500
|
|
|
407
|
-
.toc .
|
|
408
|
-
|
|
501
|
+
.toc .level1>li {
|
|
502
|
+
color: #6D6E70;
|
|
503
|
+
font-size: 14px;
|
|
504
|
+
/* text-transform: uppercase; */
|
|
505
|
+
margin-bottom: 5px;
|
|
506
|
+
font-weight: 400;
|
|
409
507
|
}
|
|
410
508
|
|
|
411
|
-
.toc .
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
509
|
+
.toc .level2>li {
|
|
510
|
+
text-transform: none !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.toc .nav>li>a {
|
|
514
|
+
color: #6D6E70;
|
|
515
|
+
padding-top: 10px;
|
|
516
|
+
line-height: 1.2;
|
|
517
|
+
}
|
|
416
518
|
|
|
417
|
-
.toc .nav
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
519
|
+
.toc .nav>li.active>a {
|
|
520
|
+
color: #00aeff;
|
|
521
|
+
border-bottom-width: 4px;
|
|
522
|
+
}
|
|
421
523
|
|
|
422
|
-
.toc .nav
|
|
423
|
-
|
|
524
|
+
.toc .nav>li>a:hover,
|
|
525
|
+
.toc .nav>li>a:focus {
|
|
526
|
+
color: #00aeff;
|
|
424
527
|
}
|
|
425
528
|
|
|
426
|
-
.toc .nav
|
|
427
|
-
|
|
529
|
+
.toc .nav>li.active>a:hover,
|
|
530
|
+
.toc .nav>li.active>a:focus {
|
|
531
|
+
color: #00aeff;
|
|
428
532
|
}
|
|
429
533
|
|
|
534
|
+
|
|
430
535
|
/* little plus or minus in TOC */
|
|
536
|
+
|
|
431
537
|
.expand-stub {
|
|
432
|
-
|
|
538
|
+
margin-top: 6px;
|
|
433
539
|
}
|
|
434
540
|
|
|
435
|
-
.toc .nav
|
|
436
|
-
|
|
541
|
+
.toc .nav>li>.expand-stub {
|
|
542
|
+
margin-top: 7px;
|
|
437
543
|
}
|
|
438
544
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
545
|
+
|
|
546
|
+
/* 2nd and 3rd level expandable menu items in left-side menu - make same font size as 1st level */
|
|
547
|
+
|
|
548
|
+
.toc .level2,
|
|
549
|
+
.toc .level3 {
|
|
550
|
+
font-size: 14px;
|
|
442
551
|
}
|
|
443
552
|
|
|
444
553
|
.toc .level3 {
|
|
445
|
-
|
|
446
|
-
|
|
554
|
+
padding-left: 5px;
|
|
555
|
+
margin-top: 0px;
|
|
447
556
|
}
|
|
448
557
|
|
|
449
|
-
.toc .level4,
|
|
450
|
-
|
|
451
|
-
|
|
558
|
+
.toc .level4,
|
|
559
|
+
.toc .level5,
|
|
560
|
+
.toc .level6 {
|
|
561
|
+
font-size: 12px;
|
|
562
|
+
padding-left: 5px;
|
|
452
563
|
}
|
|
453
564
|
|
|
454
565
|
.toc ul {
|
|
455
|
-
|
|
566
|
+
margin-top: 0px;
|
|
456
567
|
}
|
|
457
568
|
|
|
458
569
|
body .toc {
|
|
459
|
-
|
|
570
|
+
overflow-x: unset;
|
|
460
571
|
}
|
|
461
572
|
|
|
573
|
+
|
|
462
574
|
/* TOC filter */
|
|
575
|
+
|
|
463
576
|
.toc-filter {
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
577
|
+
border-radius: 0px;
|
|
578
|
+
margin: 25px 0;
|
|
579
|
+
color: #888888;
|
|
580
|
+
border: 1px solid #D7D7D7;
|
|
468
581
|
}
|
|
469
582
|
|
|
470
|
-
.toc-filter
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
583
|
+
.toc-filter>input {
|
|
584
|
+
font-size: 14px;
|
|
585
|
+
color: #888888;
|
|
586
|
+
padding: 0 30px 0 5px;
|
|
474
587
|
}
|
|
475
588
|
|
|
476
|
-
.toc-filter
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
589
|
+
.toc-filter>.filter-icon {
|
|
590
|
+
right: 10px;
|
|
591
|
+
left: auto;
|
|
592
|
+
color: #A1A1A1;
|
|
480
593
|
}
|
|
594
|
+
|
|
595
|
+
|
|
481
596
|
/* Reduce horizontal width of center column */
|
|
597
|
+
|
|
482
598
|
.col-md-10 {
|
|
483
|
-
|
|
599
|
+
width: 75%;
|
|
484
600
|
}
|
|
485
601
|
|
|
602
|
+
|
|
486
603
|
/* Move right pane to the left a little */
|
|
604
|
+
|
|
487
605
|
.col-md-2 {
|
|
488
|
-
|
|
606
|
+
padding-left: 0px;
|
|
489
607
|
}
|
|
490
608
|
|
|
609
|
+
|
|
491
610
|
/* Move right pane to the left so it is not squished on the right */
|
|
492
|
-
|
|
493
|
-
|
|
611
|
+
|
|
612
|
+
.nav>li>a {
|
|
613
|
+
margin-left: 0px;
|
|
494
614
|
}
|
|
495
615
|
|
|
616
|
+
|
|
496
617
|
/* Side affix */
|
|
618
|
+
|
|
497
619
|
.sideaffix {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
width: 200px;
|
|
620
|
+
position: absolute;
|
|
621
|
+
top: 0;
|
|
622
|
+
right: 25px;
|
|
623
|
+
margin-top: 0;
|
|
624
|
+
overflow: visible;
|
|
504
625
|
}
|
|
505
626
|
|
|
506
627
|
.sideaffix-buffer {
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
628
|
+
position: relative;
|
|
629
|
+
width: 100%;
|
|
630
|
+
padding: 0 15px;
|
|
510
631
|
}
|
|
511
632
|
|
|
633
|
+
|
|
512
634
|
/* Contribution link */
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
635
|
+
|
|
636
|
+
.sideaffix>div.contribution>ul>li>a.contribution-link {
|
|
637
|
+
padding: 3px 0;
|
|
638
|
+
font-weight: normal;
|
|
639
|
+
font-size: 13px;
|
|
518
640
|
}
|
|
519
641
|
|
|
642
|
+
|
|
520
643
|
/* Side nav */
|
|
644
|
+
|
|
521
645
|
.sidenav,
|
|
522
646
|
.toc-toggle {
|
|
523
|
-
|
|
647
|
+
padding: 0;
|
|
524
648
|
}
|
|
525
649
|
|
|
526
650
|
.article.grid-right {
|
|
527
|
-
|
|
528
|
-
|
|
651
|
+
width: 100%;
|
|
652
|
+
max-width: 935px;
|
|
529
653
|
}
|
|
530
654
|
|
|
531
655
|
@media (max-width: 768px) {
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
.toc .nav > li, .toc .nav > li >a {
|
|
569
|
-
display: block !important;
|
|
570
|
-
}
|
|
656
|
+
.sidenav {
|
|
657
|
+
position: fixed;
|
|
658
|
+
top: 104px;
|
|
659
|
+
width: 100%;
|
|
660
|
+
z-index: 1;
|
|
661
|
+
margin-left: -2.5%;
|
|
662
|
+
border-bottom: 1px solid #E1E3E3;
|
|
663
|
+
overflow: auto;
|
|
664
|
+
max-height: calc(100% - 104px);
|
|
665
|
+
}
|
|
666
|
+
.sidetoc,
|
|
667
|
+
body .toc,
|
|
668
|
+
.sidefilter,
|
|
669
|
+
.sidetoggle {
|
|
670
|
+
background-color: #f1f1f1 !important;
|
|
671
|
+
}
|
|
672
|
+
.toc-filter {
|
|
673
|
+
margin: 0;
|
|
674
|
+
}
|
|
675
|
+
article h1:first-of-type {
|
|
676
|
+
padding-right: 0;
|
|
677
|
+
}
|
|
678
|
+
.article.grid-right {
|
|
679
|
+
margin: 0;
|
|
680
|
+
}
|
|
681
|
+
.breadcrumb {
|
|
682
|
+
white-space: nowrap !important;
|
|
683
|
+
}
|
|
684
|
+
.toc li:after {
|
|
685
|
+
content: "";
|
|
686
|
+
margin: 0 !important;
|
|
687
|
+
}
|
|
688
|
+
.toc .nav>li,
|
|
689
|
+
.toc .nav>li>a {
|
|
690
|
+
display: block !important;
|
|
691
|
+
}
|
|
571
692
|
}
|
|
572
693
|
|
|
694
|
+
|
|
573
695
|
/* Side TOC */
|
|
696
|
+
|
|
574
697
|
.sidetoc {
|
|
575
|
-
|
|
576
|
-
|
|
698
|
+
top: 180px;
|
|
699
|
+
border-right: 1px solid #E1E3E3 !important;
|
|
577
700
|
}
|
|
578
701
|
|
|
579
|
-
.sidetoc,
|
|
580
|
-
|
|
702
|
+
.sidetoc,
|
|
703
|
+
body .toc,
|
|
704
|
+
.sidefilter,
|
|
705
|
+
.sidetoggle {
|
|
706
|
+
background-color: white;
|
|
581
707
|
}
|
|
582
708
|
|
|
583
|
-
.sidetoc
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
709
|
+
.sidetoc.shiftup {
|
|
710
|
+
bottom: 0px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.sidetoc,
|
|
714
|
+
.sidefilter {
|
|
715
|
+
border-left: none;
|
|
716
|
+
border-right: none;
|
|
717
|
+
}
|
|
587
718
|
|
|
588
719
|
.sidetoggle {
|
|
589
|
-
|
|
720
|
+
padding-bottom: 15px;
|
|
590
721
|
}
|
|
591
722
|
|
|
592
723
|
.sidefilter {
|
|
593
|
-
|
|
724
|
+
border-right: 1px solid #E1E3E3 !important;
|
|
594
725
|
}
|
|
595
726
|
|
|
727
|
+
|
|
596
728
|
/* Affix */
|
|
597
729
|
|
|
730
|
+
|
|
731
|
+
/* Bootstrap docs like sidebar
|
|
732
|
+
------------------------------------------------------- */
|
|
733
|
+
|
|
734
|
+
.affix {
|
|
735
|
+
position: fixed;
|
|
736
|
+
max-width: 200px;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.affix h5 {
|
|
740
|
+
display: none;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
|
|
598
744
|
/* Active & hover links */
|
|
599
|
-
|
|
600
|
-
.affix ul
|
|
601
|
-
.affix ul
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
745
|
+
|
|
746
|
+
.affix ul>li>a:hover,
|
|
747
|
+
.affix ul>li.active>a,
|
|
748
|
+
.affix ul>li>a:focus {
|
|
749
|
+
color: #00aeff;
|
|
750
|
+
text-decoration: none;
|
|
751
|
+
background-color: transparent;
|
|
752
|
+
border-left-color: #00aeff;
|
|
606
753
|
}
|
|
607
754
|
|
|
755
|
+
|
|
608
756
|
/* All active links */
|
|
609
|
-
|
|
610
|
-
.affix ul
|
|
611
|
-
.affix ul
|
|
612
|
-
|
|
757
|
+
|
|
758
|
+
.affix ul>li.active>a,
|
|
759
|
+
.affix ul>li.active:hover>a,
|
|
760
|
+
.affix ul>li.active:focus>a {
|
|
761
|
+
font-weight: 600;
|
|
613
762
|
}
|
|
614
763
|
|
|
764
|
+
|
|
615
765
|
/* Nested active links */
|
|
616
|
-
|
|
617
|
-
.affix ul ul
|
|
618
|
-
.affix ul ul
|
|
619
|
-
|
|
766
|
+
|
|
767
|
+
.affix ul ul>li.active>a,
|
|
768
|
+
.affix ul ul>li.active:hover>a,
|
|
769
|
+
.affix ul ul>li.active:focus>a {
|
|
770
|
+
font-weight: 500;
|
|
620
771
|
}
|
|
621
772
|
|
|
773
|
+
|
|
622
774
|
/* All links */
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
775
|
+
|
|
776
|
+
.affix ul>li>a {
|
|
777
|
+
color: #999;
|
|
778
|
+
border-left: 2px solid transparent;
|
|
779
|
+
padding-top: 4px;
|
|
780
|
+
padding-left: 20px;
|
|
781
|
+
padding-right: 40px;
|
|
782
|
+
font-size: 13px;
|
|
783
|
+
font-weight: 400;
|
|
631
784
|
}
|
|
632
785
|
|
|
786
|
+
|
|
633
787
|
/* Nested links */
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
788
|
+
|
|
789
|
+
.affix ul ul>li>a {
|
|
790
|
+
padding-top: 1px;
|
|
791
|
+
padding-bottom: 1px;
|
|
792
|
+
padding-left: 30px;
|
|
793
|
+
font-size: 12px;
|
|
639
794
|
}
|
|
640
795
|
|
|
796
|
+
|
|
641
797
|
/* Hide inactive nested list */
|
|
798
|
+
|
|
642
799
|
.affix ul ul {
|
|
643
|
-
|
|
800
|
+
display: none;
|
|
644
801
|
}
|
|
645
802
|
|
|
803
|
+
|
|
646
804
|
/* Show active nested list */
|
|
647
|
-
|
|
648
|
-
|
|
805
|
+
|
|
806
|
+
.affix ul>li.active>ul {
|
|
807
|
+
display: block;
|
|
649
808
|
}
|
|
650
809
|
|
|
651
|
-
.affix
|
|
652
|
-
|
|
810
|
+
.affix>ul>li>a:before {
|
|
811
|
+
content: '';
|
|
653
812
|
}
|
|
654
813
|
|
|
655
|
-
.affix ul ul
|
|
656
|
-
|
|
814
|
+
.affix ul ul>li>a:before {
|
|
815
|
+
content: '';
|
|
657
816
|
}
|
|
658
817
|
|
|
818
|
+
|
|
659
819
|
/* Unhide bottom portion of right-column menu */
|
|
660
|
-
.affix > ul.level1 {
|
|
661
|
-
overflow: visible;
|
|
662
|
-
}
|
|
663
820
|
|
|
664
|
-
.affix
|
|
665
|
-
|
|
666
|
-
padding-bottom: 5px;
|
|
667
|
-
text-transform: none;
|
|
668
|
-
font-size: 15px;
|
|
821
|
+
.affix>ul.level1 {
|
|
822
|
+
overflow: visible;
|
|
669
823
|
}
|
|
670
824
|
|
|
825
|
+
|
|
671
826
|
/* Search form */
|
|
827
|
+
|
|
672
828
|
.form-control {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
829
|
+
background-color: #FFFFFF;
|
|
830
|
+
border: 1px solid #FFFFFF;
|
|
831
|
+
border-radius: 0px;
|
|
676
832
|
}
|
|
677
833
|
|
|
678
834
|
.form-control:focus {
|
|
679
|
-
|
|
835
|
+
border-color: #006d9a;
|
|
680
836
|
}
|
|
681
837
|
|
|
682
|
-
.form-control,
|
|
683
|
-
|
|
838
|
+
.form-control,
|
|
839
|
+
output {
|
|
840
|
+
color: #6D6E70;
|
|
684
841
|
}
|
|
685
842
|
|
|
686
843
|
#search {
|
|
687
|
-
|
|
844
|
+
border: none;
|
|
688
845
|
}
|
|
689
846
|
|
|
847
|
+
|
|
690
848
|
/* Search results */
|
|
691
|
-
|
|
692
|
-
|
|
849
|
+
|
|
850
|
+
.sr-item>.item-href {
|
|
851
|
+
color: #a1a1a1;
|
|
693
852
|
}
|
|
694
853
|
|
|
695
|
-
.pagination
|
|
696
|
-
|
|
697
|
-
|
|
854
|
+
.pagination>.active>a {
|
|
855
|
+
background-color: #00AEFF;
|
|
856
|
+
border-color: #00AEFF;
|
|
698
857
|
}
|
|
699
858
|
|
|
700
|
-
.pagination
|
|
701
|
-
|
|
859
|
+
.pagination>li>a {
|
|
860
|
+
color: #00aeff;
|
|
702
861
|
}
|
|
703
862
|
|
|
704
|
-
.pagination
|
|
705
|
-
|
|
706
|
-
|
|
863
|
+
.pagination>.disabled>a,
|
|
864
|
+
.pagination>.disabled>a:focus,
|
|
865
|
+
.pagination>.disabled>a:hover,
|
|
866
|
+
.pagination>.disabled>span,
|
|
867
|
+
.pagination>.disabled>span:focus,
|
|
868
|
+
.pagination>.disabled>span:hover {
|
|
869
|
+
color: #6D6E70;
|
|
870
|
+
border-color: #D7DDE4;
|
|
707
871
|
}
|
|
708
872
|
|
|
873
|
+
|
|
709
874
|
/* Footer */
|
|
875
|
+
|
|
710
876
|
.footer {
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
877
|
+
background-color: #f0f3f6;
|
|
878
|
+
border-top: none;
|
|
879
|
+
font-size: 14px;
|
|
714
880
|
}
|
|
715
881
|
|
|
882
|
+
|
|
716
883
|
/* Help button nav bar icon */
|
|
884
|
+
|
|
717
885
|
#help {
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
886
|
+
font-size: 18px;
|
|
887
|
+
padding-left: 1px;
|
|
888
|
+
padding-right: 0px;
|
|
889
|
+
padding-bottom: 0px;
|
|
890
|
+
padding-top: 12px;
|
|
891
|
+
border-radius: 0px;
|
|
892
|
+
background-color: #384655;
|
|
893
|
+
color: white;
|
|
726
894
|
}
|
|
727
895
|
|
|
728
|
-
|
|
896
|
+
|
|
897
|
+
/* Custom to custom template from Github */
|
|
898
|
+
|
|
899
|
+
|
|
729
900
|
/* Remove center align from Navbar and Collapsible section */
|
|
901
|
+
|
|
730
902
|
.collapse.in,
|
|
731
903
|
.collapsing {
|
|
732
|
-
|
|
904
|
+
text-align: unset;
|
|
733
905
|
}
|
|
734
906
|
|
|
735
907
|
@media (min-width: 768px) {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
908
|
+
.sidetoc,
|
|
909
|
+
.sidefilter {
|
|
910
|
+
margin-left: -15px;
|
|
911
|
+
border-right: none;
|
|
912
|
+
border-left: none;
|
|
913
|
+
}
|
|
741
914
|
}
|
|
742
915
|
|
|
916
|
+
|
|
743
917
|
/*Home page */
|
|
918
|
+
|
|
744
919
|
#home-page-subhead {
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
920
|
+
font-size: 18px;
|
|
921
|
+
line-height: 1.5;
|
|
922
|
+
color: #333;
|
|
923
|
+
font-weight: 600;
|
|
924
|
+
margin-top: 25px;
|
|
925
|
+
margin-bottom: 10px;
|
|
751
926
|
}
|
|
752
927
|
|
|
928
|
+
|
|
753
929
|
/*Home page column headers */
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
930
|
+
|
|
931
|
+
#home-page-col-head,
|
|
932
|
+
#home-page-col-head-dev,
|
|
933
|
+
#home-page-col-head-ACO,
|
|
934
|
+
#home-page-col-head-CADS,
|
|
935
|
+
#home-page-col-head-OPM {
|
|
936
|
+
font-weight: 400;
|
|
937
|
+
font-size: 28px;
|
|
938
|
+
line-height: 1.5;
|
|
939
|
+
margin-top: 25px;
|
|
759
940
|
}
|
|
941
|
+
|
|
760
942
|
#home-page-col-head {
|
|
761
|
-
|
|
943
|
+
color: #00abf9;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
#home-page-col-head-dev,
|
|
947
|
+
#home-page-col-head-ACO {
|
|
948
|
+
color: #f8961d;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
#home-page-col-head-OPM {
|
|
952
|
+
color: #E04E5B;
|
|
762
953
|
}
|
|
763
954
|
|
|
764
|
-
#home-page-col-head-
|
|
765
|
-
|
|
955
|
+
#home-page-col-head-CADS {
|
|
956
|
+
color: #6E53A3;
|
|
766
957
|
}
|
|
767
958
|
|
|
959
|
+
|
|
768
960
|
/* Home page boxes */
|
|
961
|
+
|
|
769
962
|
.row#home-page {
|
|
770
|
-
|
|
771
|
-
|
|
963
|
+
margin-right: -30px;
|
|
964
|
+
margin-left: -30px;
|
|
772
965
|
}
|
|
773
966
|
|
|
967
|
+
|
|
774
968
|
/* -------------------------------------------------------------- */
|
|
969
|
+
|
|
970
|
+
|
|
775
971
|
/* New Docs Template */
|
|
776
972
|
|
|
777
973
|
.docs-navbar {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
974
|
+
width: 100%;
|
|
975
|
+
height: 64px;
|
|
976
|
+
display: flex;
|
|
977
|
+
align-items: center;
|
|
978
|
+
background-color: #00aeff;
|
|
979
|
+
position: relative;
|
|
980
|
+
z-index: 100;
|
|
785
981
|
}
|
|
786
982
|
|
|
787
983
|
.docs-logo {
|
|
788
|
-
|
|
789
|
-
|
|
984
|
+
display: flex;
|
|
985
|
+
align-items: center;
|
|
790
986
|
}
|
|
791
987
|
|
|
792
988
|
.docs-navbar-right {
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
989
|
+
margin-left: auto;
|
|
990
|
+
margin-right: -20px;
|
|
991
|
+
display: flex;
|
|
796
992
|
}
|
|
797
993
|
|
|
798
994
|
.docs-navbar-left {
|
|
799
|
-
|
|
800
|
-
|
|
995
|
+
margin-left: 60px;
|
|
996
|
+
display: flex;
|
|
801
997
|
}
|
|
802
998
|
|
|
803
999
|
.docs-navbar-link {
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
1000
|
+
height: 100%;
|
|
1001
|
+
padding: 0 20px;
|
|
1002
|
+
text-decoration: none;
|
|
1003
|
+
color: white;
|
|
1004
|
+
display: flex;
|
|
1005
|
+
align-items: center;
|
|
1006
|
+
font-size: 16px;
|
|
1007
|
+
font-weight: 300;
|
|
1008
|
+
cursor: pointer;
|
|
813
1009
|
}
|
|
814
1010
|
|
|
815
1011
|
.navbar-nav li {
|
|
816
|
-
|
|
817
|
-
|
|
1012
|
+
font-size: 16px;
|
|
1013
|
+
font-weight: 300;
|
|
818
1014
|
}
|
|
819
1015
|
|
|
820
1016
|
.docs-navbar-link:hover {
|
|
821
|
-
|
|
1017
|
+
color: white;
|
|
822
1018
|
}
|
|
823
1019
|
|
|
824
|
-
.navbar-nav li
|
|
825
|
-
|
|
826
|
-
|
|
1020
|
+
.navbar-nav li>a {
|
|
1021
|
+
color: white;
|
|
1022
|
+
padding: 21px;
|
|
827
1023
|
}
|
|
828
1024
|
|
|
829
|
-
.navbar-nav li
|
|
830
|
-
.navbar-nav li
|
|
831
|
-
|
|
1025
|
+
.navbar-nav li>a:hover,
|
|
1026
|
+
.navbar-nav li>a:focus {
|
|
1027
|
+
background-color: #00aeff;
|
|
832
1028
|
}
|
|
833
1029
|
|
|
834
|
-
.nav .open
|
|
835
|
-
|
|
1030
|
+
.nav .open>a,
|
|
1031
|
+
.nav .open>a:focus,
|
|
1032
|
+
.nav .open>a:hover {
|
|
1033
|
+
background-color: #049ae0;
|
|
836
1034
|
}
|
|
837
1035
|
|
|
838
1036
|
.navbar-nav .caret {
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
1037
|
+
width: 7px;
|
|
1038
|
+
height: 20px;
|
|
1039
|
+
margin-left: 5px;
|
|
1040
|
+
border: 0 !important;
|
|
843
1041
|
}
|
|
844
1042
|
|
|
845
1043
|
.navbar-nav .caret::after {
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
1044
|
+
font-family: "FontAwesome";
|
|
1045
|
+
content: "\f107";
|
|
1046
|
+
font-size: 14px;
|
|
1047
|
+
display: flex;
|
|
850
1048
|
}
|
|
851
1049
|
|
|
852
1050
|
.dropdown-menu {
|
|
853
|
-
|
|
1051
|
+
background-color: #f1f1f1;
|
|
854
1052
|
}
|
|
855
1053
|
|
|
856
1054
|
.dropdown-menu li {
|
|
857
|
-
|
|
1055
|
+
padding: 0;
|
|
858
1056
|
}
|
|
859
1057
|
|
|
860
|
-
.dropdown-menu li
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
1058
|
+
.dropdown-menu li>a {
|
|
1059
|
+
color: #333333;
|
|
1060
|
+
font-weight: 300;
|
|
1061
|
+
padding: 12px 24px;
|
|
1062
|
+
width: 100%;
|
|
865
1063
|
}
|
|
866
1064
|
|
|
867
|
-
.dropdown-menu li
|
|
868
|
-
|
|
869
|
-
|
|
1065
|
+
.dropdown-menu li>a:hover {
|
|
1066
|
+
background-color: #ddd !important;
|
|
1067
|
+
color: #333 !important;
|
|
870
1068
|
}
|
|
871
1069
|
|
|
872
|
-
.dropdown-menu
|
|
873
|
-
|
|
874
|
-
|
|
1070
|
+
.dropdown-menu>.active>a,
|
|
1071
|
+
.dropdown-menu>.active>a:focus {
|
|
1072
|
+
color: #333;
|
|
1073
|
+
background-color: #f1f1f1;
|
|
875
1074
|
}
|
|
876
1075
|
|
|
877
1076
|
.docs-navbar-divider {
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
1077
|
+
background-color: white;
|
|
1078
|
+
width: 1px;
|
|
1079
|
+
margin: 20px 0;
|
|
1080
|
+
display: block;
|
|
882
1081
|
}
|
|
883
1082
|
|
|
884
1083
|
.docs-navbar-chevron {
|
|
885
|
-
|
|
1084
|
+
margin-left: 8px;
|
|
886
1085
|
}
|
|
887
1086
|
|
|
888
1087
|
.docs-navbar-logo {
|
|
889
|
-
|
|
1088
|
+
margin-top: 2px;
|
|
890
1089
|
}
|
|
891
1090
|
|
|
892
1091
|
.docs-container {
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
1092
|
+
font-family: 'Open Sans', sans-serif;
|
|
1093
|
+
width: 95%;
|
|
1094
|
+
max-width: 1200px;
|
|
1095
|
+
margin: 0 auto;
|
|
1096
|
+
display: flex;
|
|
898
1097
|
}
|
|
899
1098
|
|
|
900
1099
|
.docs-container-wrap {
|
|
901
|
-
|
|
1100
|
+
flex-wrap: wrap;
|
|
902
1101
|
}
|
|
903
1102
|
|
|
904
1103
|
.docs-subnav {
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
position:
|
|
912
|
-
|
|
913
|
-
z-index: 99;
|
|
1104
|
+
display: flex;
|
|
1105
|
+
width: 100%;
|
|
1106
|
+
height: 40px;
|
|
1107
|
+
background-color: #F6F7F8;
|
|
1108
|
+
border-bottom: 1px solid #E1E3E3;
|
|
1109
|
+
/* align-items: center;
|
|
1110
|
+
position: fixed;
|
|
1111
|
+
top: 64px;
|
|
1112
|
+
z-index: 99; */
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.docs-sub-subnav {
|
|
1116
|
+
display: flex;
|
|
1117
|
+
align-items: center;
|
|
1118
|
+
justify-content: center;
|
|
1119
|
+
width: 100%;
|
|
1120
|
+
height: 25px;
|
|
1121
|
+
background-color: #f36c21;
|
|
1122
|
+
color: white;
|
|
1123
|
+
border-bottom: 1px solid #E1E3E3;
|
|
1124
|
+
padding: 20px;
|
|
1125
|
+
/* align-items: center;
|
|
1126
|
+
position: fixed;
|
|
1127
|
+
top: 64px;
|
|
1128
|
+
z-index: 99; */
|
|
914
1129
|
}
|
|
915
1130
|
|
|
916
1131
|
.docs-subnav-left {
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
1132
|
+
display: flex;
|
|
1133
|
+
align-items: center;
|
|
1134
|
+
overflow: hidden;
|
|
1135
|
+
width: inherit;
|
|
1136
|
+
-webkit-transition: width .3s ease-in-out;
|
|
1137
|
+
-moz-transition: width .3s ease-in-out;
|
|
1138
|
+
-o-transition: width .3s ease-in-out;
|
|
1139
|
+
transition: width .3s ease-in-out;
|
|
925
1140
|
}
|
|
926
1141
|
|
|
927
1142
|
.docs-subnav-breadcrumb {
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
1143
|
+
color: #767676;
|
|
1144
|
+
font-size: 13px;
|
|
1145
|
+
text-decoration: none;
|
|
1146
|
+
min-width: 30px;
|
|
932
1147
|
}
|
|
933
1148
|
|
|
934
1149
|
.docs-subnav-breadcrumb:hover {
|
|
935
|
-
|
|
1150
|
+
color: #00aeff;
|
|
936
1151
|
}
|
|
937
1152
|
|
|
938
1153
|
.docs-subnav-breadcrumb-divider {
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
1154
|
+
color: #A8B0BA;
|
|
1155
|
+
font-size: 10px;
|
|
1156
|
+
margin: 0 15px;
|
|
942
1157
|
}
|
|
943
1158
|
|
|
944
1159
|
.docs-subnav-breadcrumb-current {
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1160
|
+
color: #767676;
|
|
1161
|
+
font-size: 13px;
|
|
1162
|
+
min-width: 30px;
|
|
948
1163
|
}
|
|
949
1164
|
|
|
950
|
-
.docs-subnav-breadcrumb-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
.docs-subnav-breadcrumb-current > ul > li + li::before {
|
|
957
|
-
font-family: "FontAwesome";
|
|
958
|
-
content: "\f054";
|
|
959
|
-
padding: 0 15px;
|
|
960
|
-
color: #A8B0BA;
|
|
961
|
-
font-size: 10px;
|
|
1165
|
+
.docs-subnav-breadcrumb-current>ul>li+li::before {
|
|
1166
|
+
font-family: "FontAwesome";
|
|
1167
|
+
content: "\f054";
|
|
1168
|
+
padding: 0 15px;
|
|
1169
|
+
color: #A8B0BA;
|
|
1170
|
+
font-size: 10px;
|
|
962
1171
|
}
|
|
963
1172
|
|
|
964
1173
|
.docs-subnav-select-container {
|
|
965
|
-
|
|
1174
|
+
position: relative;
|
|
966
1175
|
}
|
|
967
1176
|
|
|
968
1177
|
.docs-subnav-select {
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
1178
|
+
font: inherit;
|
|
1179
|
+
font-size: 13px;
|
|
1180
|
+
display: flex;
|
|
1181
|
+
align-items: center;
|
|
1182
|
+
background-color: white;
|
|
1183
|
+
height: 30px;
|
|
1184
|
+
width: 100%;
|
|
1185
|
+
max-width: 180px;
|
|
1186
|
+
color: #333;
|
|
1187
|
+
-webkit-appearance: none;
|
|
1188
|
+
-moz-appearance: none;
|
|
1189
|
+
appearance: none;
|
|
1190
|
+
border: 1px solid #E5E5E5;
|
|
1191
|
+
padding: 0 30px 0 10px;
|
|
1192
|
+
cursor: pointer;
|
|
984
1193
|
}
|
|
985
1194
|
|
|
986
1195
|
.docs-subnav-select::-ms-expand {
|
|
@@ -988,136 +1197,139 @@ body .toc {
|
|
|
988
1197
|
}
|
|
989
1198
|
|
|
990
1199
|
.docs-subnav-select-caret {
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1200
|
+
position: absolute;
|
|
1201
|
+
top: 0;
|
|
1202
|
+
right: 0;
|
|
1203
|
+
color: #006E9A;
|
|
1204
|
+
width: 30px;
|
|
1205
|
+
height: 30px;
|
|
1206
|
+
display: flex;
|
|
1207
|
+
justify-content: center;
|
|
1208
|
+
align-items: center;
|
|
1209
|
+
pointer-events: none;
|
|
1001
1210
|
}
|
|
1002
1211
|
|
|
1003
1212
|
.docs-subnav-right {
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1213
|
+
margin-left: auto;
|
|
1214
|
+
display: flex;
|
|
1215
|
+
align-items: center;
|
|
1216
|
+
width: 200px;
|
|
1217
|
+
padding-left: 20px;
|
|
1218
|
+
/* border-left: 2px darkgray solid; */
|
|
1219
|
+
/* background-color: white; */
|
|
1009
1220
|
}
|
|
1010
1221
|
|
|
1011
1222
|
.docs-search {
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1223
|
+
border: 1px lightgray solid;
|
|
1224
|
+
display: flex;
|
|
1225
|
+
align-items: center;
|
|
1226
|
+
width: 180px;
|
|
1227
|
+
padding: 2px 2px 2px 10px;
|
|
1228
|
+
margin: 6px 5px 6px auto;
|
|
1018
1229
|
}
|
|
1019
1230
|
|
|
1020
1231
|
.docs-search:focus-within {
|
|
1021
|
-
|
|
1232
|
+
outline: solid #00aeff 1px;
|
|
1022
1233
|
}
|
|
1023
1234
|
|
|
1024
1235
|
.docs-subnav-search-icon {
|
|
1025
|
-
|
|
1026
|
-
|
|
1236
|
+
color: #333333;
|
|
1237
|
+
padding: 0 2px 1px 2px;
|
|
1238
|
+
display: inline-flex;
|
|
1027
1239
|
}
|
|
1028
1240
|
|
|
1029
1241
|
.docs-subnav-search-close {
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1242
|
+
color: #333;
|
|
1243
|
+
padding: 0 20px;
|
|
1244
|
+
font-size: 20px;
|
|
1245
|
+
cursor: pointer;
|
|
1246
|
+
display: none;
|
|
1035
1247
|
}
|
|
1036
1248
|
|
|
1037
1249
|
.docs-content {
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1250
|
+
height: 100%;
|
|
1251
|
+
position: relative;
|
|
1252
|
+
top: 104px;
|
|
1041
1253
|
}
|
|
1042
1254
|
|
|
1043
1255
|
.docs-toc-container {
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1256
|
+
min-width: 225px;
|
|
1257
|
+
height: calc(100vh - 130px);
|
|
1258
|
+
border-right: 1px solid #E1E3E3;
|
|
1259
|
+
padding-top: 25px;
|
|
1260
|
+
padding-right: 20px;
|
|
1261
|
+
overflow: auto;
|
|
1262
|
+
position: fixed;
|
|
1051
1263
|
}
|
|
1052
1264
|
|
|
1053
1265
|
.docs-toc-app {
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1266
|
+
display: flex;
|
|
1267
|
+
align-items: center;
|
|
1268
|
+
margin-bottom: 20px;
|
|
1057
1269
|
}
|
|
1058
1270
|
|
|
1059
1271
|
.docs-toc-app h1 {
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1272
|
+
color: #6D6E70;
|
|
1273
|
+
font-size: 24px;
|
|
1274
|
+
font-weight: 600;
|
|
1275
|
+
margin: 0;
|
|
1064
1276
|
}
|
|
1065
1277
|
|
|
1066
1278
|
.docs-product-logo {
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1279
|
+
width: 40px;
|
|
1280
|
+
height: 40px;
|
|
1281
|
+
margin-right: 12px;
|
|
1070
1282
|
}
|
|
1071
1283
|
|
|
1072
1284
|
#search-query {
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1285
|
+
color: #333333;
|
|
1286
|
+
font-size: 14px;
|
|
1287
|
+
font-family: 'Open Sans', sans-serif;
|
|
1288
|
+
padding-left: 10px;
|
|
1289
|
+
width: 150px;
|
|
1290
|
+
height: 25px;
|
|
1291
|
+
border: none;
|
|
1292
|
+
background-color: transparent;
|
|
1293
|
+
padding-top: 2px;
|
|
1082
1294
|
}
|
|
1083
1295
|
|
|
1084
1296
|
#search-query:focus-visible {
|
|
1085
|
-
|
|
1297
|
+
outline: none;
|
|
1086
1298
|
}
|
|
1087
1299
|
|
|
1088
1300
|
.docs-toc-filter {
|
|
1089
|
-
|
|
1090
|
-
|
|
1301
|
+
position: relative;
|
|
1302
|
+
margin-bottom: 30px;
|
|
1091
1303
|
}
|
|
1092
1304
|
|
|
1093
1305
|
#docs-toc-input {
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1306
|
+
color: #888888;
|
|
1307
|
+
font-size: 14px;
|
|
1308
|
+
font-family: 'Open Sans', sans-serif;
|
|
1309
|
+
display: block;
|
|
1310
|
+
height: 28px;
|
|
1311
|
+
font-size: 14px;
|
|
1312
|
+
width: 185px;
|
|
1313
|
+
border: 1px solid #D7D7D7;
|
|
1314
|
+
padding: 0 30px 0 10px;
|
|
1103
1315
|
}
|
|
1104
1316
|
|
|
1105
1317
|
.text-overflow {
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1318
|
+
white-space: nowrap;
|
|
1319
|
+
overflow: hidden;
|
|
1320
|
+
text-overflow: ellipsis;
|
|
1109
1321
|
}
|
|
1110
1322
|
|
|
1111
1323
|
.toc-subpages {
|
|
1112
|
-
|
|
1324
|
+
display: none;
|
|
1113
1325
|
}
|
|
1114
1326
|
|
|
1115
1327
|
.toc-subpages li {
|
|
1116
|
-
|
|
1328
|
+
margin-left: 20px;
|
|
1117
1329
|
}
|
|
1118
1330
|
|
|
1119
1331
|
.toc-subpages li a {
|
|
1120
|
-
|
|
1332
|
+
width: 179px;
|
|
1121
1333
|
}
|
|
1122
1334
|
|
|
1123
1335
|
a.anchor {
|
|
@@ -1127,432 +1339,301 @@ a.anchor {
|
|
|
1127
1339
|
visibility: hidden;
|
|
1128
1340
|
}
|
|
1129
1341
|
|
|
1130
|
-
@media only screen and (max-width:
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
@media only screen and (max-width: 1024px) {
|
|
1137
|
-
.docs-navbar-left,
|
|
1138
|
-
.docs-right {
|
|
1139
|
-
display: none;
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
.docs-navbar-right {
|
|
1143
|
-
margin-right: -20px;
|
|
1144
|
-
}
|
|
1342
|
+
@media only screen and (max-width: 860px) {
|
|
1343
|
+
.docs-navbar-left {
|
|
1344
|
+
display: none;
|
|
1345
|
+
}
|
|
1145
1346
|
}
|
|
1146
1347
|
|
|
1147
1348
|
@media only screen and (max-width: 700px) {
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1349
|
+
.docs-subnav-right {
|
|
1350
|
+
display: none;
|
|
1351
|
+
}
|
|
1153
1352
|
}
|
|
1154
1353
|
|
|
1354
|
+
|
|
1155
1355
|
/* -------------------------------------------------------------- */
|
|
1356
|
+
|
|
1357
|
+
|
|
1156
1358
|
/* Page Feedback Input Styles */
|
|
1157
1359
|
|
|
1158
|
-
.feedback-container,
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1360
|
+
.feedback-container,
|
|
1361
|
+
.feedback-container-new {
|
|
1362
|
+
border: 1px solid #E1E3E3;
|
|
1363
|
+
padding: 20px;
|
|
1364
|
+
display: flex;
|
|
1365
|
+
flex-wrap: wrap;
|
|
1366
|
+
align-items: center;
|
|
1367
|
+
margin: 80px auto;
|
|
1368
|
+
max-width: 600px;
|
|
1166
1369
|
}
|
|
1167
1370
|
|
|
1168
1371
|
.feedback-top-left {
|
|
1169
|
-
|
|
1170
|
-
|
|
1372
|
+
font-size: 16px;
|
|
1373
|
+
color: #333;
|
|
1171
1374
|
}
|
|
1172
1375
|
|
|
1173
|
-
.feedback-top-left
|
|
1174
|
-
|
|
1376
|
+
.feedback-top-left>.form-group {
|
|
1377
|
+
margin-bottom: 0;
|
|
1175
1378
|
}
|
|
1176
1379
|
|
|
1177
1380
|
.feedback-top-right {
|
|
1178
|
-
|
|
1381
|
+
margin-left: auto;
|
|
1179
1382
|
}
|
|
1180
1383
|
|
|
1181
1384
|
.feedback-button {
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1385
|
+
border: 1.5px solid #ccc;
|
|
1386
|
+
color: #6D6E70;
|
|
1387
|
+
background-color: #f1f1f1;
|
|
1388
|
+
height: 36px;
|
|
1389
|
+
line-height: 31px;
|
|
1390
|
+
font-size: 14px;
|
|
1391
|
+
font-weight: 700;
|
|
1392
|
+
margin-left: 5px;
|
|
1393
|
+
border-radius: 5px;
|
|
1394
|
+
width: 80px;
|
|
1192
1395
|
}
|
|
1193
1396
|
|
|
1194
1397
|
.feedback-button:not(:disabled):hover {
|
|
1195
|
-
|
|
1196
|
-
|
|
1398
|
+
color: #333;
|
|
1399
|
+
background-color: #e5e5e5;
|
|
1197
1400
|
}
|
|
1198
1401
|
|
|
1199
1402
|
.feedback-button:disabled:hover {
|
|
1200
|
-
|
|
1201
|
-
|
|
1403
|
+
cursor: not-allowed;
|
|
1404
|
+
color: #6D6E70;
|
|
1202
1405
|
}
|
|
1203
1406
|
|
|
1204
1407
|
.feedback-selected:disabled:hover {
|
|
1205
|
-
|
|
1408
|
+
color: white !important;
|
|
1206
1409
|
}
|
|
1207
1410
|
|
|
1208
1411
|
.feedback-button i {
|
|
1209
|
-
|
|
1210
|
-
|
|
1412
|
+
margin-right: 5px;
|
|
1413
|
+
font-size: 16px;
|
|
1211
1414
|
}
|
|
1212
1415
|
|
|
1213
1416
|
#feedback-response {
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1417
|
+
color: #6D6E70;
|
|
1418
|
+
font-size: 16px;
|
|
1419
|
+
display: none;
|
|
1217
1420
|
}
|
|
1218
1421
|
|
|
1219
1422
|
.feedback-selected {
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1423
|
+
border: 1px solid #6D6E70;
|
|
1424
|
+
background-color: #6D6E70;
|
|
1425
|
+
color: white;
|
|
1223
1426
|
}
|
|
1224
1427
|
|
|
1225
1428
|
#feedback-survey {
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1429
|
+
display: none;
|
|
1430
|
+
width: 100%;
|
|
1431
|
+
margin-top: 10px;
|
|
1229
1432
|
}
|
|
1230
1433
|
|
|
1231
1434
|
.feedback-radio {
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1435
|
+
display: block;
|
|
1436
|
+
position: relative;
|
|
1437
|
+
padding-left: 35px;
|
|
1438
|
+
margin-bottom: 12px;
|
|
1439
|
+
cursor: pointer;
|
|
1440
|
+
font-weight: 400;
|
|
1441
|
+
font-size: 14px;
|
|
1442
|
+
-webkit-user-select: none;
|
|
1443
|
+
-moz-user-select: none;
|
|
1444
|
+
-ms-user-select: none;
|
|
1445
|
+
user-select: none;
|
|
1243
1446
|
}
|
|
1244
1447
|
|
|
1245
1448
|
.feedback-radio input {
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1449
|
+
position: absolute;
|
|
1450
|
+
opacity: 0;
|
|
1451
|
+
cursor: pointer;
|
|
1452
|
+
height: 0;
|
|
1453
|
+
width: 0;
|
|
1251
1454
|
}
|
|
1252
1455
|
|
|
1253
1456
|
.feedback-radio-hide {
|
|
1254
|
-
|
|
1457
|
+
display: none;
|
|
1255
1458
|
}
|
|
1256
1459
|
|
|
1257
1460
|
.radiobtn {
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1461
|
+
position: absolute;
|
|
1462
|
+
top: 0;
|
|
1463
|
+
left: 0;
|
|
1464
|
+
height: 22px;
|
|
1465
|
+
width: 22px;
|
|
1466
|
+
background-color: #fff;
|
|
1467
|
+
border: 2px solid #ccc;
|
|
1468
|
+
border-radius: 50%;
|
|
1266
1469
|
}
|
|
1267
1470
|
|
|
1268
|
-
.feedback-radio:hover input
|
|
1269
|
-
|
|
1471
|
+
.feedback-radio:hover input~.radiobtn {
|
|
1472
|
+
border: 2px solid #00aeff;
|
|
1270
1473
|
}
|
|
1271
1474
|
|
|
1272
|
-
.feedback-radio input:checked
|
|
1273
|
-
|
|
1274
|
-
|
|
1475
|
+
.feedback-radio input:checked~.radiobtn {
|
|
1476
|
+
background-color: #00aeff;
|
|
1477
|
+
border: 2px solid #00aeff;
|
|
1275
1478
|
}
|
|
1276
1479
|
|
|
1277
1480
|
.radiobtn:after {
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1481
|
+
content: "";
|
|
1482
|
+
position: absolute;
|
|
1483
|
+
display: none;
|
|
1281
1484
|
}
|
|
1282
1485
|
|
|
1283
|
-
.feedback-radio input:checked
|
|
1284
|
-
|
|
1486
|
+
.feedback-radio input:checked~.radiobtn:after {
|
|
1487
|
+
display: block;
|
|
1285
1488
|
}
|
|
1286
1489
|
|
|
1287
1490
|
.feedback-radio .radiobtn:after {
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1491
|
+
top: 5px;
|
|
1492
|
+
left: 5px;
|
|
1493
|
+
width: 8px;
|
|
1494
|
+
height: 8px;
|
|
1495
|
+
border-radius: 50%;
|
|
1496
|
+
background: white;
|
|
1294
1497
|
}
|
|
1295
1498
|
|
|
1296
|
-
.feedback-suggestions label,
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1499
|
+
.feedback-suggestions label,
|
|
1500
|
+
.feedback-email label {
|
|
1501
|
+
font-weight: 400;
|
|
1502
|
+
font-size: 14px;
|
|
1503
|
+
margin-top: 10px;
|
|
1300
1504
|
}
|
|
1301
1505
|
|
|
1302
1506
|
.feedback-suggestions textarea {
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1507
|
+
border: 1px solid #E1E3E3;
|
|
1508
|
+
resize: vertical;
|
|
1509
|
+
margin-bottom: 10px;
|
|
1510
|
+
width: 100%;
|
|
1307
1511
|
}
|
|
1308
1512
|
|
|
1309
|
-
.feedback-email input{
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1513
|
+
.feedback-email input {
|
|
1514
|
+
border: 1px solid #E1E3E3;
|
|
1515
|
+
resize: vertical;
|
|
1516
|
+
margin-bottom: 40px;
|
|
1517
|
+
width: 100%;
|
|
1314
1518
|
}
|
|
1315
1519
|
|
|
1316
1520
|
.submit-feedback {
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1521
|
+
background-color: #00a859;
|
|
1522
|
+
color: #fff;
|
|
1523
|
+
font-weight: 400;
|
|
1524
|
+
text-align: center;
|
|
1525
|
+
cursor: pointer;
|
|
1526
|
+
border: none;
|
|
1527
|
+
border-radius: 5px;
|
|
1528
|
+
height: 35px;
|
|
1529
|
+
min-width: 150px;
|
|
1326
1530
|
}
|
|
1327
1531
|
|
|
1328
1532
|
.submit-feedback:hover {
|
|
1329
|
-
|
|
1330
|
-
|
|
1533
|
+
background-color: #009750;
|
|
1534
|
+
color: #fff;
|
|
1331
1535
|
}
|
|
1332
1536
|
|
|
1333
1537
|
@media only screen and (max-width: 800px) {
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1538
|
+
.feedback-container,
|
|
1539
|
+
.feedback-container-new {
|
|
1540
|
+
justify-content: center;
|
|
1541
|
+
}
|
|
1542
|
+
.feedback-top-left {
|
|
1543
|
+
text-align: center;
|
|
1544
|
+
width: 100%;
|
|
1545
|
+
}
|
|
1546
|
+
.feedback-top-right {
|
|
1547
|
+
margin: 10px 0;
|
|
1548
|
+
}
|
|
1549
|
+
.submit-feedback {
|
|
1550
|
+
display: block;
|
|
1551
|
+
margin: 0 auto;
|
|
1552
|
+
}
|
|
1348
1553
|
}
|
|
1349
1554
|
|
|
1555
|
+
|
|
1350
1556
|
/* TOC headings */
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1557
|
+
|
|
1558
|
+
:not(.level2)>li>.toc-heading,
|
|
1559
|
+
:not(.level2)>li>.toc-heading-active {
|
|
1560
|
+
font-weight: bold;
|
|
1561
|
+
font-size: 15px;
|
|
1562
|
+
text-transform: uppercase;
|
|
1563
|
+
margin-left: -10px !important;
|
|
1355
1564
|
}
|
|
1356
1565
|
|
|
1357
|
-
:not(.level2)
|
|
1358
|
-
|
|
1359
|
-
|
|
1566
|
+
:not(.level2)>li>a:first-child.toc-heading:hover,
|
|
1567
|
+
:not(.level2)>li>a:first-child.toc-heading:focus {
|
|
1568
|
+
color: inherit !important;
|
|
1569
|
+
cursor: default;
|
|
1360
1570
|
}
|
|
1361
1571
|
|
|
1362
1572
|
.toc-heading-active:hover {
|
|
1363
|
-
|
|
1573
|
+
color: #00aeff
|
|
1364
1574
|
}
|
|
1365
1575
|
|
|
1366
|
-
:not(.level2)
|
|
1367
|
-
|
|
1576
|
+
:not(.level2)>li>.line-above {
|
|
1577
|
+
margin-top: 30px;
|
|
1368
1578
|
}
|
|
1369
1579
|
|
|
1370
|
-
:not(.level2)
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1580
|
+
:not(.level2)>li>.line-above:before {
|
|
1581
|
+
content: "";
|
|
1582
|
+
position: absolute;
|
|
1583
|
+
border-bottom: 1px solid #E1E3E3;
|
|
1584
|
+
width: 100%;
|
|
1585
|
+
margin-top: -20px;
|
|
1376
1586
|
}
|
|
1377
1587
|
|
|
1378
1588
|
.line-below {
|
|
1379
|
-
|
|
1380
|
-
|
|
1589
|
+
padding-bottom: 20px !important;
|
|
1590
|
+
border-bottom: 1px solid #E1E3E3 !important;
|
|
1381
1591
|
}
|
|
1382
1592
|
|
|
1383
1593
|
.margin-below-toc {
|
|
1384
|
-
|
|
1594
|
+
margin-bottom: 100px;
|
|
1385
1595
|
}
|
|
1596
|
+
|
|
1597
|
+
|
|
1386
1598
|
/* Styling for code copy buttons ------------------------- */
|
|
1387
1599
|
|
|
1388
1600
|
.copy-code-button {
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
.copy-code-button:hover,
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1601
|
+
color: #333333;
|
|
1602
|
+
background-color: #f1f1f1;
|
|
1603
|
+
border: 1px solid #a1a1a1;
|
|
1604
|
+
border-radius: 3px 3px 3px 3px;
|
|
1605
|
+
/* right-align */
|
|
1606
|
+
display: block;
|
|
1607
|
+
margin-left: auto;
|
|
1608
|
+
margin-right: 0;
|
|
1609
|
+
margin-bottom: -15px;
|
|
1610
|
+
padding: 3px 12px;
|
|
1611
|
+
font-size: 0.8em;
|
|
1612
|
+
font-weight: 500;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
.copy-code-button:hover,
|
|
1616
|
+
.copy-code-button:focus {
|
|
1617
|
+
cursor: pointer;
|
|
1618
|
+
background-color: #e5e5e5;
|
|
1619
|
+
color: #333;
|
|
1407
1620
|
}
|
|
1408
1621
|
|
|
1409
1622
|
.copy-code-button:focus {
|
|
1410
|
-
|
|
1623
|
+
/* Avoid an ugly focus outline on click in Chrome,
|
|
1411
1624
|
but darken the button for accessibility.
|
|
1412
1625
|
See https://stackoverflow.com/a/25298082/1481479 */
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1626
|
+
background-color: #f1f1f1;
|
|
1627
|
+
color: #00aeff;
|
|
1628
|
+
font-weight: 600;
|
|
1629
|
+
outline: 0;
|
|
1417
1630
|
}
|
|
1418
1631
|
|
|
1419
1632
|
.copy-code-button:active {
|
|
1420
|
-
|
|
1633
|
+
background-color: #D9D9D9;
|
|
1421
1634
|
}
|
|
1422
1635
|
|
|
1423
1636
|
pre {
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
/* This code hides cross references between PDF pages. Corresponding code (.web-only) that hides cross references in the web app is in /templates/pdf/styles/main.css. */
|
|
1429
|
-
.pdf-only {
|
|
1430
|
-
display:none;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
/*
|
|
1434
|
-
.sidetoc, .sidefilter {
|
|
1435
|
-
margin-top: 56px;
|
|
1436
|
-
}
|
|
1437
|
-
*/
|
|
1438
|
-
|
|
1439
|
-
.statusMessage {
|
|
1440
|
-
background-color: #AAE2C8;
|
|
1441
|
-
font-size: 13.5px;
|
|
1442
|
-
font-weight: 600;
|
|
1443
|
-
padding-top: 15px;
|
|
1444
|
-
padding-bottom: 20px;
|
|
1445
|
-
padding-right: 15px;
|
|
1446
|
-
margin-top: -16px;
|
|
1447
|
-
margin-right: 16px;
|
|
1448
|
-
margin-left: -40px;
|
|
1449
|
-
margin-bottom: 10px;
|
|
1450
|
-
padding-left: 5em;
|
|
1451
|
-
text-indent:-5em;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
#statusIcon {
|
|
1455
|
-
font-size: 24px;
|
|
1456
|
-
margin-left: 100px;
|
|
1457
|
-
transform: translate(0, 5px);
|
|
1458
|
-
margin-right: -36px;
|
|
1459
|
-
}
|
|
1460
|
-
|
|
1461
|
-
.toc-deprecated:before {
|
|
1462
|
-
content: "Deprecated" !important;
|
|
1463
|
-
background-color: #d7dde4;
|
|
1464
|
-
color: #333;
|
|
1465
|
-
border-radius: 3px;
|
|
1466
|
-
font-size: 9px;
|
|
1467
|
-
text-transform: uppercase;
|
|
1468
|
-
font-weight: 600;
|
|
1469
|
-
letter-spacing: .15px;
|
|
1470
|
-
margin-left: 0px;
|
|
1471
|
-
margin-top: 4px;
|
|
1472
|
-
margin-bottom: 4px;
|
|
1473
|
-
margin-right: 4px;
|
|
1474
|
-
padding: 3px 7px 3px 10px;
|
|
1475
|
-
position: relative;
|
|
1476
|
-
top: -1px;
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
/* "Page has moved/is obsolete" banner at top of page */
|
|
1480
|
-
|
|
1481
|
-
#nextWarning {
|
|
1482
|
-
background-color: #ffdbb7;
|
|
1483
|
-
font-size: 12px;
|
|
1484
|
-
font-weight: 400;
|
|
1485
|
-
height: 35px;
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
#nextWarning p {
|
|
1489
|
-
text-align: center;
|
|
1490
|
-
margin: auto;
|
|
1491
|
-
font-size: 13.5px;
|
|
1492
|
-
font-weight: 600;
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
#nextWarningToc {
|
|
1496
|
-
margin-top: 56px;
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
/* Which DOS versions apply to page */
|
|
1500
|
-
|
|
1501
|
-
#tag {
|
|
1502
|
-
font-size: 13.5px;
|
|
1503
|
-
font-weight: 600;
|
|
1504
|
-
padding-top: 15px;
|
|
1505
|
-
padding-bottom: 15px;
|
|
1506
|
-
padding-right: 15px;
|
|
1507
|
-
padding-left: 15px;
|
|
1508
|
-
margin-top: -16px !important;
|
|
1509
|
-
margin-left: -50px;
|
|
1510
|
-
margin-bottom: 10px !important;
|
|
1511
|
-
margin-right: 15px;
|
|
1512
|
-
text-indent:4em;
|
|
1513
|
-
background: #D6F3FF;
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
|
-
#version {
|
|
1517
|
-
padding-left: 12px;
|
|
1518
|
-
font-weight: 400;
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
#success-checkmark {
|
|
1522
|
-
background: #00aeff;
|
|
1523
|
-
color: white;
|
|
1524
|
-
padding: 1px 4px;
|
|
1525
|
-
border-radius: 50%;
|
|
1526
|
-
padding-right: 1px;
|
|
1527
|
-
margin-right: 8px
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
#version-bump {
|
|
1531
|
-
padding-right: 15px;
|
|
1532
|
-
}
|
|
1533
|
-
|
|
1534
|
-
/* Styles a message in a line anywhere in the document with {{ term }} - see main.js */
|
|
1535
|
-
|
|
1536
|
-
.message {
|
|
1537
|
-
font-size: 13.5px;
|
|
1538
|
-
font-weight: 600;
|
|
1539
|
-
padding-top: 8px;
|
|
1540
|
-
padding-bottom: 8px;
|
|
1541
|
-
padding-left: 15px;
|
|
1542
|
-
margin-top: 35px;
|
|
1543
|
-
margin-bottom: -5px;
|
|
1544
|
-
text-indent: 2em;
|
|
1545
|
-
background: #D6F3FF;
|
|
1546
|
-
display: inline-block;
|
|
1547
|
-
width: 100%;
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
.message > .fa:before {
|
|
1551
|
-
margin-left: -52px;
|
|
1552
|
-
padding-right: 10px;
|
|
1553
|
-
color: #00aeff;
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.article{
|
|
1557
|
-
width: 100%;
|
|
1637
|
+
/* Avoid pushing up the copy buttons. */
|
|
1638
|
+
/* margin: 0; */
|
|
1558
1639
|
}
|