-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcustom-doxygen.scss
126 lines (102 loc) · 1.92 KB
/
custom-doxygen.scss
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
@mixin clear-background-and-border() {
// Fix well background
border: none;
background: none transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
a.anchor {
position: absolute;
text-indent: -1em;
display: inline-block;
width: 1em;
outline: none;
}
#top {
#projectlogo img {
max-width: 300px;
margin: 10px;
}
#projectalign {
display: none;
}
}
.footer {
display: none;
}
// Make sure the search window is above the floated elements
#MSearchResultsWindow {
z-index: 100;
}
.section.since {
dt, dd {
display: inline-block;
padding-right: .3em;
}
}
dl.section dt {
@include clear-background-and-border();
}
dl.reflist {
& > dt {
@include clear-background-and-border();
visibility: collapse;
position: relative;
float: right;
a.el {
visibility: visible;
text-align: right;
float: right;
&:before {
content: 'View code: ';
}
}
//display: none;
}
& > dd {
border-bottom: 1px solid #e1e1e1!important;
border-radius: 0;
margin: 10px 0;
}
dd {
@include clear-background-and-border();
font-size: 1.1em;
color: #555555;
& > code:first-of-type,
& > div > code:first-of-type,
& p > code:first-of-type,
& dl + code {
color: black;
display: block;
font-size: 1.3em;
margin-bottom: .4em;
}
table.params {
width: 100%;
tr td {
background-color: #f7f7f7;
border: none;
padding: 5px;
}
tr:nth-child(odd) td {
background-color: white;
}
td.paramname,
td.paramtype,
td.paramdir {
white-space: nowrap;
width: 1%;
padding: 5px 1%;
}
}
dl.params {
border: 1px solid #f1f1f1;
background: #f7f7f7;
padding: 10px;
dt {
@include clear-background-and-border();
}
}
}
}