-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoxyconfig.css
More file actions
129 lines (116 loc) · 3.04 KB
/
doxyconfig.css
File metadata and controls
129 lines (116 loc) · 3.04 KB
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
/* Highlight text in search results */
span.highlighted {
background-color:var(--warning-color);
color: var(--page-foreground-color);
padding: 2px;
border-radius: 3px;
}
/* Remove list bullets for search results */
ul.search {
list-style-type: none;
padding: 0;
}
/* Add horizontal divider for search results */
ul.search li.search-result {
border-bottom: 1px solid var(--separator-color);
padding-bottom: 10px;
margin-bottom: 10px;
}
dl.section dt::before {
font-family: "Font Awesome 7 Free", sans-serif;
}
dl.section.attention dt::before {
content: "\f06a\00a0" /* exclamation circle */
}
dl.section.deprecated dt::before {
content: "\f303\00a0" /* pencil */
}
dl.section.important dt::before {
content: "\f06d\00a0" /* fire */
}
dl.section.pre dt::before {
content: "\f05a\00a0" /* information circle */
}
dl.section.note dt::before {
content: "\f249\00a0" /* stick note */
}
dl.section.remark dt::before {
content: "\f05a\00a0" /* information circle */
}
dl.section.warning dt::before {
content: "\f071\00a0" /* exclamation triangle */
}
dl.attention {
background: var(--bug-color);
border-left: 8px solid var(--bug-color-dark);
color: var(--bug-color-darker);
}
dl.attention dt {
color: var(--bug-color-darker);
}
dl.important {
background: var(--todo-color);
border-left: 8px solid var(--todo-color-dark);
color: var(--todo-color-darker);
}
dl.important dt {
color: var(--todo-color-dark);
}
/* Live search dropdown */
#RTDLiveResults {
display: none;
position: absolute;
z-index: 10000;
left: unset;
background: var(--page-background-color);
border: 1px solid var(--separator-color);
border-radius: var(--border-radius-large);
box-shadow: var(--box-shadow);
max-height: 420px;
overflow-y: auto;
}
#RTDLiveResults .rtd-live-list {
list-style: none;
margin: 0;
padding: var(--spacing-small) 0;
}
#RTDLiveResults .rtd-live-list li {
margin: 0;
}
#RTDLiveResults .rtd-live-item {
display: block;
padding: var(--spacing-small) var(--spacing-medium);
color: var(--page-foreground-color);
text-decoration: none;
outline: none;
}
#RTDLiveResults .rtd-live-item:hover,
#RTDLiveResults .rtd-live-item:focus {
background: var(--menu-focus-background);
color: var(--menu-focus-foreground);
}
#RTDLiveResults .rtd-live-title {
display: block;
font-weight: bold;
font-size: var(--navigation-font-size);
}
#RTDLiveResults .rtd-live-snippet {
display: block;
font-size: calc(var(--navigation-font-size) * 0.9);
color: var(--page-secondary-foreground-color);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 400px;
}
#RTDLiveResults .rtd-live-snippet mark {
background-color: var(--warning-color);
color: var(--page-foreground-color);
padding: 0 2px;
border-radius: 2px;
}
#RTDLiveResults .rtd-live-empty {
padding: var(--spacing-medium);
color: var(--page-secondary-foreground-color);
font-size: var(--navigation-font-size);
}