web-app-theme 0.6.3 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. data/VERSION +1 -1
  2. data/index.html +1 -0
  3. data/javascripts/jquery.localscroll.js +103 -103
  4. data/javascripts/jquery.scrollTo.js +149 -149
  5. data/stylesheets/themes/activo/images/arrow.png +0 -0
  6. data/stylesheets/themes/activo/images/boxbar-background.png +0 -0
  7. data/stylesheets/themes/activo/images/button-background-active.png +0 -0
  8. data/stylesheets/themes/activo/images/button-background.png +0 -0
  9. data/stylesheets/themes/{default → activo}/images/menubar-background.png +0 -0
  10. data/stylesheets/themes/activo/style.css +462 -0
  11. data/stylesheets/themes/default/fonts/museo700-regular-webfont.eot +0 -0
  12. data/stylesheets/themes/default/fonts/museo700-regular-webfont.svg +242 -0
  13. data/stylesheets/themes/default/fonts/museo700-regular-webfont.ttf +0 -0
  14. data/stylesheets/themes/default/fonts/museo700-regular-webfont.woff +0 -0
  15. data/stylesheets/themes/default/fonts/museosans_500-webfont.eot +0 -0
  16. data/stylesheets/themes/default/fonts/museosans_500-webfont.svg +240 -0
  17. data/stylesheets/themes/default/fonts/museosans_500-webfont.ttf +0 -0
  18. data/stylesheets/themes/default/fonts/museosans_500-webfont.woff +0 -0
  19. data/stylesheets/themes/default/fonts/museosans_500_italic-webfont.eot +0 -0
  20. data/stylesheets/themes/default/fonts/museosans_500_italic-webfont.svg +240 -0
  21. data/stylesheets/themes/default/fonts/museosans_500_italic-webfont.ttf +0 -0
  22. data/stylesheets/themes/default/fonts/museosans_500_italic-webfont.woff +0 -0
  23. data/stylesheets/themes/default/images/arrow.png +0 -0
  24. data/stylesheets/themes/default/images/bgd.jpg +0 -0
  25. data/stylesheets/themes/default/images/boxbar-background.png +0 -0
  26. data/stylesheets/themes/default/images/button-background-active.png +0 -0
  27. data/stylesheets/themes/default/images/button-background.png +0 -0
  28. data/stylesheets/themes/default/images/messages/error.png +0 -0
  29. data/stylesheets/themes/default/images/messages/notice.png +0 -0
  30. data/stylesheets/themes/default/images/messages/warning.png +0 -0
  31. data/stylesheets/themes/default/style.css +299 -298
  32. data/web-app-theme.gemspec +25 -5
  33. metadata +26 -13
