fume 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
.DS_Store
|
1
|
+
.DS_Store
|
2
|
+
pkg/*
|
data/VERSION.yml
CHANGED
data/fume.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fume}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Sunteya"]
|
@@ -17,6 +17,9 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.files = [
|
18
18
|
".gitignore",
|
19
19
|
"README",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION.yml",
|
22
|
+
"fume.gemspec",
|
20
23
|
"generators/fume_simple_theme/USAGE",
|
21
24
|
"generators/fume_simple_theme/fume_simple_theme_generator.rb",
|
22
25
|
"generators/fume_simple_theme/templates/images/jquery-ui-1.7.2.ui-darkness/ui-bg_flat_30_cccccc_40x100.png",
|
@@ -36,6 +39,7 @@ Gem::Specification.new do |s|
|
|
36
39
|
"generators/fume_simple_theme/templates/javascripts/jquery-1.3.2.min.js",
|
37
40
|
"generators/fume_simple_theme/templates/javascripts/jquery-ui-1.7.2.full.min.js",
|
38
41
|
"generators/fume_simple_theme/templates/javascripts/jquery-ui-i18n-1.7.2.js",
|
42
|
+
"generators/fume_simple_theme/templates/stylesheets/base.css",
|
39
43
|
"generators/fume_simple_theme/templates/stylesheets/base.less",
|
40
44
|
"generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/ie.css",
|
41
45
|
"generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/plugins/buttons/icons/cross.png",
|
@@ -66,6 +70,7 @@ Gem::Specification.new do |s|
|
|
66
70
|
"generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/print.css",
|
67
71
|
"generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/reset.css",
|
68
72
|
"generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/typography.css",
|
73
|
+
"generators/fume_simple_theme/templates/stylesheets/drastic-dark.css",
|
69
74
|
"generators/fume_simple_theme/templates/stylesheets/drastic-dark.less",
|
70
75
|
"generators/fume_simple_theme/templates/stylesheets/jquery-ui-1.7.2.ui-darkness.css",
|
71
76
|
"init.rb",
|
@@ -0,0 +1,401 @@
|
|
1
|
+
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
|
2
|
+
margin: 0;
|
3
|
+
padding: 0;
|
4
|
+
border: 0;
|
5
|
+
font-weight: inherit;
|
6
|
+
font-style: inherit;
|
7
|
+
font-size: 100%;
|
8
|
+
font-family: inherit;
|
9
|
+
vertical-align: baseline;
|
10
|
+
}
|
11
|
+
body { line-height: 1.5; }
|
12
|
+
table {
|
13
|
+
border-collapse: separate;
|
14
|
+
border-spacing: 0;
|
15
|
+
}
|
16
|
+
caption, th, td {
|
17
|
+
text-align: left;
|
18
|
+
font-weight: normal;
|
19
|
+
}
|
20
|
+
table, td, th { vertical-align: middle; }
|
21
|
+
blockquote:before { content: ""; }
|
22
|
+
blockquote:after { content: ""; }
|
23
|
+
q:before { content: ""; }
|
24
|
+
q:after { content: ""; }
|
25
|
+
blockquote, q { quotes: "" ""; }
|
26
|
+
a img { border: none; }
|
27
|
+
body {
|
28
|
+
font-size: 75%;
|
29
|
+
color: #222222;
|
30
|
+
background: #ffffff;
|
31
|
+
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
32
|
+
}
|
33
|
+
h1, h2, h3, h4, h5, h6 {
|
34
|
+
font-weight: normal;
|
35
|
+
color: #111111;
|
36
|
+
}
|
37
|
+
h1 {
|
38
|
+
font-size: 3em;
|
39
|
+
line-height: 1;
|
40
|
+
margin-bottom: 0.5em;
|
41
|
+
}
|
42
|
+
h2 {
|
43
|
+
font-size: 2em;
|
44
|
+
margin-bottom: 0.75em;
|
45
|
+
}
|
46
|
+
h3 {
|
47
|
+
font-size: 1.5em;
|
48
|
+
line-height: 1;
|
49
|
+
margin-bottom: 1em;
|
50
|
+
}
|
51
|
+
h4 {
|
52
|
+
font-size: 1.2em;
|
53
|
+
line-height: 1.25;
|
54
|
+
margin-bottom: 1.25em;
|
55
|
+
}
|
56
|
+
h5 {
|
57
|
+
font-size: 1em;
|
58
|
+
font-weight: bold;
|
59
|
+
margin-bottom: 1.5em;
|
60
|
+
}
|
61
|
+
h6 {
|
62
|
+
font-size: 1em;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
h1 img { margin: 0; }
|
66
|
+
h2 img { margin: 0; }
|
67
|
+
h3 img { margin: 0; }
|
68
|
+
h4 img { margin: 0; }
|
69
|
+
h5 img { margin: 0; }
|
70
|
+
h6 img { margin: 0; }
|
71
|
+
p { margin: 0 0 1.5em; }
|
72
|
+
p img.left {
|
73
|
+
float: left;
|
74
|
+
margin: 1.5em 1.5em 1.5em 0;
|
75
|
+
padding: 0;
|
76
|
+
}
|
77
|
+
p img.right {
|
78
|
+
float: right;
|
79
|
+
margin: 1.5em 0 1.5em 1.5em;
|
80
|
+
}
|
81
|
+
a:focus { color: #000000; }
|
82
|
+
a:hover { color: #000000; }
|
83
|
+
a {
|
84
|
+
color: #000099;
|
85
|
+
text-decoration: underline;
|
86
|
+
}
|
87
|
+
blockquote {
|
88
|
+
margin: 1.5em;
|
89
|
+
color: #666666;
|
90
|
+
font-style: italic;
|
91
|
+
}
|
92
|
+
strong { font-weight: bold; }
|
93
|
+
em, dfn { font-style: italic; }
|
94
|
+
dfn { font-weight: bold; }
|
95
|
+
sup, sub { line-height: 0; }
|
96
|
+
abbr, acronym { border-bottom: 1px dotted #666666; }
|
97
|
+
address {
|
98
|
+
margin: 0 0 1.5em;
|
99
|
+
font-style: italic;
|
100
|
+
}
|
101
|
+
del { color: #666666; }
|
102
|
+
pre {
|
103
|
+
margin: 1.5em 0;
|
104
|
+
white-space: pre;
|
105
|
+
}
|
106
|
+
pre, code, tt {
|
107
|
+
font: 1em 'andale mono', 'lucida console', monospace;
|
108
|
+
line-height: 1.5;
|
109
|
+
}
|
110
|
+
li ul { margin: 0 1.5em; }
|
111
|
+
li ol { margin: 0 1.5em; }
|
112
|
+
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
|
113
|
+
ul { list-style-type: disc; }
|
114
|
+
ol { list-style-type: decimal; }
|
115
|
+
dl { margin: 0 0 1.5em 0; }
|
116
|
+
dl dt { font-weight: bold; }
|
117
|
+
dd { margin-left: 1.5em; }
|
118
|
+
table {
|
119
|
+
margin-bottom: 1.4em;
|
120
|
+
width: 100%;
|
121
|
+
}
|
122
|
+
th { font-weight: bold; }
|
123
|
+
thead th { background: #c3d9ff; }
|
124
|
+
th, td, caption { padding: 4px 10px 4px 5px; }
|
125
|
+
tr.even td { background: #e5ecf9; }
|
126
|
+
tfoot { font-style: italic; }
|
127
|
+
caption { background: #eeeeee; }
|
128
|
+
.small {
|
129
|
+
font-size: 0.8em;
|
130
|
+
margin-bottom: 1.875em;
|
131
|
+
line-height: 1.875em;
|
132
|
+
}
|
133
|
+
.large {
|
134
|
+
font-size: 1.2em;
|
135
|
+
line-height: 2.5em;
|
136
|
+
margin-bottom: 1.25em;
|
137
|
+
}
|
138
|
+
.hide { display: none; }
|
139
|
+
.quiet { color: #666666; }
|
140
|
+
.loud { color: #000000; }
|
141
|
+
.highlight { background: #ffff00; }
|
142
|
+
.added {
|
143
|
+
background: #006600;
|
144
|
+
color: #ffffff;
|
145
|
+
}
|
146
|
+
.removed {
|
147
|
+
background: #990000;
|
148
|
+
color: #ffffff;
|
149
|
+
}
|
150
|
+
.first {
|
151
|
+
margin-left: 0;
|
152
|
+
padding-left: 0;
|
153
|
+
}
|
154
|
+
.last {
|
155
|
+
margin-right: 0;
|
156
|
+
padding-right: 0;
|
157
|
+
}
|
158
|
+
.top {
|
159
|
+
margin-top: 0;
|
160
|
+
padding-top: 0;
|
161
|
+
}
|
162
|
+
.bottom {
|
163
|
+
margin-bottom: 0;
|
164
|
+
padding-bottom: 0;
|
165
|
+
}
|
166
|
+
thead th { background-color: transparent; }
|
167
|
+
body {
|
168
|
+
line-height: 1;
|
169
|
+
font-size: 80%;
|
170
|
+
}
|
171
|
+
.clear { clear: both; }
|
172
|
+
h1, h2 { margin: 15px 0; }
|
173
|
+
h3, h4 { margin: 10px 0; }
|
174
|
+
hr {
|
175
|
+
height: 1px;
|
176
|
+
border: 0;
|
177
|
+
}
|
178
|
+
p { margin: 15px 0; }
|
179
|
+
#container { min-width: 1050px; }
|
180
|
+
#header, #page { margin: 0 40px; }
|
181
|
+
#header { position: relative; }
|
182
|
+
#header h1 {
|
183
|
+
margin: 0;
|
184
|
+
padding: 10px 0;
|
185
|
+
font-size: 30px;
|
186
|
+
}
|
187
|
+
#header h1 a { text-decoration: none; }
|
188
|
+
.sidebar #main {
|
189
|
+
width: 78%;
|
190
|
+
float: left;
|
191
|
+
}
|
192
|
+
.actions-bar { padding: 10px 1px; }
|
193
|
+
.actions-bar .actions { float: left; }
|
194
|
+
.actions-bar .pagination {
|
195
|
+
float: right;
|
196
|
+
padding: 1px 0;
|
197
|
+
}
|
198
|
+
#sidebar {
|
199
|
+
width: 21%;
|
200
|
+
float: right;
|
201
|
+
}
|
202
|
+
#sidebar h3 {
|
203
|
+
padding: 10px 15px;
|
204
|
+
margin: 0;
|
205
|
+
font-size: 1.2em;
|
206
|
+
}
|
207
|
+
#sidebar .block {
|
208
|
+
margin-bottom: 20px;
|
209
|
+
padding-bottom: 10px;
|
210
|
+
}
|
211
|
+
#sidebar .block .content { padding: 0 15px; }
|
212
|
+
#sidebar .block .sidebar-block { padding: 10px; }
|
213
|
+
#sidebar .notice { padding: 10px; }
|
214
|
+
#sidebar ul.navigation li a:link {
|
215
|
+
display: block;
|
216
|
+
padding: 10px 15px;
|
217
|
+
}
|
218
|
+
#sidebar ul.navigation li a:visited {
|
219
|
+
display: block;
|
220
|
+
padding: 10px 15px;
|
221
|
+
}
|
222
|
+
#page { padding-top: 20px; }
|
223
|
+
#main .block { margin-bottom: 20px; }
|
224
|
+
#main .block .content .inner { padding: 0 15px 15px; }
|
225
|
+
#user-navigation {
|
226
|
+
position: absolute;
|
227
|
+
right: 20px;
|
228
|
+
bottom: 5px;
|
229
|
+
}
|
230
|
+
#main-navigation { width: 100%; }
|
231
|
+
#main-navigation ul li a {
|
232
|
+
font-size: 15px;
|
233
|
+
display: block;
|
234
|
+
padding: 8px 15px;
|
235
|
+
}
|
236
|
+
#user-navigation ul {
|
237
|
+
margin: 0;
|
238
|
+
padding: 0;
|
239
|
+
list-style-type: none;
|
240
|
+
}
|
241
|
+
#main-navigation ul {
|
242
|
+
margin: 0;
|
243
|
+
padding: 0;
|
244
|
+
list-style-type: none;
|
245
|
+
}
|
246
|
+
.secondary-navigation ul {
|
247
|
+
margin: 0;
|
248
|
+
padding: 0;
|
249
|
+
list-style-type: none;
|
250
|
+
}
|
251
|
+
#sidebar ul.navigation {
|
252
|
+
margin: 0;
|
253
|
+
padding: 0;
|
254
|
+
list-style-type: none;
|
255
|
+
}
|
256
|
+
#user-navigation ul li { float: left; }
|
257
|
+
#main-navigation ul li { float: left; }
|
258
|
+
.secondary-navigation ul li { float: left; }
|
259
|
+
#main-navigation ul li { margin-right: 5px; }
|
260
|
+
#user-navigation ul li { padding: 5px 10px; }
|
261
|
+
#main-navigation ul li a:link { text-decoration: none; }
|
262
|
+
#main-navigation ul li a:visited { text-decoration: none; }
|
263
|
+
#main-navigation ul li a:hover { text-decoration: none; }
|
264
|
+
#main-navigation ul li a:active { text-decoration: none; }
|
265
|
+
.secondary-navigation ul li a:link { text-decoration: none; }
|
266
|
+
.secondary-navigation ul li a:visited { text-decoration: none; }
|
267
|
+
.secondary-navigation ul li a:hover { text-decoration: none; }
|
268
|
+
.secondary-navigation ul li a:active { text-decoration: none; }
|
269
|
+
#user-navigation ul li a:link { text-decoration: none; }
|
270
|
+
#user-navigation ul li a:visited { text-decoration: none; }
|
271
|
+
#user-navigation ul li a:hover { text-decoration: none; }
|
272
|
+
#user-navigation ul li a:active { text-decoration: none; }
|
273
|
+
.secondary-navigation {
|
274
|
+
font-size: 1.2em;
|
275
|
+
border-bottom-width: 10px;
|
276
|
+
border-bottom-style: solid;
|
277
|
+
}
|
278
|
+
.secondary-navigation ul li a {
|
279
|
+
display: block;
|
280
|
+
padding: 10px 15px;
|
281
|
+
}
|
282
|
+
.secondary-navigation ul li span {
|
283
|
+
display: block;
|
284
|
+
padding: 10px 15px;
|
285
|
+
}
|
286
|
+
#footer { padding-bottom: 20px; }
|
287
|
+
.pagination a {
|
288
|
+
padding: 2px 5px;
|
289
|
+
margin-right: 5px;
|
290
|
+
display: block;
|
291
|
+
float: left;
|
292
|
+
border-style: solid;
|
293
|
+
border-width: 1px;
|
294
|
+
}
|
295
|
+
.pagination span {
|
296
|
+
padding: 2px 5px;
|
297
|
+
margin-right: 5px;
|
298
|
+
display: block;
|
299
|
+
float: left;
|
300
|
+
border-style: solid;
|
301
|
+
border-width: 1px;
|
302
|
+
}
|
303
|
+
.pagination span.current { font-weight: bold; }
|
304
|
+
.pagination a { text-decoration: none; }
|
305
|
+
.table {
|
306
|
+
width: 100%;
|
307
|
+
border-collapse: collapse;
|
308
|
+
margin-bottom: 15px;
|
309
|
+
}
|
310
|
+
.table th {
|
311
|
+
padding: 10px;
|
312
|
+
font-weight: bold;
|
313
|
+
text-align: left;
|
314
|
+
}
|
315
|
+
.table .checkbox { margin-left: 10px; }
|
316
|
+
.table td { padding: 10px; }
|
317
|
+
.table td form { display: inline; }
|
318
|
+
.table td form div { display: inline; }
|
319
|
+
.table td.last { text-align: right; }
|
320
|
+
input.checkbox {
|
321
|
+
margin: 0;
|
322
|
+
padding: 0;
|
323
|
+
}
|
324
|
+
.form .group { margin-bottom: 15px; }
|
325
|
+
.form div.left {
|
326
|
+
width: 20%;
|
327
|
+
float: left;
|
328
|
+
}
|
329
|
+
.form div.right {
|
330
|
+
width: 75%;
|
331
|
+
float: right;
|
332
|
+
}
|
333
|
+
.form .columns .column { width: 48%; }
|
334
|
+
.form .columns .left { float: left; }
|
335
|
+
.form .columns .right { float: right; }
|
336
|
+
.form label.label {
|
337
|
+
font-size: 1.2em;
|
338
|
+
padding: 1px 0;
|
339
|
+
margin: 0;
|
340
|
+
}
|
341
|
+
.form input.text_field {
|
342
|
+
font-size: 1.2em;
|
343
|
+
padding: 1px 0;
|
344
|
+
margin: 0;
|
345
|
+
}
|
346
|
+
.form textarea.text_area {
|
347
|
+
font-size: 1.2em;
|
348
|
+
padding: 1px 0;
|
349
|
+
margin: 0;
|
350
|
+
}
|
351
|
+
.form label.right { text-align: right; }
|
352
|
+
.form input.checkbox { margin-right: 5px; }
|
353
|
+
.form input.radio { margin-right: 5px; }
|
354
|
+
.form label.checkbox { line-height: 1.5em; }
|
355
|
+
.form label.radio { line-height: 1.5em; }
|
356
|
+
.form label.label {
|
357
|
+
display: block;
|
358
|
+
padding-bottom: 2px;
|
359
|
+
font-weight: bold;
|
360
|
+
}
|
361
|
+
.form div.fieldWithErrors label.label { display: inline; }
|
362
|
+
.form .fieldWithErrors .error { color: red; }
|
363
|
+
.form input.text_field {
|
364
|
+
border-width: 1px;
|
365
|
+
border-style: solid;
|
366
|
+
}
|
367
|
+
.form textarea.text_area {
|
368
|
+
border-width: 1px;
|
369
|
+
border-style: solid;
|
370
|
+
}
|
371
|
+
ul.list {
|
372
|
+
margin: 0;
|
373
|
+
padding: 0;
|
374
|
+
list-style-type: none;
|
375
|
+
}
|
376
|
+
ul.list li {
|
377
|
+
clear: left;
|
378
|
+
padding-bottom: 5px;
|
379
|
+
}
|
380
|
+
ul.list li .left { float: left; }
|
381
|
+
ul.list li .left .avatar {
|
382
|
+
width: 50px;
|
383
|
+
height: 50px;
|
384
|
+
}
|
385
|
+
ul.list li .item { margin-left: 80px; }
|
386
|
+
ul.list li .item .avatar {
|
387
|
+
float: left;
|
388
|
+
margin: 0 5px 5px 0;
|
389
|
+
width: 30px;
|
390
|
+
height: 30px;
|
391
|
+
}
|
392
|
+
#box {
|
393
|
+
width: 500px;
|
394
|
+
margin: 50px auto;
|
395
|
+
}
|
396
|
+
#box .block { margin-bottom: 20px; }
|
397
|
+
#box .block h2 {
|
398
|
+
padding: 10px 15px;
|
399
|
+
margin: 0;
|
400
|
+
}
|
401
|
+
#box .block .content { padding: 10px 20px; }
|
@@ -0,0 +1,385 @@
|
|
1
|
+
#color_schemes { disabled: #888888; }
|
2
|
+
.small {
|
3
|
+
font-size: 11px;
|
4
|
+
font-style: normal;
|
5
|
+
font-weight: normal;
|
6
|
+
text-transform: normal;
|
7
|
+
letter-spacing: normal;
|
8
|
+
line-height: 1.4em;
|
9
|
+
}
|
10
|
+
.gray {
|
11
|
+
color: #999999;
|
12
|
+
font-family: Georgia, serif;
|
13
|
+
font-size: 13px;
|
14
|
+
font-style: italic;
|
15
|
+
font-weight: normal;
|
16
|
+
text-transform: normal;
|
17
|
+
letter-spacing: normal;
|
18
|
+
line-height: 1.6em;
|
19
|
+
}
|
20
|
+
.hightlight {
|
21
|
+
background-color: #ffff88;
|
22
|
+
font-weight: bold;
|
23
|
+
color: #36393d;
|
24
|
+
}
|
25
|
+
a:link { color: #36393d; }
|
26
|
+
a:visited { color: #36393d; }
|
27
|
+
a:hover { color: #36393d; }
|
28
|
+
a:active { color: #36393d; }
|
29
|
+
h1, h2, h3 { color: #36393d; }
|
30
|
+
a { -moz-outline: none; }
|
31
|
+
body {
|
32
|
+
color: #222222;
|
33
|
+
background: #cfcfcf;
|
34
|
+
font-family: helvetica, arial, sans-serif;
|
35
|
+
}
|
36
|
+
hr {
|
37
|
+
background: #f0f0ee;
|
38
|
+
color: #f0f0ee;
|
39
|
+
}
|
40
|
+
#header_wrapper { background: #36393d; }
|
41
|
+
#header h1 {
|
42
|
+
padding: 15px 0;
|
43
|
+
font-size: 28px;
|
44
|
+
font-style: normal;
|
45
|
+
font-weight: bold;
|
46
|
+
text-transform: normal;
|
47
|
+
letter-spacing: -1px;
|
48
|
+
line-height: 1.2em;
|
49
|
+
}
|
50
|
+
#header h1 a { color: #ffffff; }
|
51
|
+
#user-navigation a.logout {
|
52
|
+
background: #cc0000;
|
53
|
+
padding: 1px 4px;
|
54
|
+
-moz-border-radius: 4px;
|
55
|
+
-webkit-border-radius: 3px;
|
56
|
+
}
|
57
|
+
#user-navigation input.logout {
|
58
|
+
background: #cc0000;
|
59
|
+
color: #ffffff;
|
60
|
+
padding: 0;
|
61
|
+
padding-top: 1px;
|
62
|
+
border: 0px solid #999999;
|
63
|
+
-moz-border-radius: 4px;
|
64
|
+
-webkit-border-radius: 3px;
|
65
|
+
cursor: pointer;
|
66
|
+
}
|
67
|
+
#user-navigation ul li {
|
68
|
+
padding: 0px 10px;
|
69
|
+
height: 1.66em;
|
70
|
+
line-height: 1.66em;
|
71
|
+
}
|
72
|
+
#main .block .content {
|
73
|
+
background: #ffffff;
|
74
|
+
padding-top: 1px;
|
75
|
+
}
|
76
|
+
#main .block .content h2 {
|
77
|
+
margin-left: 15px;
|
78
|
+
font-size: 22px;
|
79
|
+
font-style: normal;
|
80
|
+
font-weight: bold;
|
81
|
+
text-transform: normal;
|
82
|
+
letter-spacing: -1px;
|
83
|
+
line-height: 1.2em;
|
84
|
+
}
|
85
|
+
#main .block .content p {
|
86
|
+
font-size: 13px;
|
87
|
+
font-style: normal;
|
88
|
+
font-weight: normal;
|
89
|
+
text-transform: normal;
|
90
|
+
letter-spacing: normal;
|
91
|
+
line-height: 1.45em;
|
92
|
+
}
|
93
|
+
#sidebar .block { background: #ffffff; }
|
94
|
+
#sidebar .block h4 { font-weight: bold; }
|
95
|
+
#sidebar .notice { background: #e6eefc; }
|
96
|
+
#sidebar .notice h4 { color: #0b43a8; }
|
97
|
+
#sidebar h3 {
|
98
|
+
background: #36393d;
|
99
|
+
color: #ffffff;
|
100
|
+
border-bottom: 5px solid #1a1a1a;
|
101
|
+
}
|
102
|
+
#sidebar ul li a:link {
|
103
|
+
background: #ffffff;
|
104
|
+
border-bottom: 1px solid #f0f0ee;
|
105
|
+
text-decoration: none;
|
106
|
+
}
|
107
|
+
#sidebar ul li a:visited {
|
108
|
+
background: #ffffff;
|
109
|
+
border-bottom: 1px solid #f0f0ee;
|
110
|
+
text-decoration: none;
|
111
|
+
}
|
112
|
+
#sidebar ul li a:hover {
|
113
|
+
background: #666666;
|
114
|
+
color: #ffffff;
|
115
|
+
}
|
116
|
+
#sidebar ul li a:active {
|
117
|
+
background: #666666;
|
118
|
+
color: #ffffff;
|
119
|
+
}
|
120
|
+
#main-navigation ul li { padding-left: 15px; }
|
121
|
+
#main-navigation ul li a { padding: 10px 0px; }
|
122
|
+
#main-navigation ul li.active {
|
123
|
+
padding: 0;
|
124
|
+
margin-left: 15px;
|
125
|
+
}
|
126
|
+
#main-navigation ul li.active a { padding: 10px 15px; }
|
127
|
+
#user-navigation ul li a { color: #ffffff; }
|
128
|
+
#user-navigation ul li a:link { color: #ffffff; }
|
129
|
+
#user-navigation ul li a:visited { color: #ffffff; }
|
130
|
+
#user-navigation ul li a:hover { color: #ffffff; }
|
131
|
+
#user-navigation ul li a:active { color: #ffffff; }
|
132
|
+
#main-navigation ul li a { color: #ffffff; }
|
133
|
+
#main-navigation ul li a:link { color: #ffffff; }
|
134
|
+
#main-navigation ul li a:visited { color: #ffffff; }
|
135
|
+
#main-navigation ul li a:hover { color: #ffffff; }
|
136
|
+
#main-navigation ul li a:active { color: #ffffff; }
|
137
|
+
.secondary-navigation ul li a { color: #ffffff; }
|
138
|
+
.secondary-navigation ul li a:link { color: #ffffff; }
|
139
|
+
.secondary-navigation ul li a:visited { color: #ffffff; }
|
140
|
+
.secondary-navigation ul li a:hover { color: #ffffff; }
|
141
|
+
.secondary-navigation ul li a:active { color: #ffffff; }
|
142
|
+
#main-navigation { background: #1a1a1a; }
|
143
|
+
#main-navigation ul li {
|
144
|
+
background: #1a1a1a;
|
145
|
+
margin-right: 0;
|
146
|
+
}
|
147
|
+
#main-navigation ul li.active { background: #f0f0ee; }
|
148
|
+
#main-navigation ul li.active a { color: #1a1a1a; }
|
149
|
+
#main-navigation ul li.active a:link { color: #1a1a1a; }
|
150
|
+
#main-navigation ul li.active a:visited { color: #1a1a1a; }
|
151
|
+
#main-navigation ul li.active a:hover { color: #1a1a1a; }
|
152
|
+
#main-navigation ul li.active a:active { color: #1a1a1a; }
|
153
|
+
.secondary-navigation {
|
154
|
+
background: #36393d;
|
155
|
+
border-bottom-color: #1a1a1a;
|
156
|
+
border-bottom-width: 5px;
|
157
|
+
}
|
158
|
+
.secondary-navigation li a:hover { background: #666666; }
|
159
|
+
.secondary-navigation ul li.active { background-color: #1a1a1a; }
|
160
|
+
.secondary-navigation ul li.active a:hover { background-color: #1a1a1a; }
|
161
|
+
#footer .block {
|
162
|
+
color: #ffffff;
|
163
|
+
background: #1a1a1a;
|
164
|
+
}
|
165
|
+
#footer .block p {
|
166
|
+
margin: 0;
|
167
|
+
padding: 10px;
|
168
|
+
}
|
169
|
+
.pagination a {
|
170
|
+
background: #cfcfcf;
|
171
|
+
-moz-border-radius: 3px;
|
172
|
+
border: 1px solid #c1c1c1;
|
173
|
+
}
|
174
|
+
.pagination span {
|
175
|
+
background: #cfcfcf;
|
176
|
+
-moz-border-radius: 3px;
|
177
|
+
border: 1px solid #c1c1c1;
|
178
|
+
}
|
179
|
+
.pagination span.disabled { color: #color_schemes[disabled]; }
|
180
|
+
.pagination span.current {
|
181
|
+
background: #36393d;
|
182
|
+
color: #ffffff;
|
183
|
+
border: 1px solid #36393d;
|
184
|
+
}
|
185
|
+
.pagination a { color: #1a1a1a; }
|
186
|
+
.pagination a:hover { border: 1px solid #666666; }
|
187
|
+
.table th {
|
188
|
+
background: #36393d;
|
189
|
+
color: #ffffff;
|
190
|
+
}
|
191
|
+
.table th a { color: #ffffff; }
|
192
|
+
.table td { border-bottom: 1px solid #f0f0ee; }
|
193
|
+
.table tr.even { background: #ebebeb; }
|
194
|
+
.form label.label { color: #666666; }
|
195
|
+
.form input.text_field { border: 1px solid #cfcfcf; }
|
196
|
+
.form textarea.text_area { border: 1px solid #cfcfcf; }
|
197
|
+
.form input.button {
|
198
|
+
background: #cfcfcf;
|
199
|
+
-moz-border-radius: 5px;
|
200
|
+
border: 1px solid #c1c1c1;
|
201
|
+
padding: 2px 5px;
|
202
|
+
cursor: pointer;
|
203
|
+
font-weight: bold;
|
204
|
+
}
|
205
|
+
.form input.button:hover { border: 1px solid #666666; }
|
206
|
+
.form input.button[disabled] { color: #color_schemes[disabled]; }
|
207
|
+
.form .description {
|
208
|
+
font-style: italic;
|
209
|
+
color: #8c8c8c;
|
210
|
+
font-size: 0.9em;
|
211
|
+
}
|
212
|
+
.form .navform a { color: #cc0000; }
|
213
|
+
.flash .message {
|
214
|
+
-moz-border-radius: 3px;
|
215
|
+
-webkit-border-radius: 3px;
|
216
|
+
text-align: center;
|
217
|
+
margin: 0 auto 15px;
|
218
|
+
}
|
219
|
+
.flash .message p { margin: 8px; }
|
220
|
+
.flash .error {
|
221
|
+
border: 1px solid #ffbbbb;
|
222
|
+
background-color: #ffdddd;
|
223
|
+
}
|
224
|
+
.flash .warning {
|
225
|
+
border: 1px solid #fffaaa;
|
226
|
+
background-color: #ffffcc;
|
227
|
+
}
|
228
|
+
.flash .notice {
|
229
|
+
border: 1px solid #1fdf00;
|
230
|
+
background-color: #bbffb6;
|
231
|
+
}
|
232
|
+
ul.list li {
|
233
|
+
border-bottom-color: #f0f0ee;
|
234
|
+
border-bottom-width: 1px;
|
235
|
+
border-bottom-style: solid;
|
236
|
+
}
|
237
|
+
ul.list li .item .avatar {
|
238
|
+
border-color: #f0f0ee;
|
239
|
+
border-width: 1px;
|
240
|
+
border-style: solid;
|
241
|
+
padding: 2px;
|
242
|
+
}
|
243
|
+
#box .block { background: #ffffff; }
|
244
|
+
#box .block h2 {
|
245
|
+
background: #36393d;
|
246
|
+
color: #ffffff;
|
247
|
+
}
|
248
|
+
#main, #main-navigation {
|
249
|
+
-moz-border-radius-topleft: 4px;
|
250
|
+
-webkit-border-top-left-radius: 4px;
|
251
|
+
-moz-border-radius-topright: 4px;
|
252
|
+
-webkit-border-top-right-radius: 4px;
|
253
|
+
}
|
254
|
+
#main-navigation li {
|
255
|
+
-moz-border-radius-topleft: 4px;
|
256
|
+
-webkit-border-top-left-radius: 4px;
|
257
|
+
-moz-border-radius-topright: 4px;
|
258
|
+
-webkit-border-top-right-radius: 4px;
|
259
|
+
}
|
260
|
+
.secondary-navigation {
|
261
|
+
-moz-border-radius-topleft: 4px;
|
262
|
+
-webkit-border-top-left-radius: 4px;
|
263
|
+
-moz-border-radius-topright: 4px;
|
264
|
+
-webkit-border-top-right-radius: 4px;
|
265
|
+
}
|
266
|
+
#main .block {
|
267
|
+
-moz-border-radius-topleft: 4px;
|
268
|
+
-webkit-border-top-left-radius: 4px;
|
269
|
+
-moz-border-radius-topright: 4px;
|
270
|
+
-webkit-border-top-right-radius: 4px;
|
271
|
+
}
|
272
|
+
#sidebar .block {
|
273
|
+
-moz-border-radius-topleft: 4px;
|
274
|
+
-webkit-border-top-left-radius: 4px;
|
275
|
+
-moz-border-radius-topright: 4px;
|
276
|
+
-webkit-border-top-right-radius: 4px;
|
277
|
+
}
|
278
|
+
#sidebar h3 {
|
279
|
+
-moz-border-radius-topleft: 4px;
|
280
|
+
-webkit-border-top-left-radius: 4px;
|
281
|
+
-moz-border-radius-topright: 4px;
|
282
|
+
-webkit-border-top-right-radius: 4px;
|
283
|
+
}
|
284
|
+
ul.list li {
|
285
|
+
-moz-border-radius-topleft: 4px;
|
286
|
+
-webkit-border-top-left-radius: 4px;
|
287
|
+
-moz-border-radius-topright: 4px;
|
288
|
+
-webkit-border-top-right-radius: 4px;
|
289
|
+
}
|
290
|
+
#footer .block {
|
291
|
+
-moz-border-radius-topleft: 4px;
|
292
|
+
-webkit-border-top-left-radius: 4px;
|
293
|
+
-moz-border-radius-topright: 4px;
|
294
|
+
-webkit-border-top-right-radius: 4px;
|
295
|
+
}
|
296
|
+
.form input.button {
|
297
|
+
-moz-border-radius-topleft: 4px;
|
298
|
+
-webkit-border-top-left-radius: 4px;
|
299
|
+
-moz-border-radius-topright: 4px;
|
300
|
+
-webkit-border-top-right-radius: 4px;
|
301
|
+
}
|
302
|
+
#box .block {
|
303
|
+
-moz-border-radius-topleft: 4px;
|
304
|
+
-webkit-border-top-left-radius: 4px;
|
305
|
+
-moz-border-radius-topright: 4px;
|
306
|
+
-webkit-border-top-right-radius: 4px;
|
307
|
+
}
|
308
|
+
#box .block h2 {
|
309
|
+
-moz-border-radius-topleft: 4px;
|
310
|
+
-webkit-border-top-left-radius: 4px;
|
311
|
+
-moz-border-radius-topright: 4px;
|
312
|
+
-webkit-border-top-right-radius: 4px;
|
313
|
+
}
|
314
|
+
.secondary-navigation li.first a {
|
315
|
+
-moz-border-radius-topleft: 4px;
|
316
|
+
-webkit-border-top-left-radius: 4px;
|
317
|
+
}
|
318
|
+
.secondary-navigation ul li.first {
|
319
|
+
-moz-border-radius-topleft: 4px;
|
320
|
+
-webkit-border-top-left-radius: 4px;
|
321
|
+
}
|
322
|
+
.table th.first {
|
323
|
+
-moz-border-radius-topleft: 4px;
|
324
|
+
-webkit-border-top-left-radius: 4px;
|
325
|
+
}
|
326
|
+
.table th.first {
|
327
|
+
-moz-border-radius-topleft: 4px;
|
328
|
+
-webkit-border-top-left-radius: 4px;
|
329
|
+
}
|
330
|
+
.table th.last {
|
331
|
+
-moz-border-radius-topright: 4px;
|
332
|
+
-webkit-border-top-right-radius: 4px;
|
333
|
+
}
|
334
|
+
.secondary-navigation ul li.first {
|
335
|
+
-moz-border-radius-topleft: 4px;
|
336
|
+
-webkit-border-top-left-radius: 4px;
|
337
|
+
}
|
338
|
+
#sidebar {
|
339
|
+
-moz-border-radius-bottomleft: 4px;
|
340
|
+
-webkit-border-bottom-left-radius: 4px;
|
341
|
+
-moz-border-radius-bottomright: 4px;
|
342
|
+
-webkit-border-bottom-right-radius: 4px;
|
343
|
+
}
|
344
|
+
#sidebar .block {
|
345
|
+
-moz-border-radius-bottomleft: 4px;
|
346
|
+
-webkit-border-bottom-left-radius: 4px;
|
347
|
+
-moz-border-radius-bottomright: 4px;
|
348
|
+
-webkit-border-bottom-right-radius: 4px;
|
349
|
+
}
|
350
|
+
#main .block {
|
351
|
+
-moz-border-radius-bottomleft: 4px;
|
352
|
+
-webkit-border-bottom-left-radius: 4px;
|
353
|
+
-moz-border-radius-bottomright: 4px;
|
354
|
+
-webkit-border-bottom-right-radius: 4px;
|
355
|
+
}
|
356
|
+
#sidebar ul.navigation {
|
357
|
+
-moz-border-radius-bottomleft: 4px;
|
358
|
+
-webkit-border-bottom-left-radius: 4px;
|
359
|
+
-moz-border-radius-bottomright: 4px;
|
360
|
+
-webkit-border-bottom-right-radius: 4px;
|
361
|
+
}
|
362
|
+
ul.list li {
|
363
|
+
-moz-border-radius-bottomleft: 4px;
|
364
|
+
-webkit-border-bottom-left-radius: 4px;
|
365
|
+
-moz-border-radius-bottomright: 4px;
|
366
|
+
-webkit-border-bottom-right-radius: 4px;
|
367
|
+
}
|
368
|
+
#footer .block {
|
369
|
+
-moz-border-radius-bottomleft: 4px;
|
370
|
+
-webkit-border-bottom-left-radius: 4px;
|
371
|
+
-moz-border-radius-bottomright: 4px;
|
372
|
+
-webkit-border-bottom-right-radius: 4px;
|
373
|
+
}
|
374
|
+
.form input.button {
|
375
|
+
-moz-border-radius-bottomleft: 4px;
|
376
|
+
-webkit-border-bottom-left-radius: 4px;
|
377
|
+
-moz-border-radius-bottomright: 4px;
|
378
|
+
-webkit-border-bottom-right-radius: 4px;
|
379
|
+
}
|
380
|
+
#box .block {
|
381
|
+
-moz-border-radius-bottomleft: 4px;
|
382
|
+
-webkit-border-bottom-left-radius: 4px;
|
383
|
+
-moz-border-radius-bottomright: 4px;
|
384
|
+
-webkit-border-bottom-right-radius: 4px;
|
385
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fume
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sunteya
|
@@ -55,6 +55,7 @@ files:
|
|
55
55
|
- generators/fume_simple_theme/templates/javascripts/jquery-1.3.2.min.js
|
56
56
|
- generators/fume_simple_theme/templates/javascripts/jquery-ui-1.7.2.full.min.js
|
57
57
|
- generators/fume_simple_theme/templates/javascripts/jquery-ui-i18n-1.7.2.js
|
58
|
+
- generators/fume_simple_theme/templates/stylesheets/base.css
|
58
59
|
- generators/fume_simple_theme/templates/stylesheets/base.less
|
59
60
|
- generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/ie.css
|
60
61
|
- generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/plugins/buttons/icons/cross.png
|
@@ -85,6 +86,7 @@ files:
|
|
85
86
|
- generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/print.css
|
86
87
|
- generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/reset.css
|
87
88
|
- generators/fume_simple_theme/templates/stylesheets/blueprint-0.9.1/src/typography.css
|
89
|
+
- generators/fume_simple_theme/templates/stylesheets/drastic-dark.css
|
88
90
|
- generators/fume_simple_theme/templates/stylesheets/drastic-dark.less
|
89
91
|
- generators/fume_simple_theme/templates/stylesheets/jquery-ui-1.7.2.ui-darkness.css
|
90
92
|
- init.rb
|