web-app-theme-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/LICENSE +21 -0
  2. data/README.rdoc +86 -0
  3. data/lib/generators/web_app_theme.rb +105 -0
  4. data/lib/generators/web_app_theme/controller/controller_generator.rb +21 -0
  5. data/lib/generators/web_app_theme/controller/templates/view.html.erb +2 -0
  6. data/lib/generators/web_app_theme/controller/templates/view.html.haml +2 -0
  7. data/lib/generators/web_app_theme/layout/USAGE +36 -0
  8. data/lib/generators/web_app_theme/layout/layout_generator.rb +76 -0
  9. data/lib/generators/web_app_theme/layout/templates/config/locales/de_de.yml +15 -0
  10. data/lib/generators/web_app_theme/layout/templates/config/locales/pt_br.yml +12 -0
  11. data/lib/generators/web_app_theme/layout/templates/images/avatar.png +0 -0
  12. data/lib/generators/web_app_theme/layout/templates/images/icons/application_edit.png +0 -0
  13. data/lib/generators/web_app_theme/layout/templates/images/icons/cross.png +0 -0
  14. data/lib/generators/web_app_theme/layout/templates/images/icons/key.png +0 -0
  15. data/lib/generators/web_app_theme/layout/templates/images/icons/tick.png +0 -0
  16. data/lib/generators/web_app_theme/layout/templates/javascripts/jquery-1.3.min.js +19 -0
  17. data/lib/generators/web_app_theme/layout/templates/javascripts/jquery.localscroll.js +104 -0
  18. data/lib/generators/web_app_theme/layout/templates/javascripts/jquery.scrollTo.js +150 -0
  19. data/lib/generators/web_app_theme/layout/templates/stylesheets/base.css +397 -0
  20. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/amro/style.css +357 -0
  21. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/bec-green/style.css +290 -0
  22. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/bec/style.css +301 -0
  23. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/blue/style.css +280 -0
  24. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/default/style.css +274 -0
  25. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/djime-cerulean/style.css +298 -0
  26. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/drastic-dark/style.css +373 -0
  27. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/kathleene/style.css +272 -0
  28. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/olive/style.css +338 -0
  29. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/orange/style.css +263 -0
  30. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/reidb-greenish/style.css +301 -0
  31. data/lib/generators/web_app_theme/layout/templates/stylesheets/themes/warehouse/style.css +391 -0
  32. data/lib/generators/web_app_theme/layout/templates/view_layout_administration.html.erb +47 -0
  33. data/lib/generators/web_app_theme/layout/templates/view_layout_administration.html.haml +32 -0
  34. data/lib/generators/web_app_theme/layout/templates/view_layout_sign.html.erb +17 -0
  35. data/lib/generators/web_app_theme/layout/templates/view_layout_sign.html.haml +12 -0
  36. data/lib/generators/web_app_theme/layout/templates/web_app_theme_override.css +1 -0
  37. data/lib/generators/web_app_theme/mailer/mailer_generator.rb +20 -0
  38. data/lib/generators/web_app_theme/mailer/templates/view.text.erb +3 -0
  39. data/lib/generators/web_app_theme/mailer/templates/view.text.haml +3 -0
  40. data/lib/generators/web_app_theme/scaffold/scaffold_generator.rb +57 -0
  41. data/lib/generators/web_app_theme/scaffold/templates/rails/_form.html.erb +23 -0
  42. data/lib/generators/web_app_theme/scaffold/templates/rails/edit.html.erb +6 -0
  43. data/lib/generators/web_app_theme/scaffold/templates/rails/index.html.erb +27 -0
  44. data/lib/generators/web_app_theme/scaffold/templates/rails/new.html.erb +5 -0
  45. data/lib/generators/web_app_theme/scaffold/templates/rails/show.html.erb +12 -0
  46. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_edit.html.erb +19 -0
  47. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_edit.html.haml +13 -0
  48. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_form.html.erb +13 -0
  49. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_form.html.haml +11 -0
  50. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_new.html.erb +18 -0
  51. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_new.html.haml +12 -0
  52. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_show.html.erb +25 -0
  53. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_show.html.haml +18 -0
  54. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_sidebar.html.erb +13 -0
  55. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_sidebar.html.haml +10 -0
  56. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_signin.html.erb +36 -0
  57. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_signin.html.haml +22 -0
  58. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_signup.html.erb +52 -0
  59. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_signup.html.haml +32 -0
  60. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_tables.html.erb +54 -0
  61. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_tables.html.haml +36 -0
  62. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_text.html.erb +18 -0
  63. data/lib/generators/web_app_theme/scaffold/templates/web_app_theme/view_text.html.haml +15 -0
  64. data/lib/web-app-theme-rails.rb +2 -0
  65. data/spec/spec_helper.rb +9 -0
  66. data/spec/web-app-theme-rails_spec.rb +7 -0
  67. metadata +145 -0