@@ -0,0 +1,462 @@
1
+ /*
2
+ activo
3
+ by David Francisco (dmfrancisc[at]gmail.com)
4
+
5
+ based on "Drastic Dark" by Juan Maria Martinez Arce (juan[at]insignia4u.com)
6
+ */
7
+
8
+ .small {
9
+ font-size: 11px;
10
+ font-style: normal;
11
+ font-weight: normal;
12
+ text-transform: none;
13
+ letter-spacing: normal;
14
+ line-height: 1.4em;
15
+ }
16
+
17
+ .gray {
18
+ color:#999999;
19
+ font-family: Georgia, serif;
20
+ font-size: 13px;
21
+ font-style: italic;
22
+ font-weight: normal;
23
+ text-transform: none;
24
+ letter-spacing: normal;
25
+ line-height: 1.6em;
26
+ }
27
+
28
+ .hightlight {
29
+ background-color: #ffff88;
30
+ font-weight: bold;
31
+ color: #36393d;
32
+ }
33
+
34
+ a:link, a:visited, a:hover, a:active, h1, h2, h3 { color: #111; }
35
+ a { -moz-outline: none; }
36
+
37
+ body {
38
+ color: #111;
39
+ background: #E5E5E5;
40
+ font-family: helvetica, arial, sans-serif;
41
+ }
42
+
43
+ hr {
44
+ background: #e2e2e2;
45
+ color: #e2e2e2;
46
+ }
47
+
48
+ #header {
49
+ background: #002134;
50
+ }
51
+
52
+ #header h1 {
53
+ padding: 15px 0;
54
+ font-size: 32px;
55
+ font-style: normal;
56
+ font-weight: bold;
57
+ text-transform: none;
58
+ letter-spacing: -1px;
59
+ line-height: 1.2em;
60
+ color: #fff;
61
+ text-shadow: #000 1px 1px 2px;
62
+ }
63
+
64
+ #header h1 a:link, #header h1 a:active, #header h1 a:hover, #header h1 a:visited {
65
+ color: #fff;
66
+ }
67
+
68
+ #user-navigation {
69
+ top: auto;
70
+ bottom: 5px;
71
+ right: 25px;
72
+ }
73
+
74
+ #user-navigation a.logout {
75
+ background: #ccc;
76
+ padding: 1px 4px;
77
+ }
78
+
79
+ #main {
80
+ width: 71%;
81
+ }
82
+
83
+ #main .block {
84
+ padding-top: 0px;
85
+ background: #fff;
86
+
87
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
88
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
89
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
90
+ }
91
+
92
+ #main .block .content {
93
+ padding-top: 1px;
94
+ }
95
+
96
+ #main .block .content h2 {
97
+ margin-left: 15px;
98
+ font-size: 22px;
99
+ font-style: normal;
100
+ font-weight: bold;
101
+ text-transform: none;
102
+ letter-spacing: -1px;
103
+ line-height: 1.2em;
104
+ }
105
+
106
+ #main .block .content p {
107
+ font-size: 13px;
108
+ font-style: normal;
109
+ font-weight: normal;
110
+ text-transform: none;
111
+ letter-spacing: normal;
112
+ line-height: 1.45em;
113
+ }
114
+
115
+ #sidebar .block h4 {
116
+ font-weight: bold;
117
+ }
118
+
119
+ #sidebar .notice {
120
+ background: #fff;
121
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
122
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
123
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
124
+ }
125
+
126
+ #sidebar h3 {
127
+ color: #111;
128
+ border-bottom: 1px solid #c0c0c0;
129
+ }
130
+
131
+ #main-navigation ul li {
132
+ padding-left: 15px;
133
+ }
134
+
135
+ #main-navigation ul li a {
136
+ padding: 8px 0;
137
+ }
138
+
139
+ #main-navigation ul li.active {
140
+ padding: 0;
141
+ margin-left: 15px;
142
+ }
143
+
144
+ #main-navigation ul li.active {
145
+ background: #E5E5E5;
146
+ margin-left: 15px;
147
+ }
148
+
149
+ #main-navigation ul li.active a {
150
+ padding: 8px 15px;
151
+ }
152
+
153
+ #sidebar ul li {
154
+ background-position: 15px 11px;
155
+ background-repeat: no-repeat;
156
+ background-image: url("images/arrow.png");
157
+ border-bottom: 1px solid #e2e2e2;
158
+ }
159
+
160
+ #sidebar ul li a {
161
+ text-decoration: none;
162
+ margin-left: 20px;
163
+ }
164
+
165
+ #sidebar ul li a:link, #sidebar ul li a:visited {
166
+ text-decoration: none;
167
+ }
168
+
169
+ #main-navigation {
170
+ background-color: #f4f4f4;
171
+ background-image: url("images/menubar-background.png");
172
+ background-repeat: repeat-x;
173
+ }
174
+
175
+ #main-navigation ul li {
176
+ margin-right: 0;
177
+ padding-left: 15px;
178
+ padding-right: 5px;
179
+ }
180
+
181
+ #main-navigation ul li a:link, #main-navigation ul li a:visited, #main-navigation ul li a:hover, #main-navigation ul li a:active {
182
+ text-decoration: none;
183
+ color: #111;
184
+ }
185
+
186
+ .secondary-navigation ul li a:link, .secondary-navigation ul li a:visited, .secondary-navigation ul li a:hover, .secondary-navigation ul li a:active,
187
+ #user-navigation ul li a:link, #user-navigation ul li a:visited, #user-navigation ul li a:hover, #user-navigation ul li a:active {
188
+ text-decoration: none;
189
+ color: #111;
190
+ }
191
+
192
+ .secondary-navigation {
193
+ background-color: #f2f1ee;
194
+ border-bottom: none;
195
+ border-bottom-width: 5px;
196
+ background-image: url("images/boxbar-background.png");
197
+ }
198
+
199
+ .secondary-navigation ul li.active, .secondary-navigation ul li.active a:hover {
200
+ background-color: #fff;
201
+ }
202
+
203
+ #footer .block {
204
+ text-align: center;
205
+ color: #111;
206
+ background: #fff;
207
+
208
+ -webkit-box-shadow: none;
209
+ -moz-box-shadow: none;
210
+ box-shadow: none;
211
+ }
212
+
213
+ #footer .block p {
214
+ margin: 0;
215
+ padding: 4px;
216
+ }
217
+
218
+ /* pagination */
219
+
220
+ .pagination a, .pagination span {
221
+ background-color: #f4f4f4;
222
+ background-image: url("images/button-background.png");
223
+ color: #111;
224
+ text-align: center;
225
+ min-width: 15px;
226
+ margin-right: 5px;
227
+ padding: 6px;
228
+ border: 1px solid #c3c4ba;
229
+ }
230
+
231
+ .pagination em {
232
+ background: #002134;
233
+ color: #fff;
234
+ border: 1px solid #002134;
235
+ }
236
+
237
+ .pagination a {
238
+ color: #1a1a1a;
239
+ }
240
+
241
+ .pagination a:hover {
242
+ border: 1px solid #818171;
243
+ -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
244
+ -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
245
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
246
+ }
247
+
248
+ .pagination a:active {
249
+ background-image: url("images/button-background-active.png");
250
+ outline: none;
251
+ }
252
+
253
+ /* tables */
254
+
255
+ .table th {
256
+ background: #eaeaea;
257
+ color: #222;
258
+ font-weight: normal;
259
+ }
260
+
261
+ .table td {
262
+ border-bottom: 1px solid #eaeaea;
263
+ }
264
+
265
+ .table tr.even {
266
+ background: #f8f8f8;
267
+ }
268
+
269
+ /* forms */
270
+
271
+ .form label.label {
272
+ color: #666666;
273
+ }
274
+
275
+ .form input.text_field, .form textarea.text_area {
276
+ width: 100%;
277
+ border: 1px solid #e2e2e2;
278
+ }
279
+
280
+ .form input:hover, .form textarea:hover {
281
+ -webkit-box-shadow: rgba(0,0,0,0.3) 0 0 3px;
282
+ -moz-box-shadow: rgba(0,0,0,0.3) 0 0 3px;
283
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
284
+ border: 1px solid #a2a294;
285
+ }
286
+
287
+ .form input:focus, .form textarea:focus {
288
+ border: 1px solid #a2a294;
289
+ }
290
+
291
+ .form input.button {
292
+ background: #e2e2e2;
293
+ border: 1px solid #c1c1c1;
294
+ padding: 2px 5px;
295
+ cursor: pointer;
296
+ color: #111;
297
+ font-weight: bold;
298
+ font-size: 11px;
299
+ }
300
+
301
+ .form input.button:hover {
302
+ border: 1px solid #666;
303
+ }
304
+
305
+ .form .description {
306
+ font-style: italic;
307
+ color: #8C8C8C;
308
+ font-size: .9em;
309
+ }
310
+
311
+ .form .navform a {
312
+ color: #cc0000;
313
+ }
314
+
315
+ /* buttons */
316
+
317
+ a.button, button.button {
318
+ background-color: #f4f4f4;
319
+ background-image: url("images/button-background.png");
320
+ border: 1px solid #c3c4ba;
321
+ font-family: helvetica, arial, sans-serif;
322
+ font-weight: normal;
323
+ }
324
+
325
+ a.button:link, a.button:visited, a.button:hover, a.button:active, button.button:link, button.button:visited, button.button:hover, button.button:active {
326
+ font-weight: normal;
327
+ background-color: #f4f4f4;
328
+ }
329
+
330
+ a.button:hover, button.button:hover {
331
+ background-color: #eee;
332
+ border: 1px solid #818171;
333
+ -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
334
+ -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
335
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
336
+ }
337
+
338
+ a.button:active, button.button:active {
339
+ outline: none;
340
+ background-color: #ddd;
341
+ background-image: url("images/button-background-active.png");
342
+ }
343
+
344
+ /* flash-messages */
345
+ .flash .message {
346
+ text-align:center;
347
+ margin: 0 auto 15px;
348
+ }
349
+
350
+ .flash .message p {
351
+ margin:8px;
352
+ }
353
+ .flash .error {
354
+ border: 1px solid #ffbbbb;
355
+ background-color: #ffdddd;
356
+ }
357
+ .flash .warning {
358
+ border: 1px solid #ffff88;
359
+ background-color: #ffffcc;
360
+ }
361
+ .flash .notice {
362
+ border: 1px solid #1fdf00;
363
+ background-color: #bbffb6;
364
+ }
365
+
366
+ /* lists */
367
+
368
+ ul.list li {
369
+ border-bottom-color: #e2e2e2;
370
+ border-bottom-width: 1px;
371
+ border-bottom-style: solid;
372
+ }
373
+
374
+ ul.list li .item .avatar {
375
+ border-color: #e2e2e2;
376
+ border-width: 1px;
377
+ border-style: solid;
378
+ padding: 2px;
379
+ }
380
+
381
+ /* box */
382
+
383
+ #box .block {
384
+ background: #fff;
385
+
386
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
387
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
388
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
389
+ }
390
+
391
+ #box .block h2 {
392
+ background: #002134;
393
+ color: #fff;
394
+ }
395
+
396
+
397
+ /* rounded borders */
398
+
399
+ #main, #main-navigation, #main-navigation li, .secondary-navigation, #main .block, #sidebar .block, #sidebar h3, ul.list li,
400
+ #footer .block, .form input.button, #box .block, #box .block h2 {
401
+ -moz-border-radius-topleft: 9px;
402
+ -webkit-border-top-left-radius: 9px;
403
+ -moz-border-radius-topright: 9px;
404
+ -webkit-border-top-right-radius: 9px;
405
+ }
406
+
407
+ .secondary-navigation li.first a, .secondary-navigation ul li.first {
408
+ -moz-border-radius-topleft: 9px;
409
+ -webkit-border-top-left-radius: 9px;
410
+ }
411
+
412
+ .secondary-navigation ul li.first {
413
+ -moz-border-radius-topleft: 9px;
414
+ -webkit-border-top-left-radius: 9px;
415
+ }
416
+
417
+ #sidebar, #sidebar .block, #main .block, #sidebar ul.navigation, ul.list li, #footer .block, .form input.button, #box .block {
418
+ -moz-border-radius-bottomleft: 9px;
419
+ -webkit-border-bottom-left-radius: 9px;
420
+ -moz-border-radius-bottomright: 9px;
421
+ -webkit-border-bottom-right-radius: 9px;
422
+ }
423
+
424
+ #main .block {
425
+ -moz-border-radius: 9px;
426
+ -webkit-border-radius: 9px;
427
+ border-radius: 9px;
428
+ }
429
+
430
+ #main-navigation, .secondary-navigation {
431
+ -moz-border-radius-topleft: 9px;
432
+ -webkit-border-top-left-radius: 9px;
433
+ border-top-left-radius: 9px;
434
+
435
+ -moz-border-radius-topright: 9px;
436
+ -webkit-border-top-right-radius: 9px;
437
+ border-top-right-radius: 9px;
438
+ }
439
+
440
+ a.button, button.button, .pagination a, .pagination span {
441
+ -moz-border-radius: 2px;
442
+ -webkit-border-radius: 2px;
443
+ border-radius: 2px;
444
+ }
445
+
446
+ .flash .message {
447
+ -moz-border-radius: 6px;
448
+ -webkit-border-radius: 6px;
449
+ border-radius: 6px;
450
+ }
451
+
452
+ .form input.button {
453
+ -moz-border-radius: 5px;
454
+ -webkit-border-radius: 5px;
455
+ border-radius: 5px;
456
+ }
457
+
458
+ #user-navigation a.logout {
459
+ -moz-border-radius: 4px;
460
+ -webkit-border-radius: 4px;
461
+ border-radius: 4px;
462
+ }