-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.sass
672 lines (567 loc) · 11.9 KB
/
style.sass
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
$font-default: "Source Sans Pro", Helvetica, Arial, sans-serif
$font-default-size: 1em
$font-text-size: 95%
$font-monospace: "Consolas", "Source Code Pro", "Fira Mono", "Courier New", monospace
$color-body-bg: #EEE
$color-link: steelblue
$color-link-hover: #987e00
$color-link-hover-bg: #e6e7bc
html, body
margin: 0
padding: 0
body
font-family: $font-default
font-size: $font-default-size
background-color: $color-body-bg
p
font-size: $font-text-size
line-height: 1.4
&.h2
font-weight: bold
font-size: 1.3em
margin-top: 2em
margin-bottom: 1px
background: darken($color-body-bg, 10%)
padding: .3em 0
img
margin-left: 0
max-width: 800px
height: auto
.content
color: #333
p
margin-left: 1em
margin-right: 1em
h2
padding-left: 1em
padding-right: 1em
table p
margin-left: 0
margin-right: 0
.descr
margin-top: 35px
margin-bottom: 45px
text-align: left
vertical-align: top
.name
max-width: 75%
font-weight: 100
color: #1a1a1a
a
&:link
color: $color-link
text-decoration: none
&:hover, &:visited:hover
border-top: 1px dotted $color-link
border-bottom: 1px dotted $color-link
&:visited
color: $color-link
&.qa-mark:target:before
content: "***"
color: #ff0000
a[href*="http://"]
background-image: url(qtdoc/images/ico_out.png)
background-repeat: no-repeat
background-position: left
padding-left: 20px
a[href*="ftp://"]
background-image: url(qtdoc/images/ico_out.png)
background-repeat: no-repeat
background-position: left
padding-left: 20px
a[href*="https://"]
background-image: url(qtdoc/images/ico_out.png)
background-repeat: no-repeat
background-position: left
padding-left: 20px
.flags
text-decoration: none
text-height: 24px
&:target
background-color: #ffffd6
.notetitle
font-weight: bold
.tiptitle
font-weight: bold
.fastpathtitle
font-weight: bold
.attentiontitle
font-weight: bold
.cautiontitle
font-weight: bold
.dangertitle
font-weight: bold
.importanttitle
font-weight: bold
.remembertitle
font-weight: bold
.restrictiontitle
font-weight: bold
.note
background: #f2f2f2 url(qtdoc/images/ico_note.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.tip
background: #f2f2f2 url(qtdoc/images/ico_note.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.fastpath
background: #f2f2f2 url(qtdoc/images/ico_note.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.attention
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.caution
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.danger
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.important
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.remember
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.restriction
background: #f2f2f2 url(qtdoc/images/ico_note_attention.png)
background-repeat: no-repeat
background-position: top left
padding: 5px
padding-left: 40px
padding-bottom: 10px
border: #999 1px dotted
color: #666666
margin: 5px
.qtref
display: block
position: relative
height: 15px
z-index: 1
font-size: 11px
padding-right: 10px
float: right
.naviNextPrevious
clear: both
//position: relative
text-align: right
float: right
z-index: 1
padding-right: 10px
padding-top: 1.1em
vertical-align: top
margin: 0
> a
&:first-child
background-image: url(qtdoc/images/btn_prev.png)
background-repeat: no-repeat
background-position: left
height: 20px
padding-left: 20px
&:last-child
background-image: url(qtdoc/images/btn_next.png)
background-repeat: no-repeat
background-position: right
padding-right: 20px
height: 20px
margin-left: 30px
.naviSeparator
display: none
.footer
font-size: small
padding: 1em
color: #777
.footerNavi
width: auto
text-align: right
margin-top: 50px
z-index: 1
.navigationbar
border-top: 1px solid darken($color-body-bg, 20%)
background-color: #FFF
z-index: 1
padding-left: 7px
margin: 0
padding: 1px 1em
.first
background: url(qtdoc/images/home.png)
background-position: left
background-repeat: no-repeat
padding-left: 20px
ul
margin: 0
padding: 0
li
list-style-type: none
padding-top: 2px
padding-left: 4px
margin: 0
height: 20px
float: left
a
background: url(qtdoc/images/arrow_bc.png)
background-repeat: no-repeat
background-position: right
padding-right: 17px
table
border: 0 none
margin: 0
font-size: small
td
padding: 0
border: 0 none
a
background: url(qtdoc/images/arrow_bc.png)
background-repeat: no-repeat
background-position: right
padding-right: 25px
table
$color-border: darken($color-body-bg, 10%)
-moz-border-radius: 0 0 7px 7px
-webkit-border-radius: 0 0 7px 7px
border-radius: 0 0 7px 7px
border: 1px solid $color-border
border-top: 0
border-collapse: separate
margin-bottom: 25px
margin-left: 15px
margin-right: 15px
line-height: 1.2
&.buildversion
float: right
margin-top: -20px !important
font-size: small
border: 0
tr
&.even
background-color: white
color: #66666e
&.odd
color: #66666e
&:target
background-color: #f6f6d6
thead
text-align: left
padding-left: 20px
background-color: #e1e0e0
border-left: none
border-right: none
th
padding: .2em 1em
border-bottom: 2px solid #d1d1d1
th
text-align: left
padding: .2em 1em
font-size: $font-text-size
border-top: 1px solid $color-border
td
padding: .2em 1em
border-top: 1px solid $color-border
font-size: $font-text-size
p
margin: 0
&.alignedsummary, &.propsummary
color: #333
font-family: $font-monospace
font-size: 80%
tbody tr:last-child td
border-bottom: 0
&.generic
border-collapse: collapse
.title
color: #313131
font-size: 24px
font-weight: normal
padding: .5em 1em
background-color: darken($color-body-bg, 5%)
border-bottom: 1px solid darken($color-body-bg, 20%)
border-top: 1px solid darken($color-body-bg, 20%)
font-weight: bold
margin-left: 0
margin-right: 0
.subtitle
display: block
clear: left
.small-subtitle
display: block
clear: left
.toc
display: none
h1
margin: 0
h2
font-weight: bold
font-size: 130%
margin-top: 2em
margin-bottom: 1px
background: #ddd
padding: .3em 0
&:target
background-color: #f2f3d4
h3
border-bottom: 1px solid #ccc
margin: 1em 1em -.2em 1em
padding: 0
font-size: 120%
&.fn
$color-bg: #D7EFDA
word-spacing: 3px
padding: 5px 1em
text-decoration: none
font-weight: bold
margin: 0
background-color: $color-bg
border-top: 1px solid darken($color-bg, 5%)
border-bottom: 1px solid darken($color-bg, 5%)
font-family: $font-monospace
font-size: 100%
// method visibility
code
float: right
font-size: 80%
color: #888
margin-top: 1px
&:target
background-color: #f6f6d6
&.flags
word-spacing: 3px
padding: 5px 1em
text-decoration: none
font-weight: bold
margin: 0
background-color: #e0e0e0
border-top: 2px solid #ddd
border-bottom: 2px solid #ddd
font-family: $font-monospace
font-size: 100%
h4
margin: auto 1em
font-size: 110%
.type
color: #808080
.borderless
//If you use compass, instead of the line below you could use + border-radius($radius, $vertical-radius)
border-radius: 0 0 0 0
background-color: #fff
border: 1px solid #fff
tr
background-color: #fff
color: #66666e
td
border: none
border-bottom: #fff dotted 1px
ul
margin-top: 10px
> li
list-style-type: square
li
font-size: $font-text-size
margin-bottom: 10px
padding-left: 8px
list-style: outside
text-align: left
ol
margin: 10px
padding: 0
> li
margin-left: 30px
padding-left: 8px
list-style: decimal
&.a > li
list-style-type: upper-alpha
&.a > li
list-style-type: lower-alpha
.centerAlign
text-align: left
.cpp
display: block
margin-top: .5em
margin-bottom: .5em
overflow: auto
padding: .2em
color: #000
.js
display: block
margin: 10px
overflow: auto
padding: 20px
.memItemLeft
padding-right: 3px
.memItemRight
padding: .4em 1em .3em 0
.qml
display: block
margin: 10px
overflow: auto
padding: 20px
.qmldefault
padding-left: 5px
float: right
color: red
.qmlreadonly
padding-left: 5px
float: right
color: #254117
.rightAlign
padding: 3px 5px 3px 10px
text-align: right
.qmldoc
margin-left: 15px
.flowList
padding: 25px
dd
display: inline-block
margin-left: 10px
width: 255px
line-height: 1.15em
overflow-x: hidden
text-overflow: ellipsis
.alphaChar
font-size: 2em
position: relative
.toc
display: none
.clearfix
clear: both
.col-group
white-space: nowrap
vertical-align: top
.landing
h2
background-color: transparent
border: none
margin-bottom: 0
li
font-size: small
.col-1
display: inline-block
white-space: normal
width: 70%
height: 100%
float: left
h1
margin: 20px 0 0
h2
font-size: 18px
font-weight: bold !important
.col-2
display: inline-block
white-space: normal
width: 20%
margin-left: 5%
position: relative
top: -20px
.landingicons
display: inline-block
padding-left: 1em
.icons1of3
display: inline-block
width: 33.3333%
float: left
h2
font-size: 15px
margin: 0
padding: 0
pre
// background: #fefefe
font-family: $font-monospace
font-size: 80%
line-height: 1.4
color: #333
//border: 1px solid darken($color-body-bg, 5%)
border-width: 2px 0
background: lighten($color-body-bg, 5%)
box-shadow: 0 1px 3px #CCC;
code
font-family: $font-monospace
font-size: 80%
line-height: 1.4
color: #333
span.fn
word-spacing: 3px
padding: 5px 1em
text-decoration: none
font-weight: bold
margin: 0
background-color: #e0e0e0
border-top: 2px solid #ddd
border-bottom: 2px solid #ddd
font-family: $font-monospace
font-size: 100%
.table img
border: none
margin-left: 0
-moz-box-shadow: 0 0 0 #fff
-webkit-box-shadow: 0 0 0 #fff
//If you use compass, instead of the line below you could use + box-shadow($shadow-1, $shadow-2, $shadow-3, $shadow-4, $shadow-5, $shadow-6, $shadow-7, $shadow-8, $shadow-9, $shadow-10)
box-shadow: 0 0 0 #fff
#content table
font-family: $font-monospace
font-size: 85%
.doc-column h2
font-size: 15px
margin: 0
padding: 0
div.multi-column
position: relative
div
display: -moz-inline-box
display: inline-block
vertical-align: top
margin-top: 1em
margin-right: 4em
width: 24em