@@ -0,0 +1,373 @@
1
+ /*
2
+
3
+ Drastic Dark
4
+ by Juan Maria Martinez Arce
5
+ juan[at]insignia4u.com
6
+
7
+ light grey: #cfcfcf
8
+ medium grey: #36393d
9
+ dark grey: #1a1a1a
10
+ interactive action yellow #ffff88
11
+ red #cc0000
12
+ light blue #E6EEFC
13
+ dark blue #0B43A8
14
+
15
+ */
16
+
17
+ .small {
18
+ font-size: 11px;
19
+ font-style: normal;
20
+ font-weight: normal;
21
+ text-transform: normal;
22
+ letter-spacing: normal;
23
+ line-height: 1.4em;
24
+ }
25
+
26
+ .gray {
27
+ color:#999999;
28
+ font-family: Georgia, serif;
29
+ font-size: 13px;
30
+ font-style: italic;
31
+ font-weight: normal;
32
+ text-transform: normal;
33
+ letter-spacing: normal;
34
+ line-height: 1.6em;
35
+ }
36
+
37
+ .hightlight {
38
+ background-color: #ffff88;
39
+ font-weight: bold;
40
+ color: #36393d;
41
+ }
42
+
43
+ a:link, a:visited, a:hover, a:active, h1, h2, h3 { color: #36393d; }
44
+ a { -moz-outline: none; }
45
+
46
+ body {
47
+ color: #222;
48
+ background: #cfcfcf;
49
+ font-family: helvetica, arial, sans-serif;
50
+ }
51
+
52
+ hr {
53
+ background: #f0f0ee;
54
+ color: #f0f0ee;
55
+ }
56
+
57
+ #header {
58
+ background: #36393d;
59
+ }
60
+
61
+ #header h1 {
62
+ padding: 15px 0;
63
+ font-size: 28px;
64
+ font-style: normal;
65
+ font-weight: bold;
66
+ text-transform: normal;
67
+ letter-spacing: -1px;
68
+ line-height: 1.2em;
69
+ }
70
+
71
+ #header h1 a:link, #header h1 a:active, #header h1 a:hover, #header h1 a:visited {
72
+ color: #FFF;
73
+ }
74
+
75
+ #user-navigation {
76
+ top: auto;
77
+ bottom: 5px;
78
+ right: 25px;
79
+ }
80
+
81
+ #user-navigation a.logout {
82
+ background: #cc0000;
83
+ padding: 1px 4px;
84
+ -moz-border-radius: 4px;
85
+ -webkit-border-radius: 3px;
86
+ }
87
+
88
+ #main .block .content {
89
+ background: #FFF;
90
+ padding-top: 1px;
91
+ }
92
+
93
+ #main .block .content h2 {
94
+ margin-left: 15px;
95
+ font-size: 22px;
96
+ font-style: normal;
97
+ font-weight: bold;
98
+ text-transform: normal;
99
+ letter-spacing: -1px;
100
+ line-height: 1.2em;
101
+ }
102
+
103
+ #main .block .content p {
104
+ font-size: 13px;
105
+ font-style: normal;
106
+ font-weight: normal;
107
+ text-transform: normal;
108
+ letter-spacing: normal;
109
+ line-height: 1.45em;
110
+ }
111
+
112
+ #sidebar .block {
113
+ background: #FFF;
114
+ }
115
+
116
+ #sidebar .block h4 {
117
+ font-weight: bold;
118
+ }
119
+
120
+ #sidebar .notice {
121
+ background: #E6EEFC;
122
+ }
123
+
124
+ #sidebar .notice h4 {
125
+ color: #0B43A8;
126
+ }
127
+
128
+ #sidebar h3 {
129
+ background: #36393d;
130
+ color: #FFF;
131
+ border-bottom: 5px solid #1a1a1a;
132
+ }
133
+
134
+ #main-navigation ul li {
135
+ padding-left: 15px;
136
+ }
137
+
138
+ #main-navigation ul li a {
139
+ padding: 8px 0;
140
+ }
141
+
142
+ #main-navigation ul li.active {
143
+ padding: 0;
144
+ margin-left: 15px;
145
+ }
146
+
147
+ #main-navigation ul li.active {
148
+ margin-left: 15px;
149
+ }
150
+
151
+ #main-navigation ul li.active a {
152
+ padding: 8px 15px;
153
+ }
154
+
155
+ #sidebar ul li a:link, #sidebar ul li a:visited {
156
+ background: #FFF;
157
+ border-bottom: 1px solid #F0F0EE;
158
+ text-decoration: none;
159
+ }
160
+
161
+ #sidebar ul li a:hover, #sidebar ul li a:active {
162
+ background: #666666;
163
+ color: #ffffff;;
164
+ }
165
+
166
+ #main-navigation {
167
+ background: #1a1a1a;
168
+ }
169
+
170
+ #main-navigation ul li {
171
+ background: #1a1a1a;
172
+ margin-right: 0;
173
+ }
174
+
175
+ #main-navigation ul li.active {
176
+ background: #f0f0ee;
177
+ }
178
+
179
+ #main-navigation ul li a:link, #main-navigation ul li a:visited, #main-navigation ul li a:hover, #main-navigation ul li a:active,
180
+ .secondary-navigation ul li a:link, .secondary-navigation ul li a:visited, .secondary-navigation ul li a:hover, .secondary-navigation ul li a:active,
181
+ #user-navigation ul li a:link, #user-navigation ul li a:visited, #user-navigation ul li a:hover, #user-navigation ul li a:active {
182
+ text-decoration: none;
183
+ color: #FFF;
184
+ }
185
+
186
+ .secondary-navigation li a:hover {
187
+ background: #666666;
188
+ }
189
+
190
+ #main-navigation ul li.active a:link, #main-navigation ul li.active a:visited, #main-navigation ul li.active a:hover, #main-navigation ul li.active a:active {
191
+ color: #1a1a1a;
192
+ }
193
+
194
+ .secondary-navigation {
195
+ background: #36393d;
196
+ border-bottom-color: #1a1a1a;
197
+ }
198
+
199
+ .secondary-navigation ul li.active, .secondary-navigation ul li.active a:hover {
200
+ background-color: #1a1a1a;
201
+ }
202
+
203
+ #footer .block {
204
+ color: #FFF;
205
+ background: #1a1a1a;
206
+ }
207
+
208
+ #footer .block p {
209
+ margin: 0;
210
+ padding: 10px;
211
+ }
212
+
213
+ /* pagination */
214
+
215
+ .pagination a, .pagination span {
216
+ background: #cfcfcf;
217
+ -moz-border-radius: 3px;
218
+ border: 1px solid #c1c1c1;
219
+ }
220
+
221
+ .pagination span.current {
222
+ background: #36393d;
223
+ color: #FFF;
224
+ border: 1px solid #36393d;
225
+ }
226
+
227
+ .pagination a {
228
+ color: #1a1a1a;
229
+ }
230
+
231
+ .pagination a:hover {
232
+ border: 1px solid #666;
233
+ }
234
+
235
+ /* tables */
236
+
237
+ .table th {
238
+ background: #36393d;
239
+ color: #FFF;
240
+ }
241
+
242
+ .table td {
243
+ border-bottom:1px solid #F0F0EE;
244
+ }
245
+
246
+ .table tr.even {
247
+ background: #ebebeb;
248
+ }
249
+
250
+ /* forms */
251
+
252
+ .form label.label {
253
+ color: #666666;
254
+ }
255
+
256
+ .form input.text_field, .form textarea.text_area {
257
+ width: 100%;
258
+ border: 1px solid #cfcfcf;
259
+ }
260
+
261
+ .form input.button {
262
+ background: #cfcfcf;
263
+ -moz-border-radius: 5px;
264
+ border: 1px solid #c1c1c1;
265
+ padding: 2px 5px;
266
+ cursor: pointer;
267
+ color: #36393d;
268
+ font-weight: bold;
269
+ font-size: 11px;
270
+ }
271
+
272
+ .form input.button:hover {
273
+ border: 1px solid #666;
274
+ }
275
+
276
+ .form .description {
277
+ font-style: italic;
278
+ color: #8C8C8C;
279
+ font-size: .9em;
280
+ }
281
+
282
+ .form .navform a {
283
+ color: #cc0000;
284
+ }
285
+
286
+ /* flash-messages */
287
+ .flash .message {
288
+ -moz-border-radius: 3px;
289
+ -webkit-border-radius: 3px;
290
+ text-align:center;
291
+ margin: 0 auto 15px;
292
+
293
+ }
294
+
295
+ .flash .message p {
296
+ margin:8px;
297
+ }
298
+ .flash .error {
299
+ border: 1px solid #fbb;
300
+ background-color: #fdd;
301
+ }
302
+ .flash .warning {
303
+ border: 1px solid #fffaaa;
304
+ background-color: #ffffcc;
305
+ }
306
+ .flash .notice {
307
+ border: 1px solid #1FDF00;
308
+ background-color: #BBFFB6;
309
+ }
310
+
311
+ /* lists */
312
+
313
+ ul.list li {
314
+ border-bottom-color: #F0F0EE;
315
+ border-bottom-width: 1px;
316
+ border-bottom-style: solid;
317
+ }
318
+
319
+ ul.list li .item .avatar {
320
+ border-color: #F0F0EE;
321
+ border-width: 1px;
322
+ border-style: solid;
323
+ padding: 2px;
324
+ }
325
+
326
+ /* box */
327
+
328
+ #box .block {
329
+ background: #FFF;
330
+ }
331
+
332
+ #box .block h2 {
333
+ background: #36393d;
334
+ color: #FFF;
335
+ }
336
+
337
+
338
+ /* rounded borders */
339
+
340
+ #main, #main-navigation, #main-navigation li, .secondary-navigation, #main .block, #sidebar .block, #sidebar h3, ul.list li,
341
+ #footer .block, .form input.button, #box .block, #box .block h2 {
342
+ -moz-border-radius-topleft: 4px;
343
+ -webkit-border-top-left-radius: 4px;
344
+ -moz-border-radius-topright: 4px;
345
+ -webkit-border-top-right-radius: 4px;
346
+ }
347
+
348
+ .secondary-navigation li.first a, .secondary-navigation ul li.first, .table th.first, .table th.first {
349
+ -moz-border-radius-topleft: 4px;
350
+ -webkit-border-top-left-radius: 4px;
351
+ }
352
+
353
+ .table th.last {
354
+ -moz-border-radius-topright: 4px;
355
+ -webkit-border-top-right-radius: 4px;
356
+ }
357
+
358
+ .secondary-navigation ul li.first {
359
+ -moz-border-radius-topleft: 4px;
360
+ -webkit-border-top-left-radius: 4px;
361
+ }
362
+
363
+ #sidebar, #sidebar .block, #main .block, #sidebar ul.navigation, ul.list li, #footer .block, .form input.button, #box .block {
364
+ -moz-border-radius-bottomleft: 4px;
365
+ -webkit-border-bottom-left-radius: 4px;
366
+ -moz-border-radius-bottomright: 4px;
367
+ -webkit-border-bottom-right-radius: 4px;
368
+ }
369
+
370
+ .secondary-navigation {
371
+ border-bottom-width: 5px;
372
+ }
373
+
@@ -0,0 +1,272 @@
1
+ .small { font-size:11px; }
2
+ .gray { color:#999999; }
3
+ .hightlight { background-color:#FFFFCC; }
4
+
5
+ a:link, a:visited, a:hover, a:active, h1, h2, h3 { color: #AF0000; }
6
+ a { -moz-outline: none; }
7
+
8
+ body {
9
+ color: #222;
10
+ background: #f0f0ee;
11
+ font-family: helvetica, arial, sans-serif;
12
+ }
13
+
14
+ hr {
15
+ background: #f0f0ee;
16
+ color: #f0f0ee;
17
+ }
18
+
19
+ #header {
20
+ background: #AF0000;
21
+ }
22
+
23
+ #header h1 {
24
+ padding: 20px 0;
25
+ }
26
+
27
+ #header h1 a:link, #header h1 a:active, #header h1 a:hover, #header h1 a:visited {
28
+ color: #FFF;
29
+ }
30
+
31
+ #user-navigation {
32
+ top: auto;
33
+ bottom: 5px;
34
+ right: 25px;
35
+ }
36
+
37
+ #main .block .content {
38
+ background: #FFF;
39
+ padding-top: 1px;
40
+ }
41
+
42
+ #main .block .content h2 {
43
+ margin-left: 15px;
44
+ }
45
+
46
+ #sidebar .block {
47
+ background: #FFF;
48
+ }
49
+
50
+ #sidebar h3 {
51
+ background: #AF0000;
52
+ color: #FFF;
53
+ border-bottom: 5px solid #2a0000;
54
+ }
55
+
56
+ #main-navigation ul li {
57
+ padding-left: 15px;
58
+ }
59
+
60
+ #main-navigation ul li a {
61
+ padding: 8px 0;
62
+ }
63
+
64
+ #main-navigation ul li.active {
65
+ padding: 0;
66
+ margin-left: 15px;
67
+ }
68
+
69
+ #main-navigation ul li.active {
70
+ margin-left: 15px;
71
+ }
72
+
73
+ #main-navigation ul li.active a {
74
+ padding: 8px 15px;
75
+ }
76
+
77
+ #sidebar ul li a:link, #sidebar ul li a:visited {
78
+ background: #FFF;
79
+ border-bottom: 1px solid #F0F0EE;
80
+ text-decoration: none;
81
+ }
82
+
83
+ #sidebar ul li a:hover, #sidebar ul li a:active {
84
+ background: #470E0E;
85
+ color: #FFF;
86
+ }
87
+
88
+ #main-navigation {
89
+ background: #2a0000;
90
+ }
91
+
92
+ #main-navigation ul li {
93
+ background: #2a0000;
94
+ margin-right: 0;
95
+ }
96
+
97
+ #main-navigation ul li.active {
98
+ background: #f0f0ee;
99
+ }
100
+
101
+ #main-navigation ul li a:link, #main-navigation ul li a:visited, #main-navigation ul li a:hover, #main-navigation ul li a:active,
102
+ .secondary-navigation ul li a:link, .secondary-navigation ul li a:visited, .secondary-navigation ul li a:hover, .secondary-navigation ul li a:active,
103
+ #user-navigation ul li a:link, #user-navigation ul li a:visited, #user-navigation ul li a:hover, #user-navigation ul li a:active {
104
+ text-decoration: none;
105
+ color: #FFF;
106
+ }
107
+
108
+ .secondary-navigation li a:hover {
109
+ background: #470E0E;
110
+ }
111
+
112
+ #main-navigation ul li.active a:link, #main-navigation ul li.active a:visited, #main-navigation ul li.active a:hover, #main-navigation ul li.active a:active {
113
+ color: #2a0000;
114
+ }
115
+
116
+ .secondary-navigation {
117
+ background: #AF0000;
118
+ border-bottom-color: #2a0000;
119
+ }
120
+
121
+ .secondary-navigation ul li.active, .secondary-navigation ul li.active a:hover {
122
+ background-color: #2a0000;
123
+ }
124
+
125
+ #footer .block {
126
+ color: #FFF;
127
+ background: #2a0000;
128
+ }
129
+
130
+ #footer .block p {
131
+ margin: 0;
132
+ padding: 10px;
133
+ }
134
+
135
+ /* pagination */
136
+
137
+ .pagination span.current {
138
+ background: #2a0000;
139
+ color: #FFF;
140
+ border-color: #2a0000;
141
+ }
142
+
143
+ .pagination a {
144
+ color: #2a0000;
145
+ border-color: #2a0000;
146
+ }
147
+
148
+ .pagination a:hover {
149
+ color: #FFF;
150
+ background: #2a0000;
151
+ }
152
+
153
+ /* tables */
154
+
155
+ .table th {
156
+ background: #100000;
157
+ border-bottom: 3px solid #700000;
158
+ color: #FFF;
159
+ }
160
+
161
+ .table td {
162
+ border-bottom:1px solid #F0F0EE;
163
+ }
164
+
165
+ /* forms */
166
+
167
+ .form input.text_field, .form textarea.text_area {
168
+ width: 100%;
169
+ border: 1px solid #2a0000;
170
+ }
171
+
172
+ .form input.button {
173
+ background: #EEE;
174
+ color: #2a0000;
175
+ padding: 2px 5px;
176
+ border: 1px solid #2a0000;
177
+ cursor: pointer;
178
+ }
179
+
180
+ .form .description {
181
+ font-style: italic;
182
+ color: #8C8C8C;
183
+ font-size: .9em;
184
+ }
185
+
186
+ /* flash-messages */
187
+ .flash .message {
188
+ -moz-border-radius: 3px;
189
+ -webkit-border-radius: 3px;
190
+ text-align:center;
191
+ margin: 0 auto 15px;
192
+
193
+ }
194
+
195
+ .flash .message p {
196
+ margin:8px;
197
+ }
198
+ .flash .error {
199
+ border: 1px solid #fbb;
200
+ background-color: #fdd;
201
+ }
202
+ .flash .warning {
203
+ border: 1px solid #fffaaa;
204
+ background-color: #ffffcc;
205
+ }
206
+ .flash .notice {
207
+ border: 1px solid #1FDF00;
208
+ background-color: #BBFFB6;
209
+ }
210
+
211
+ /* lists */
212
+
213
+ ul.list li {
214
+ border-bottom-color: #F0F0EE;
215
+ border-bottom-width: 1px;
216
+ border-bottom-style: solid;
217
+ }
218
+
219
+ ul.list li .item .avatar {
220
+ border-color: #F0F0EE;
221
+ border-width: 1px;
222
+ border-style: solid;
223
+ padding: 2px;
224
+ }
225
+
226
+ /* box */
227
+
228
+ #box .block {
229
+ background: #FFF;
230
+ }
231
+
232
+ #box .block h2 {
233
+ background: #AF0000;
234
+ color: #FFF;
235
+ }
236
+
237
+
238
+ /* rounded borders */
239
+
240
+ #main, #main-navigation, #main-navigation li, .secondary-navigation, #main .block, #sidebar .block, #sidebar h3, ul.list li,
241
+ #footer .block, .form input.button, #box .block, #box .block h2 {
242
+ -moz-border-radius-topleft: 4px;
243
+ -webkit-border-top-left-radius: 4px;
244
+ -moz-border-radius-topright: 4px;
245
+ -webkit-border-top-right-radius: 4px;
246
+ }
247
+
248
+ .secondary-navigation li.first a, .secondary-navigation ul li.first, .table th.first, .table th.first {
249
+ -moz-border-radius-topleft: 4px;
250
+ -webkit-border-top-left-radius: 4px;
251
+ }
252
+
253
+ .table th.last {
254
+ -moz-border-radius-topright: 4px;
255
+ -webkit-border-top-right-radius: 4px;
256
+ }
257
+
258
+ .secondary-navigation ul li.first {
259
+ -moz-border-radius-topleft: 4px;
260
+ -webkit-border-top-left-radius: 4px;
261
+ }
262
+
263
+ #sidebar, #sidebar .block, #main .block, #sidebar ul.navigation, ul.list li, #footer .block, .form input.button, #box .block {
264
+ -moz-border-radius-bottomleft: 4px;
265
+ -webkit-border-bottom-left-radius: 4px;
266
+ -moz-border-radius-bottomright: 4px;
267
+ -webkit-border-bottom-right-radius: 4px;
268
+ }
269
+
270
+ .secondary-navigation {
271
+ border-bottom-width: 5px;
272
+ }