typo 5.1.98 → 5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/app/controllers/admin/blacklist_controller.rb +9 -3
- data/app/controllers/admin/content_controller.rb +1 -1
- data/app/controllers/admin/feedback_controller.rb +9 -0
- data/app/controllers/admin/themes_controller.rb +46 -0
- data/app/controllers/comments_controller.rb +5 -1
- data/app/helpers/admin/base_helper.rb +2 -1
- data/app/helpers/admin/feedback_helper.rb +3 -0
- data/app/helpers/application_helper.rb +2 -1
- data/app/helpers/theme_helper.rb +5 -1
- data/app/models/article.rb +8 -3
- data/app/models/blacklist_pattern.rb +2 -0
- data/app/models/feedback.rb +7 -1
- data/app/views/admin/blacklist/_blacklist_patterns.html.erb +10 -10
- data/app/views/admin/blacklist/_form.html.erb +1 -1
- data/app/views/admin/blacklist/_quick_post.html.erb +2 -1
- data/app/views/admin/categories/_form.html.erb +1 -1
- data/app/views/admin/categories/new.html.erb +1 -1
- data/app/views/admin/content/_form.html.erb +21 -8
- data/app/views/admin/content/index.html.erb +2 -2
- data/app/views/admin/dashboard/_comments.html.erb +3 -3
- data/app/views/admin/dashboard/_inbound.html.erb +2 -2
- data/app/views/admin/dashboard/_popular.html.erb +2 -2
- data/app/views/admin/dashboard/_posts.html.erb +2 -2
- data/app/views/admin/dashboard/_sysinfo.html.erb +4 -4
- data/app/views/admin/dashboard/_typo_dev.html.erb +1 -1
- data/app/views/admin/feedback/_button.html.erb +1 -0
- data/app/views/admin/feedback/_form.html.erb +1 -1
- data/app/views/admin/feedback/_item.html.erb +7 -7
- data/app/views/admin/feedback/article.html.erb +1 -1
- data/app/views/admin/feedback/edit.html.erb +1 -1
- data/app/views/admin/pages/_form.html.erb +2 -2
- data/app/views/admin/settings/feedback.html.erb +3 -3
- data/app/views/admin/settings/index.html.erb +3 -3
- data/app/views/admin/settings/read.html.erb +1 -1
- data/app/views/admin/settings/seo.html.erb +1 -1
- data/app/views/admin/settings/update_database.html.erb +2 -2
- data/app/views/admin/sidebar/index.html.erb +5 -5
- data/app/views/admin/themes/catalogue.html.erb +25 -0
- data/app/views/admin/themes/editor.html.erb +1 -4
- data/app/views/admin/themes/index.html.erb +1 -1
- data/app/views/admin/users/index.html.erb +6 -6
- data/app/views/articles/_article.html.erb +1 -1
- data/app/views/articles/_comment.html.erb +1 -1
- data/app/views/articles/comment_preview.html.erb +1 -1
- data/app/views/layouts/administration.html.erb +0 -1
- data/app/views/trackbacks/trackback.xml.builder +4 -0
- data/app/views/xml/feed.atom.builder +1 -1
- data/config/environment.rb +2 -0
- data/config/initializers/access_rules.rb +1 -0
- data/lang/fr_FR.rb +4 -0
- data/lib/spam_protection.rb +0 -18
- data/lib/tasks/release.rake +3 -1
- data/lib/typo_version.rb +1 -1
- data/public/javascripts/fckeditor/fckconfig.js +21 -14
- data/public/javascripts/fckeditor/fckeditor.js +1 -1
- data/public/javascripts/quicktags.js +2 -2
- data/public/robots.txt +0 -11
- data/public/stylesheets/administration.css +163 -280
- data/spec/controllers/articles_controller_spec.rb +8 -0
- data/spec/controllers/xml_controller_spec.rb +7 -0
- data/spec/models/comment_spec.rb +1 -1
- data/spec/models/trackback_spec.rb +4 -1
- data/spec/views/articles/index_spec.rb +0 -1
- data/themes/dirtylicious/views/articles/_article.html.erb +2 -2
- data/themes/dirtylicious/views/articles/_comment.html.erb +1 -1
- data/themes/dirtylicious/views/articles/comment_preview.html.erb +1 -1
- data/themes/dirtylicious/views/articles/read.html.erb +9 -3
- data/themes/scribbish/views/articles/_article.html.erb +2 -2
- data/themes/scribbish/views/articles/_comment.html.erb +1 -1
- data/themes/scribbish/views/articles/read.html.erb +9 -3
- data/themes/standard_issue/views/articles/_article.html.erb +3 -3
- data/themes/standard_issue/views/articles/_comment.html.erb +1 -1
- data/themes/standard_issue/views/articles/comment_preview.html.erb +1 -1
- data/themes/standard_issue/views/articles/read.html.erb +8 -3
- data/themes/typographic/views/articles/_article.html.erb +3 -3
- data/themes/typographic/views/articles/_comment.html.erb +1 -1
- data/themes/typographic/views/articles/comment_preview.html.erb +1 -1
- data/themes/typographic/views/articles/read.html.erb +6 -2
- data/vendor/plugins/fckeditor/app/controllers/fckeditor_controller.rb +8 -7
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +1 -1
- data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +11 -2
- data/vendor/plugins/xml_sidebar/views/content.rhtml +6 -6
- metadata +176 -157
- data/vendor/plugins/fckeditor/Rakefile +0 -72
@@ -51,7 +51,7 @@ function edButton(id, display, tagStart, tagEnd, access, open) {
|
|
51
51
|
edButtons.push(
|
52
52
|
new edButton(
|
53
53
|
'ed_bold'
|
54
|
-
,'
|
54
|
+
,'strong'
|
55
55
|
,'<strong>'
|
56
56
|
,'</strong>'
|
57
57
|
,'b'
|
@@ -61,7 +61,7 @@ edButtons.push(
|
|
61
61
|
edButtons.push(
|
62
62
|
new edButton(
|
63
63
|
'ed_italic'
|
64
|
-
,'
|
64
|
+
,'italic'
|
65
65
|
,'<em>'
|
66
66
|
,'</em>'
|
67
67
|
,'i'
|
data/public/robots.txt
CHANGED
@@ -2,16 +2,5 @@ User-agent: *
|
|
2
2
|
Disallow: /admin/
|
3
3
|
Disallow: /page/
|
4
4
|
Disallow: /cgi-bin
|
5
|
-
Disallow: /2010/
|
6
|
-
Disallow: /2009/
|
7
|
-
Disallow: /2008/
|
8
|
-
Disallow: /2007/
|
9
|
-
Disallow: /2006/
|
10
|
-
Disallow: /2005/
|
11
|
-
Disallow: /2004/
|
12
|
-
Disallow: /2003/
|
13
|
-
Disallow: /2002/
|
14
|
-
Disallow: /2001/
|
15
|
-
Disallow: /2000/
|
16
5
|
User-agent: Googlebot-Image
|
17
6
|
Allow: /*
|
@@ -5,12 +5,87 @@ html, body {
|
|
5
5
|
body {
|
6
6
|
margin: 0;
|
7
7
|
padding: 0;
|
8
|
-
font:
|
8
|
+
font: 12px/18px "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
|
9
9
|
line-height: 1.6em;
|
10
|
-
color: #
|
11
|
-
|
10
|
+
color: #222;
|
11
|
+
background: #f9f9f9;
|
12
|
+
}
|
13
|
+
|
14
|
+
form {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
12
17
|
}
|
13
18
|
|
19
|
+
a, a:visited {
|
20
|
+
color: #38b;
|
21
|
+
text-decoration: none;
|
22
|
+
font-weight: bold;
|
23
|
+
}
|
24
|
+
|
25
|
+
a:hover, a:visited:hover {
|
26
|
+
text-decoration: underline;
|
27
|
+
color: #333;
|
28
|
+
}
|
29
|
+
|
30
|
+
h2 {
|
31
|
+
font-size: 16px;
|
32
|
+
letter-spacing: 2px;
|
33
|
+
color: #464646;
|
34
|
+
margin: 0 0 20px 0;
|
35
|
+
padding-top: 20px;
|
36
|
+
}
|
37
|
+
|
38
|
+
h2 span {
|
39
|
+
font-size: 12px;
|
40
|
+
}
|
41
|
+
|
42
|
+
h2 span a,
|
43
|
+
h2 span a:visited {
|
44
|
+
text-decoration: underline;
|
45
|
+
}
|
46
|
+
|
47
|
+
fieldset {
|
48
|
+
margin-top: 10px;
|
49
|
+
}
|
50
|
+
|
51
|
+
label {
|
52
|
+
font-weight: normal;
|
53
|
+
color: #464646;
|
54
|
+
}
|
55
|
+
|
56
|
+
label.float {
|
57
|
+
display: block;
|
58
|
+
float: left;
|
59
|
+
width: 200px;
|
60
|
+
margin-left: 0;
|
61
|
+
margin-right: 12px;
|
62
|
+
padding: 0;
|
63
|
+
text-align: right;
|
64
|
+
}
|
65
|
+
|
66
|
+
label.block {
|
67
|
+
display: block;
|
68
|
+
margin-bottom: 10px;
|
69
|
+
}
|
70
|
+
|
71
|
+
label.title {
|
72
|
+
font-size: 16px;
|
73
|
+
}
|
74
|
+
|
75
|
+
label.content {
|
76
|
+
font-size: 14px;
|
77
|
+
margin-top: 6px;
|
78
|
+
}
|
79
|
+
|
80
|
+
legend {
|
81
|
+
font-size: 14px;
|
82
|
+
color: #464646;
|
83
|
+
font-weight: bold;
|
84
|
+
}
|
85
|
+
|
86
|
+
small {
|
87
|
+
font-size: 11px;
|
88
|
+
}
|
14
89
|
|
15
90
|
/* Top navigation */
|
16
91
|
#topnav {
|
@@ -29,39 +104,37 @@ body {
|
|
29
104
|
#topnav ul li {
|
30
105
|
float: left;
|
31
106
|
margin: 0;
|
107
|
+
font-size: 15px;
|
32
108
|
}
|
33
109
|
|
34
110
|
#topnav ul li.right {
|
35
111
|
float: right;
|
36
|
-
font-size:
|
112
|
+
font-size: 11.5px;
|
37
113
|
}
|
38
114
|
|
39
115
|
#topnav ul li.current {
|
40
116
|
color: #fff;
|
41
|
-
background: #
|
117
|
+
background: #464646;
|
42
118
|
}
|
43
119
|
|
44
120
|
#topnav ul li a {
|
45
121
|
display: block;
|
46
|
-
padding: 11px 20px 0
|
122
|
+
padding: 11px 20px 0;
|
47
123
|
height: 25px;
|
48
|
-
|
49
|
-
color: #fafafa;
|
124
|
+
color: #fff;
|
50
125
|
text-transform: capitalize;
|
51
126
|
border-right: #525251 1px solid;
|
52
|
-
font-size: 1.4em;
|
53
127
|
}
|
54
128
|
|
55
129
|
#topnav ul li a:hover {
|
56
130
|
color: #fff;
|
57
|
-
background: #
|
131
|
+
background: #464646;
|
58
132
|
}
|
59
133
|
/* End of Top navigation */
|
60
134
|
|
61
|
-
|
62
135
|
/* Sub navigation */
|
63
136
|
#subtabs {
|
64
|
-
background: #
|
137
|
+
background: #464646;
|
65
138
|
padding: 5px 20px;
|
66
139
|
}
|
67
140
|
|
@@ -74,13 +147,11 @@ body {
|
|
74
147
|
#subtabs ul li {
|
75
148
|
float: left;
|
76
149
|
padding: 2px 20px 2px 0;
|
77
|
-
|
150
|
+
font-size: 12px;
|
78
151
|
}
|
79
152
|
|
80
153
|
#subtabs li a {
|
81
|
-
text-decoration: none;
|
82
154
|
color: #fff;
|
83
|
-
font-size: 1.1em;
|
84
155
|
}
|
85
156
|
|
86
157
|
#subtabs li a:hover {
|
@@ -92,8 +163,8 @@ body {
|
|
92
163
|
color: #fff;
|
93
164
|
text-decoration: underline;
|
94
165
|
}
|
95
|
-
/* End of sub navigation */
|
96
166
|
|
167
|
+
/* End of sub navigation */
|
97
168
|
|
98
169
|
#container {
|
99
170
|
text-align: left;
|
@@ -101,77 +172,26 @@ body {
|
|
101
172
|
}
|
102
173
|
|
103
174
|
#overall {
|
104
|
-
padding: 10px
|
105
|
-
width:
|
175
|
+
padding: 10px 0 20px 20px;
|
176
|
+
width: 1000px;
|
106
177
|
background: #fff;
|
107
178
|
}
|
108
179
|
|
109
180
|
#footer {
|
110
|
-
float: left;
|
111
|
-
width: 100%;
|
112
|
-
margin-top: 30px;
|
113
|
-
padding
|
114
|
-
|
115
|
-
|
116
|
-
color: #000;
|
117
|
-
border-top: #ccc 1px solid;
|
118
|
-
}
|
119
|
-
|
120
|
-
/* @group Utility */
|
121
|
-
|
122
|
-
|
123
|
-
form {
|
124
|
-
margin: 0;
|
125
|
-
padding: 0;
|
126
|
-
}
|
127
|
-
|
128
|
-
a:link, a:visited {
|
129
|
-
color: #224272;
|
130
|
-
text-decoration: none;
|
131
|
-
}
|
132
|
-
|
133
|
-
a:hover, a:visited:hover {
|
134
|
-
text-decoration: underline;
|
135
|
-
color: #aaa;
|
181
|
+
float: left;
|
182
|
+
width: 100%;
|
183
|
+
margin-top: 30px;
|
184
|
+
padding: 10px 0 0 0;
|
185
|
+
text-align: center;
|
186
|
+
border-top: #ccc 1px solid;
|
136
187
|
}
|
137
188
|
|
138
|
-
/* @end */
|
139
|
-
|
140
189
|
/* @group Headings */
|
141
190
|
|
142
|
-
h2 {
|
143
|
-
font-size: 1.8em;
|
144
|
-
font-weight: normal;
|
145
|
-
letter-spacing: 2px;
|
146
|
-
color: #f60;
|
147
|
-
margin: 0 0 20px 3px;
|
148
|
-
padding-top: 20px;
|
149
|
-
}
|
150
|
-
|
151
|
-
h2 span a {
|
152
|
-
text-decoration: underline;
|
153
|
-
}
|
154
|
-
|
155
|
-
h2 a:visited {
|
156
|
-
color: #666;
|
157
|
-
}
|
158
|
-
|
159
|
-
h2 a:hover {
|
160
|
-
text-decoration: none;
|
161
|
-
color: #993333;
|
162
|
-
}
|
163
|
-
|
164
|
-
h2 span {
|
165
|
-
font-size: 0.7em;
|
166
|
-
}
|
167
|
-
|
168
191
|
h3 {
|
169
|
-
font-size:
|
192
|
+
font-size: 13px;
|
170
193
|
padding: 5px;
|
171
194
|
margin-bottom: 0;
|
172
|
-
}
|
173
|
-
|
174
|
-
.set h3 {
|
175
195
|
background: none;
|
176
196
|
margin: 0 0 5px 0;
|
177
197
|
color: #1F273F;
|
@@ -181,55 +201,37 @@ h3 {
|
|
181
201
|
|
182
202
|
/* @group Table Listings */
|
183
203
|
|
184
|
-
|
185
|
-
width: 25px;
|
186
|
-
text-align: center;
|
187
|
-
}
|
188
|
-
|
189
|
-
th.operation {
|
190
|
-
text-align: center;
|
191
|
-
}
|
192
|
-
|
193
|
-
.list {
|
194
|
-
clear: left;
|
195
|
-
}
|
196
|
-
|
197
|
-
.list table {
|
204
|
+
table {
|
198
205
|
width: 100%;
|
199
206
|
border-spacing: 0;
|
200
|
-
border-bottom: #
|
207
|
+
border-bottom: #444 1px solid;
|
201
208
|
border-collapse: collapse;
|
202
209
|
background: #fff;
|
203
210
|
}
|
204
211
|
|
205
|
-
|
206
|
-
border-bottom: #324e79 1px solid;
|
207
|
-
padding-bottom: 5px;
|
208
|
-
}
|
209
|
-
|
210
|
-
.list table th {
|
212
|
+
th {
|
211
213
|
text-align: left;
|
212
214
|
padding: 2px 5px;
|
213
|
-
color: #
|
215
|
+
color: #464646;
|
214
216
|
font-size: 12px;
|
215
217
|
}
|
216
218
|
|
217
|
-
|
218
|
-
|
219
|
-
|
219
|
+
td {
|
220
|
+
padding: 12px 3px;
|
221
|
+
border-bottom: #eee 1px solid;
|
220
222
|
}
|
221
223
|
|
222
|
-
.
|
223
|
-
|
224
|
-
|
224
|
+
td.operation {
|
225
|
+
width: 25px;
|
226
|
+
text-align: center;
|
225
227
|
}
|
226
228
|
|
227
|
-
.
|
228
|
-
|
229
|
+
th.operation {
|
230
|
+
text-align: center;
|
229
231
|
}
|
230
232
|
|
231
|
-
|
232
|
-
|
233
|
+
.list {
|
234
|
+
clear: left;
|
233
235
|
}
|
234
236
|
|
235
237
|
li.shade {
|
@@ -237,17 +239,24 @@ li.shade {
|
|
237
239
|
}
|
238
240
|
|
239
241
|
.paginate {
|
240
|
-
background: #
|
242
|
+
background: #dfdfdf;
|
241
243
|
padding: 10px;
|
242
244
|
margin-bottom: 15px;
|
243
245
|
text-align: center;
|
244
|
-
|
245
246
|
}
|
246
247
|
|
247
248
|
td.paginate {
|
248
249
|
text-align: center;
|
249
250
|
}
|
250
251
|
|
252
|
+
tr.menubar td {
|
253
|
+
padding: 5px 3px;
|
254
|
+
}
|
255
|
+
|
256
|
+
tr.menubar {
|
257
|
+
background : #dfdfdf;
|
258
|
+
}
|
259
|
+
|
251
260
|
/* @end */
|
252
261
|
|
253
262
|
/* @group Form Elements */
|
@@ -264,25 +273,13 @@ td.paginate {
|
|
264
273
|
}
|
265
274
|
|
266
275
|
#blog_name {
|
267
|
-
font-size:
|
268
|
-
}
|
269
|
-
|
270
|
-
/* @end */
|
271
|
-
|
272
|
-
/* @group Popups/Tooltips */
|
273
|
-
|
274
|
-
.tip-catlist {
|
275
|
-
width: 200px;
|
276
|
-
background: #EEF1FE;
|
277
|
-
border: 2px solid #C2D2E7;
|
278
|
-
padding: 5px;
|
276
|
+
font-size: 1.3em;
|
279
277
|
}
|
280
278
|
|
281
279
|
/* @end */
|
282
280
|
|
283
281
|
/* Article forms */
|
284
282
|
|
285
|
-
|
286
283
|
#article_form input,
|
287
284
|
#article_form textarea,
|
288
285
|
#article_form select,
|
@@ -316,49 +313,24 @@ td.paginate {
|
|
316
313
|
font-size: 1.7em;
|
317
314
|
}
|
318
315
|
|
319
|
-
|
320
|
-
#page_form label,
|
321
|
-
.admin label {
|
322
|
-
color: #224272;
|
323
|
-
}
|
316
|
+
|
324
317
|
|
325
318
|
#article_form select.large option {
|
326
319
|
padding: 3px;
|
327
320
|
}
|
328
321
|
|
329
|
-
legend {
|
330
|
-
font-size: 16px;
|
331
|
-
color: #224272;
|
332
|
-
}
|
333
322
|
|
334
323
|
|
335
|
-
#preview {
|
336
|
-
background: #fff;
|
337
|
-
border-left: 1px dashed #ccc;
|
338
|
-
border-right: none;
|
339
|
-
border-top: none;
|
340
|
-
border-bottom: none;
|
341
|
-
padding: 0 0 0 5px;
|
342
|
-
width: 50%;
|
343
|
-
height: 430px;
|
344
|
-
float: right;
|
345
|
-
margin-top: 10px;
|
346
|
-
margin-bottom: 10px;
|
347
|
-
}
|
348
|
-
|
349
324
|
/* @end */
|
350
325
|
|
351
326
|
/* @group General Settings Screen */
|
352
327
|
|
353
|
-
.
|
328
|
+
.admin {
|
354
329
|
padding: 0 10px 5px 10px;
|
355
330
|
margin-bottom: 10px;
|
356
331
|
position: relative;
|
357
332
|
}
|
358
333
|
|
359
|
-
.set fieldset {
|
360
|
-
margin-top: 10px;
|
361
|
-
}
|
362
334
|
|
363
335
|
.admin ul {
|
364
336
|
margin: 0;
|
@@ -380,35 +352,9 @@ legend {
|
|
380
352
|
line-height: 1.4em;
|
381
353
|
}
|
382
354
|
|
383
|
-
.admin label.float {
|
384
|
-
display: block;
|
385
|
-
float: left;
|
386
|
-
width: 200px;
|
387
|
-
margin-left: 0;
|
388
|
-
margin-right: 12px;
|
389
|
-
padding: 0;
|
390
|
-
text-align: right;
|
391
|
-
color: #224272;
|
392
|
-
}
|
393
|
-
|
394
|
-
.admin label.block {
|
395
|
-
display: block;
|
396
|
-
margin-bottom: 10px;
|
397
|
-
}
|
398
355
|
|
399
|
-
.admin label.title {
|
400
|
-
font-size: 1.7em;
|
401
|
-
}
|
402
356
|
|
403
|
-
.admin label.content {
|
404
|
-
font-size: 1.4em;
|
405
|
-
margin-top: 0.5em;
|
406
|
-
}
|
407
357
|
|
408
|
-
.admin label.tags {
|
409
|
-
font-size: 1.4em;
|
410
|
-
margin-top: 0;
|
411
|
-
}
|
412
358
|
|
413
359
|
.admin input.float {
|
414
360
|
width: auto;
|
@@ -423,54 +369,53 @@ legend {
|
|
423
369
|
}
|
424
370
|
|
425
371
|
.mandatory {
|
426
|
-
color: #
|
372
|
+
color: #f17;
|
373
|
+
font-weight: bold;
|
427
374
|
}
|
428
375
|
|
429
376
|
/* @end */
|
430
377
|
|
431
378
|
/* @group Sidebar */
|
432
379
|
|
433
|
-
|
434
380
|
#sidebar-config p {
|
435
381
|
margin: 0;
|
436
|
-
padding-left: 5px;
|
437
382
|
}
|
438
383
|
|
439
|
-
|
440
384
|
#active, #cnt-active {
|
441
385
|
width: 325px;
|
442
386
|
min-height: 200px;
|
443
387
|
padding-bottom: 10px;
|
444
388
|
}
|
445
389
|
|
390
|
+
#active {
|
391
|
+
background: #ffb;
|
392
|
+
padding: 5px;
|
393
|
+
}
|
446
394
|
|
447
395
|
#cnt-active {
|
448
396
|
margin-left: 360px;
|
449
|
-
border: #ccc 1px solid;
|
450
397
|
}
|
451
398
|
|
452
|
-
|
453
399
|
#available {
|
454
400
|
padding-bottom: 10px;
|
455
|
-
border: #ccc 1px solid;
|
456
401
|
float: left;
|
457
402
|
width: 325px;
|
458
403
|
}
|
459
404
|
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
color: #000;
|
464
|
-
margin: 0 0 10px 0;
|
465
|
-
padding: 2px 5px;
|
405
|
+
#available_box h4 {
|
406
|
+
color: #f17;
|
407
|
+
font-weight: bold;
|
466
408
|
}
|
467
409
|
|
410
|
+
#active h4 {
|
411
|
+
color: #6a0;
|
412
|
+
font-weight: bold;
|
413
|
+
}
|
468
414
|
|
469
415
|
.dropbox {
|
470
416
|
width: 300px;
|
471
417
|
}
|
472
418
|
|
473
|
-
|
474
419
|
.handle {
|
475
420
|
cursor: move;
|
476
421
|
font-size: 13px;
|
@@ -478,9 +423,13 @@ legend {
|
|
478
423
|
margin: 0;
|
479
424
|
}
|
480
425
|
|
481
|
-
|
482
426
|
.dragitem, .dropitem {
|
483
|
-
|
427
|
+
padding: 12px;
|
428
|
+
margin-bottom: 12px;
|
429
|
+
background: #eee;
|
430
|
+
border-radius: 3px;
|
431
|
+
-moz-border-radius: 3px;
|
432
|
+
-webkit-border-radius: 4px;
|
484
433
|
}
|
485
434
|
|
486
435
|
|
@@ -488,11 +437,9 @@ legend {
|
|
488
437
|
width: 300px;
|
489
438
|
}
|
490
439
|
|
491
|
-
|
492
440
|
.target {
|
493
|
-
background: #F8F7EF;
|
494
|
-
margin: 5px;
|
495
441
|
padding: 5px;
|
442
|
+
min-height: 200px;
|
496
443
|
}
|
497
444
|
/* @end */
|
498
445
|
|
@@ -503,18 +450,6 @@ legend {
|
|
503
450
|
padding: 0 0 5px;
|
504
451
|
}
|
505
452
|
|
506
|
-
#info {
|
507
|
-
color: #4A4902;
|
508
|
-
}
|
509
|
-
|
510
|
-
#info a {
|
511
|
-
color: #4A4902;
|
512
|
-
}
|
513
|
-
|
514
|
-
#info a:hover {
|
515
|
-
border-bottom: 1px dotted #222;
|
516
|
-
}
|
517
|
-
|
518
453
|
.form p>small {
|
519
454
|
color: gray;
|
520
455
|
}
|
@@ -524,17 +459,14 @@ legend {
|
|
524
459
|
font-size: 90%;
|
525
460
|
}
|
526
461
|
|
527
|
-
|
528
462
|
.l {
|
529
463
|
text-align: left;
|
530
464
|
}
|
531
465
|
|
532
|
-
|
533
466
|
.r {
|
534
467
|
text-align: right;
|
535
468
|
}
|
536
469
|
|
537
|
-
|
538
470
|
.c {
|
539
471
|
text-align: center;
|
540
472
|
}
|
@@ -614,14 +546,6 @@ div.user {
|
|
614
546
|
|
615
547
|
/* @end */
|
616
548
|
|
617
|
-
#quick-navigate {
|
618
|
-
background: #F8F7EF;
|
619
|
-
padding: 2px 5px 0px 5px;
|
620
|
-
border: 1px dotted #9cabba;
|
621
|
-
margin-left: 10px;
|
622
|
-
border-top: none;
|
623
|
-
}
|
624
|
-
|
625
549
|
#quick-post {
|
626
550
|
background: #ffffff;
|
627
551
|
border-top: #333 1px solid;
|
@@ -631,16 +555,6 @@ div.user {
|
|
631
555
|
padding: 5px;
|
632
556
|
}
|
633
557
|
|
634
|
-
#advanced {
|
635
|
-
line-height: 1.3em;
|
636
|
-
}
|
637
|
-
|
638
|
-
#advanced label {
|
639
|
-
clear: left;
|
640
|
-
float: left;
|
641
|
-
width: 15em;
|
642
|
-
}
|
643
|
-
|
644
558
|
.clear {
|
645
559
|
clear: both;
|
646
560
|
}
|
@@ -651,10 +565,10 @@ div.user {
|
|
651
565
|
margin-left: auto;
|
652
566
|
margin-right: auto;
|
653
567
|
margin-top: 100px;
|
568
|
+
border: #464646 1px solid;
|
654
569
|
}
|
655
570
|
|
656
571
|
#loginform label {
|
657
|
-
color: #224272;
|
658
572
|
display: block;
|
659
573
|
}
|
660
574
|
|
@@ -666,7 +580,6 @@ div.user {
|
|
666
580
|
padding: 3px 3px;
|
667
581
|
}
|
668
582
|
|
669
|
-
|
670
583
|
#loginform input,
|
671
584
|
#article_form input.submit,
|
672
585
|
#page_form input.submit,
|
@@ -690,7 +603,6 @@ input.submit {
|
|
690
603
|
width: auto;
|
691
604
|
}
|
692
605
|
|
693
|
-
|
694
606
|
#loginform div.form {
|
695
607
|
border: none;
|
696
608
|
background: #fff;
|
@@ -698,7 +610,6 @@ input.submit {
|
|
698
610
|
padding: 30px 10px 10px;
|
699
611
|
}
|
700
612
|
|
701
|
-
|
702
613
|
#loginform h3 {
|
703
614
|
text-align: center;
|
704
615
|
}
|
@@ -710,7 +621,6 @@ input.submit {
|
|
710
621
|
background: #fff;
|
711
622
|
}
|
712
623
|
|
713
|
-
|
714
624
|
#loginform .errorExplanation h2 {
|
715
625
|
font-weight: normal;
|
716
626
|
font: 14px Tahoma Helvetica sans-serif;
|
@@ -728,18 +638,19 @@ input.submit {
|
|
728
638
|
#flash span {
|
729
639
|
background: #fff;
|
730
640
|
padding: 5px;
|
731
|
-
margin
|
641
|
+
margin: 10px 20px 0 0;
|
732
642
|
color: #000;
|
733
643
|
display: block;
|
734
644
|
}
|
735
645
|
|
736
646
|
#flash .notice {
|
737
|
-
border: 2px solid #
|
647
|
+
border: 2px solid #66AA00;
|
648
|
+
color: #66AA00;
|
738
649
|
}
|
739
650
|
|
740
651
|
#flash .error {
|
741
|
-
border: #
|
742
|
-
|
652
|
+
border: #FF1177 2px solid;
|
653
|
+
color: #FF1177;
|
743
654
|
}
|
744
655
|
/* End of notices, infos and errors */
|
745
656
|
|
@@ -748,41 +659,24 @@ input.submit {
|
|
748
659
|
margin: 0;
|
749
660
|
padding: 0;
|
750
661
|
margin-top: 10px;
|
751
|
-
width:
|
662
|
+
width: 100%;
|
752
663
|
}
|
753
664
|
|
754
665
|
#category_list li {
|
755
666
|
cursor: move;
|
756
667
|
border-bottom: 1px dotted #ccc;
|
668
|
+
padding: 12px 3px;
|
757
669
|
}
|
758
670
|
|
759
|
-
|
760
|
-
|
761
|
-
/* @group Feedback */
|
762
|
-
|
763
|
-
.feedbackbody td {
|
764
|
-
border-bottom: 1px dotted #ccc;
|
765
|
-
}
|
766
|
-
|
767
|
-
.presumed_ham td {
|
768
|
-
border-bottom: 1px dotted #ccc;
|
769
|
-
}
|
770
|
-
|
771
|
-
.presumed_spam td {
|
772
|
-
border-bottom: 1px dotted #ccc;
|
773
|
-
}
|
774
|
-
|
775
|
-
.ham td {
|
776
|
-
border-bottom: 1px dotted #ccc;
|
671
|
+
.published {
|
672
|
+
color: #66AA00;
|
777
673
|
}
|
778
674
|
|
779
|
-
.
|
780
|
-
|
675
|
+
.unpublished {
|
676
|
+
color: #FF1177;
|
781
677
|
}
|
782
678
|
|
783
|
-
|
784
|
-
font-weight: bold
|
785
|
-
}
|
679
|
+
/* @end */
|
786
680
|
|
787
681
|
/* Dashboard */
|
788
682
|
.dashboard-small {
|
@@ -802,13 +696,6 @@ input.submit {
|
|
802
696
|
#dashboard h3 {
|
803
697
|
padding: 0;
|
804
698
|
margin: 0;
|
805
|
-
color: #ff6600;
|
806
|
-
font-size: 1.6em;
|
807
|
-
font-weight: normal;
|
808
|
-
}
|
809
|
-
|
810
|
-
#dashboard .dashboard h3 {
|
811
|
-
color: #2C8146;
|
812
699
|
}
|
813
700
|
|
814
701
|
#dashboard ul {
|
@@ -820,14 +707,12 @@ input.submit {
|
|
820
707
|
|
821
708
|
#dashboard ul li {
|
822
709
|
margin-left: 0;
|
823
|
-
padding:
|
710
|
+
padding: 12px 3px 12px 3px;
|
824
711
|
list-style: none;
|
825
712
|
font-size: 1.1em;
|
713
|
+
border-bottom: #eee 1px solid;
|
826
714
|
}
|
827
715
|
|
828
|
-
#dashboard ul li.shade {
|
829
|
-
background : #f0f0f0;
|
830
|
-
}
|
831
716
|
/* End of dashboard */
|
832
717
|
|
833
718
|
hr {
|
@@ -885,7 +770,7 @@ hr {
|
|
885
770
|
|
886
771
|
li.paginate {
|
887
772
|
margin-bottom: 15px;
|
888
|
-
border-left: #b0b0b0
|
773
|
+
border-left: #b0b0b0 8px solid;
|
889
774
|
}
|
890
775
|
|
891
776
|
div.auto_complete {
|
@@ -921,19 +806,17 @@ div.auto_complete ul strong.highlight {
|
|
921
806
|
display: none;
|
922
807
|
}
|
923
808
|
|
924
|
-
tr.menubar {
|
925
|
-
background : #503a30;
|
926
|
-
}
|
927
|
-
|
928
809
|
.theme {
|
929
|
-
|
810
|
+
width: 260px;
|
811
|
+
height: 300px;
|
930
812
|
float: left;
|
931
813
|
margin-right: 20px;
|
932
814
|
overflow: hidden;
|
933
815
|
}
|
934
816
|
|
935
817
|
.theme img {
|
936
|
-
|
818
|
+
width: 400px;
|
819
|
+
height: 200px;
|
937
820
|
}
|
938
821
|
|
939
822
|
.theme hr {
|
@@ -952,4 +835,4 @@ tr.menubar {
|
|
952
835
|
|
953
836
|
#editor {
|
954
837
|
width: 700px;
|
955
|
-
}
|
838
|
+
}
|