-
Notifications
You must be signed in to change notification settings - Fork 34
/
style.css
193 lines (151 loc) · 2.91 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
183
184
185
186
187
188
189
190
191
192
193
/* default style for the entry mode */
div.dataplugin_entry dl {
border: 1px solid __border__;
padding: 1em;
margin: 1em;
font-size: 90%;
overflow: auto;
width: 70%;
}
/* DO NOT MESS WITH THIS IT IS IE MAGIC */
* html div.dataplugin_entry dl dd {
float: none;
display: block;
}
*:first-child + html div.dataplugin_entry dl dd {
float: none;
display: block;
}
*:first-child + html div.dataplugin_entry dt {
padding-right: 0.5em;
}
/* END OF IE MAGIC */
div.dataplugin_entry dl dt {
font-weight: bold;
clear: left;
float: left;
width: 10em;
text-align: right;
}
div.dataplugin_entry dl dd {
float: left;
margin-left: 0.5em;
}
/* style to hide the entry data */
div.dataplugin_entry.hidden {
display: none;
}
/* default styles for the tag cloud */
ul.dataplugin_cloud {
overflow: auto;
}
ul.dataplugin_cloud li {
float: left;
list-style-type: none;
list-style-image: none;
margin: 0 1em 0 0;
padding: 0;
}
ul.dataplugin_cloud li.cl0 {
font-size: 70%
}
ul.dataplugin_cloud li.cl1 {
font-size: 90%
}
ul.dataplugin_cloud li.cl2 {
font-size: 110%
}
ul.dataplugin_cloud li.cl3 {
font-size: 130%
}
ul.dataplugin_cloud li.cl4 {
font-size: 150%
}
/* default styles for the related mode */
dl.datarelated {
margin-left: 1em;
}
dl.datarelated dd {
margin-left: 1em;
}
dl.datarelated dt {
font-weight: bold;
}
/*
* Custom Entry Editor
*/
#dw__editform fieldset.plugin__data table tr td label span {
display: none;
}
#dw__editform fieldset.plugin__data table tr td label {
/* This is the anchor for the position: absolute autocompletion */
display: block;
position: relative;
}
#dw__editform fieldset.plugin__data {
text-align: left;
width: 99%;
margin: 0.5em 0;
}
#dw__editform fieldset.plugin__data table {
text-align: center;
border: none;
margin: 1em 0;
}
#dw__editform fieldset.plugin__data table {
th {
border: none;
}
th.title {
width: 20%;
}
th.type {
width: 15%;
}
th.multi {
width: 5%;
}
th.value {
width: 30%;
}
th.comment {
width: 20%;
}
td {
padding: 0.2em 0.3em;
border: none;
}
td.title {
font-weight: bold;
}
td select,
td input {
width: 100%;
}
}
#dw__editform fieldset.plugin__data table .data_comment input {
border: none;
}
/* the section edit button - yes, it's not the most beautiful CSS you've ever seen */
div.dokuwiki div.editbutton_plugin_data {
margin-top: -1em; /* depends on the dl margin */
float: none;
}
div.dokuwiki div.editbutton_plugin_data form input.button,
div.dokuwiki div.editbutton_plugin_data form button {
float: none;
margin-left: 1.6em;
padding: 0 0.3em;
background-image: none;
border-top: none;
}
table.dataplugin_table th input {
width: 98%;
}
/* datapicker and autocomplete menu */
.ui-datepicker {
font-size: 0.9em;
}
.ui-menu {
font-size: 1em;
}