-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
182 lines (145 loc) · 3.28 KB
/
style.css
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
#siteexport__throbber {
visibility: hidden;
}
#siteexport, #siteexport__manager {
margin: 1em auto 1em auto;
vertical-align: middle;
width: 80%;
text-align: left;
}
#siteexport__manager {
margin-top: 0px;
padding-top: 1em;
}
#siteexport fieldset {
text-align: left;
}
#siteexport fieldset label input, #siteexport fieldset label select {
float: right;
text-align: left;
width: 50%;
}
#siteexport fieldset label input[type=checkbox] {
width: auto;
}
#siteexport fieldset.hideOptions > *
{
display: none;
}
#siteexport fieldset legend, #siteexport fieldset.hideOptions .forceVisible
{
display: block !important;
}
#siteexport fieldset legend
{
cursor: pointer;
}
#siteexport fieldset legend:hover
{
color: __existing__;
text-decoration: underline;
}
#siteexport fieldset br {
clear: both;
}
#siteexport fieldset p {
margin-top: 0px;
color: #a9a9a9;
}
#siteexport__errorlog {
overflow: auto;
max-height: 200px;
}
#siteexport__errorlog p {
color: #a00;
margin: 0px;
padding: 0px 5px;
overflow: hidden;
}
#siteexport__errorlog p:nth-child(odd) {
background-color: #FFEDED;
}
#siteexport__errorlog p:nth-child(even) {
background-color: #FFD4D4;
}
#siteexport__customActions {
margin: 0px;
padding: 0px;
}
#siteexport__customActions li {
list-style: none;
border-bottom: 1px solid #ccc;
float: left;
clear: both;
width: 100%;
margin: 0px;
padding: 0px;
}
#siteexport__customActions li input {
margin: 2px 1%;
width: 45%;
}
#siteexport__customActions li:last-child {
border-bottom: none;
}
#siteexport__customActions li:nth-child(odd) {
background-color: #eee;
}
#siteexport__customActions li:nth-child(even) {
background-color: #f0f0f0;
}
#siteexport__customActions li button {
float: right;
}
div.sitetoc ul li div.li > a
{
display: block;
margin-bottom: 5px !important;
margin-top: 15px !important;
}
#siteexport .siteexport__throbber,
#siteexport .siteexport__throbber img {
display: block;
margin-left: auto;
margin-right: auto;
}
#dokuwiki__pagetools ul li a.siteexport_addpage::before {
content: url(images/pagetools.png);
}
#dokuwiki__pagetools:hover ul li a.siteexport_addpage,
#dokuwiki__pagetools ul li a.siteexport_addpage:focus,
#dokuwiki__pagetools ul li a.siteexport_addpage:active {
background-image: url(images/pagetools.png);
}
#dokuwiki__pagetools ul li a.siteexport_addpage:hover,
#dokuwiki__pagetools ul li a.siteexport_addpage:active,
#dokuwiki__pagetools ul li a.siteexport_addpage:focus {
background-position: right -32px;
}
#dokuwiki__pagetools ul li a.siteexport_mapid {
.mapID {
position: relative;
&:before {
position: absolute;
left: 0; right: 0;
content: attr(data-done);
color: #0a0;
opacity: 0;
background: #efe;
text-align: center;
transition: opacity ease-in-out 500ms;
}
&.done:before {
opacity: 1;
}
}
}
div.siteexport.mergehint {
position: relative;
span.mergehint {
position: absolute;
right: 100%;
font-size: 90%;
}
}
// Setup VIM: ex: et ts=4 enc=utf-8 :