forked from dokufreaks/plugin-blogtng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
296 lines (244 loc) · 6.36 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
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
/**
* Some basic CSS formatting to be used with the default template.
*
* Specialized CSS overriding the directives found here should be
* placed into your template's CSS
*/
/*____________ edit mode ____________*/
div.dokuwiki fieldset#blogtng__edit {
margin: 1.5em 0 0.5em 0;
text-align: left;
width: auto;
}
div.dokuwiki fieldset#blogtng__edit label {
margin-right: 0.2em;
}
div.dokuwiki fieldset#blogtng__edit label span {
font-weight: bold;
}
div.dokuwiki fieldset#blogtng__edit input#blogtng__tags {
width: 300px;
margin-right: 0.5em;
}
div.dokuwiki fieldset#blogtng__edit div.blogtng__tags_checkboxes {
display: inline-block;
margin: 0 0.5em;
}
div.dokuwiki fieldset#blogtng__edit label.btng__date_YY {
display: inline-block;
width: 38px;
margin-left: 1em;
}
div.dokuwiki fieldset#blogtng__edit label.btng__date_YY input {
width: 38px;
}
div.dokuwiki fieldset#blogtng__edit label.btng__date {
display: inline-block;
width: 25px;
}
div.dokuwiki fieldset#blogtng__edit label.btng__date input {
width: 25px;
}
/*____________ admin interface ____________*/
/* search form*/
div.dokuwiki div#blogtng__admin form#blogtng__search_form fieldset {
float: left;
width: auto;
margin-bottom: 0.5em;
}
div.dokuwiki div#blogtng__admin form#blogtng__search_form label {
font-weight: bold;
}
/* list */
div.dokuwiki div#blogtng__admin form#blogtng__comment_batch_edit_form {
clear: both;
display: block;
margin-bottom: 1.6em;
}
div.dokuwiki div#blogtng__admin table {
width: 100%;
margin-bottom: 0.4em;
}
div.dokuwiki div#blogtng__admin table td {
vertical-align: top;
}
div.dokuwiki div#blogtng__admin table tr.odd {
background: #f5f5f5;
}
div.dokuwiki div#blogtng__admin table tr.even {
background: #e7e7e7;
}
div.dokuwiki div#blogtng__admin table td.admin_checkbox {
width: 16px;
}
div.dokuwiki div#blogtng__admin table td.comment_edit,
div.dokuwiki div#blogtng__admin table td.entry_edit {
width: 1em;
}
div.dokuwiki div#blogtng__admin table td span {
padding: 0.2em 0.5em 0.2em 0.5em;
border-left: 2px solid #ccc;
line-height: 1.5em;
}
div.dokuwiki div#blogtng__admin table td span:first-child {
border-left-width: 0;
padding-left: 0;
}
div.dokuwiki div#blogtng__admin table td span img {
width: 1.5em;
height: 1.5em;
text-align: center;
}
div.dokuwiki div#blogtng__admin table td div.comment_metadata {
padding: 0.7em 0 0 0;
}
div.dokuwiki div#blogtng__admin table td.entry_comments {
width: 6%;
}
div.dokuwiki div#blogtng__admin table td.comment_entry {
width: 20%;
}
div.dokuwiki div#blogtng__admin table td.comment_status,
div.dokuwiki div#blogtng__admin table td.comment_source {
width: 5%;
}
/*____________ blog list ____________*/
/* create new post form */
div.dokuwiki div.blogtng_newform {
clear: both;
margin: 1em;
}
div.dokuwiki div.blogtng_newform h3 {
font-size: 110%;
margin: 0.2em;
}
/* list */
div.dokuwiki div.blogtng_list {
margin-bottom:10px;
}
div.dokuwiki div.blogtng_list div.blogtng_footer {
border-top: 1px solid __border__;
}
/*____________ blog content ____________*/
/* next/prev post navigation */
div.dokuwiki .blogtng_postnavigation {
text-align: center;
clear: both;
height: 1.5em;
}
div.dokuwiki .blogtng_prevlink {
float: left;
}
div.dokuwiki .blogtng_nextlink {
float:right;
}
/* blog entry */
div.dokuwiki div.blogtng_entry div.blogtng_footer {
border: 1px solid __border__;
background: __background_alt__;
padding: 1em;
overflow: auto;
}
/* comment display */
div.dokuwiki h2#the__comments {
margin-top: 10px;
}
/* comment display */
div.dokuwiki div.blogtng_comment {
margin-bottom: 2em;
}
div.dokuwiki div.blogtng_comment p {
min-height: 45px;
margin-bottom: 0.8em;
}
div.dokuwiki div.blogtng__commentmetadatarow {
color: __text_alt__;
}
div.dokuwiki div.blogtng_comment img.avatar,
div#insitu__comment img.avatar {
padding: 0 0.5em 0.5em 0;
}
div.dokuwiki div.blogtng_comment div.vcard {
display: inline;
}
/*____________ comment form ____________*/
div.dokuwiki form#blogtng__comment_edit_form fieldset {
width: auto;
padding: 1em;
text-align: left;
}
div.dokuwiki form#blogtng__comment_edit_form label>span {
width: 15%;
display: inline-block;
}
div.dokuwiki form#blogtng__comment_edit_form input,
div.dokuwiki form#blogtng__comment_edit_form select,
div.dokuwiki form#blogtng__comment_form textarea,
div.dokuwiki form#blogtng__comment_edit_form textarea {
margin-bottom: 0.5em;
}
div.dokuwiki div.blogtng_comment_status_hidden {
opacity: 0.5;
filter: alpha(opacity = 50);
}
div.dokuwiki form#blogtng__comment_form,
div.dokuwiki form#blogtng__comment_edit_form {
padding: 2em;
display: block;
}
div.dokuwiki form#blogtng__comment_edit_form {
text-align: right;
}
div.dokuwiki form#blogtng__comment_edit_form input,
div.dokuwiki form#blogtng__comment_edit_form select,
div.dokuwiki form#blogtng__comment_form textarea,
div.dokuwiki form#blogtng__comment_edit_form textarea {
margin-bottom: 0.5em;
}
div.dokuwiki form#blogtng__comment_form div#plugin__captcha_wrapper label{
display: block;
}
div.dokuwiki form#blogtng__comment_form div#plugin__captcha_wrapper {
padding-bottom: 1em;
}
div.dokuwiki div#blogtng__comment_preview,
div.dokuwiki div#blogtng__ajax_preview {
padding: 1em;
margin: 1em;
border: 1px dashed __border__;
}
div.dokuwiki div#blogtng__ajax_preview {
visibility: hidden;
}
div.dokuwiki input.error,
div.dokuwiki textarea.error {
background: #fcc !important;
}
/*____________tags ____________*/
/* tag list */
div.dokuwiki ul.blogtng_tags {
list-style: none;
margin: 0;
padding: 0;
display: inline;
}
div.dokuwiki ul.blogtng_tags li {
display: inline;
margin: 0;
}
div.dokuwiki ul.blogtng_tags li div.li {
display: inline;
}
div.dokuwiki ul.blogtng_tags div.li:after {
content: ", ";
}
div.dokuwiki ul.blogtng_tags li:last-child div.li:after {
content: "" !important;
}
/* tag cloud */
div.dokuwiki a.cloud_weight0 { font-size: 100% !important; }
div.dokuwiki a.cloud_weight1 { font-size: 110% !important; }
div.dokuwiki a.cloud_weight2 { font-size: 120% !important; }
div.dokuwiki a.cloud_weight3 { font-size: 130% !important; }
div.dokuwiki a.cloud_weight4 { font-size: 140% !important; }
div.dokuwiki a.cloud_weight5 { font-size: 150% !important; }