control_center 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/app/assets/stylesheets/base.css +95 -0
  2. data/app/assets/stylesheets/codemirror.css +67 -0
  3. data/app/assets/stylesheets/control_center.css +289 -0
  4. data/app/assets/stylesheets/themes/amro/style.css +364 -0
  5. data/app/assets/stylesheets/themes/bec-green/style.css +290 -0
  6. data/app/assets/stylesheets/themes/bec/style.css +301 -0
  7. data/app/assets/stylesheets/themes/blue/style.css +287 -0
  8. data/app/assets/stylesheets/themes/default/style.css +373 -0
  9. data/app/assets/stylesheets/themes/djime-cerulean/style.css +305 -0
  10. data/app/assets/stylesheets/themes/kathleene/style.css +279 -0
  11. data/app/assets/stylesheets/themes/olive/style.css +345 -0
  12. data/app/assets/stylesheets/themes/orange/style.css +269 -0
  13. data/app/assets/stylesheets/themes/reidb-greenish/style.css +302 -0
  14. data/app/assets/stylesheets/themes/ruby/style.css +281 -0
  15. data/app/assets/stylesheets/themes/warehouse/style.css +391 -0
  16. data/app/views/application/_header_links.html.erb +2 -0
  17. data/app/views/application/_sidebar.html.haml +15 -0
  18. data/app/views/application/_sub_tabs.html.erb +0 -0
  19. data/app/views/application/_tabs.html.erb +3 -0
  20. data/app/views/layouts/control_center.html.erb +73 -0
  21. data/app/views/layouts/padrino.html.haml +30 -0
  22. data/public/stylesheets/base.css +95 -0
  23. data/public/stylesheets/codemirror.css +67 -0
  24. data/public/stylesheets/control_center.css +289 -0
  25. data/public/stylesheets/themes/amro/style.css +364 -0
  26. data/public/stylesheets/themes/bec-green/style.css +290 -0
  27. data/public/stylesheets/themes/bec/style.css +301 -0
  28. data/public/stylesheets/themes/blue/style.css +287 -0
  29. data/public/stylesheets/themes/default/style.css +373 -0
  30. data/public/stylesheets/themes/djime-cerulean/style.css +305 -0
  31. data/public/stylesheets/themes/kathleene/style.css +279 -0
  32. data/public/stylesheets/themes/olive/style.css +345 -0
  33. data/public/stylesheets/themes/orange/style.css +269 -0
  34. data/public/stylesheets/themes/reidb-greenish/style.css +302 -0
  35. data/public/stylesheets/themes/ruby/style.css +281 -0
  36. data/public/stylesheets/themes/warehouse/style.css +391 -0
  37. metadata +44 -5
@@ -0,0 +1,269 @@
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: #ff7900; }
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: #ff7900;
21
+ }
22
+
23
+ #header h1 a:link, #header h1 a:active, #header h1 a:hover, #header h1 a:visited {
24
+ color: #FFF;
25
+ }
26
+
27
+ #user-navigation {
28
+ top: auto;
29
+ bottom: 5px;
30
+ right: 25px;
31
+ }
32
+
33
+ #main .block .content {
34
+ background: #FFF;
35
+ padding-top: 1px;
36
+ }
37
+
38
+ #main .block .content h2 {
39
+ margin-left: 15px;
40
+ }
41
+
42
+ #sidebar .block {
43
+ background: #FFF;
44
+ }
45
+
46
+ #sidebar h3 {
47
+ background: #ff7900;
48
+ color: #FFF;
49
+ border-bottom: 10px solid #262626;
50
+ }
51
+
52
+ #main-navigation ul li {
53
+ padding-left: 15px;
54
+ }
55
+
56
+ #main-navigation ul li a {
57
+ padding: 8px 0;
58
+ }
59
+
60
+ #main-navigation ul li.active {
61
+ padding: 0;
62
+ margin-left: 15px;
63
+ }
64
+
65
+ #main-navigation ul li.active {
66
+ margin-left: 15px;
67
+ }
68
+
69
+ #main-navigation ul li.active a {
70
+ padding: 8px 15px;
71
+ }
72
+
73
+ #sidebar ul li a:link, #sidebar ul li a:visited {
74
+ background: #FFF;
75
+ border-bottom: 1px solid #F0F0EE;
76
+ text-decoration: none;
77
+ }
78
+
79
+ #sidebar ul li a:hover, #sidebar ul li a:active {
80
+ background: #863800;
81
+ color: #FFF;
82
+ }
83
+
84
+ #main-navigation {
85
+ background: #262626;
86
+ }
87
+
88
+ #main-navigation ul li {
89
+ background: #262626;
90
+ margin-right: 0;
91
+ }
92
+
93
+ #main-navigation ul li.active {
94
+ background: #f0f0ee;
95
+ }
96
+
97
+ #main-navigation ul li a:link, #main-navigation ul li a:visited, #main-navigation ul li a:hover, #main-navigation ul li a:active,
98
+ .secondary-navigation ul li a:link, .secondary-navigation ul li a:visited, .secondary-navigation ul li a:hover, .secondary-navigation ul li a:active,
99
+ #user-navigation ul li a:link, #user-navigation ul li a:visited, #user-navigation ul li a:hover, #user-navigation ul li a:active {
100
+ text-decoration: none;
101
+ color: #FFF;
102
+ }
103
+
104
+ .secondary-navigation li a:hover {
105
+ background: #863800;
106
+ }
107
+
108
+ #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 {
109
+ color: #262626;
110
+ }
111
+
112
+ .secondary-navigation {
113
+ background: #ff7900;
114
+ border-bottom-color: #262626;
115
+ }
116
+
117
+ .secondary-navigation ul li.active, .secondary-navigation ul li.active a:hover {
118
+ background-color: #262626;
119
+ }
120
+
121
+ #footer .block {
122
+ color: #FFF;
123
+ background: #262626;
124
+ }
125
+
126
+ #footer .block p {
127
+ margin: 0;
128
+ padding: 10px;
129
+ }
130
+
131
+ /* pagination */
132
+
133
+ .pagination span.current {
134
+ background: #262626;
135
+ color: #FFF;
136
+ border-color: #262626;
137
+ }
138
+
139
+ .pagination a {
140
+ color: #262626;
141
+ border-color: #262626;
142
+ }
143
+
144
+ .pagination a:hover {
145
+ color: #FFF;
146
+ background: #262626;
147
+ }
148
+
149
+ /* tables */
150
+
151
+ .table th {
152
+ background: #262626;
153
+ color: #FFF;
154
+ }
155
+
156
+ .table td {
157
+ border-bottom:1px solid #F0F0EE;
158
+ }
159
+
160
+ /* forms */
161
+
162
+ .form input.text, .form textarea {
163
+ width: 100%;
164
+ border: 1px solid #262626;
165
+ }
166
+
167
+ .form input.button {
168
+ padding: 5px 10px 5px 10px;
169
+ background-color:#FF7900;
170
+ text-decoration:none;
171
+ cursor: pointer;
172
+ color: #FFF;
173
+ font-size: 14px;
174
+ border:0px;
175
+ margin:0px;
176
+ }
177
+
178
+ .form .button:hover {
179
+ background: #843700;
180
+ }
181
+
182
+ .form .description {
183
+ font-style: italic;
184
+ color: #8C8C8C;
185
+ font-size: .9em;
186
+ }
187
+
188
+ /* flash-messages */
189
+ .flash .message {
190
+ -moz-border-radius: 3px;
191
+ -webkit-border-radius: 3px;
192
+ text-align:center;
193
+ margin:0 auto 5px;
194
+
195
+ }
196
+ .flash .message p {
197
+ margin:8px;
198
+ }
199
+ .flash .error {
200
+ border: 1px solid #fbb;
201
+ background-color: #fdd;
202
+ }
203
+ .flash .warning {
204
+ border: 1px solid #fffaaa;
205
+ background-color: #ffffcc;
206
+ }
207
+ .flash .notice {
208
+ border: 1px solid #1FDF00;
209
+ background-color: #BBFFB6;
210
+ }
211
+
212
+ /* lists */
213
+
214
+ ul.list li {
215
+ border-bottom-color: #F0F0EE;
216
+ border-bottom-width: 1px;
217
+ border-bottom-style: solid;
218
+ }
219
+
220
+ ul.list li .item .avatar {
221
+ border-color: #F0F0EE;
222
+ border-width: 1px;
223
+ border-style: solid;
224
+ padding: 2px;
225
+ }
226
+
227
+ /* box */
228
+
229
+ #box .block {
230
+ background: #FFF;
231
+ }
232
+
233
+ #box .block h2 {
234
+ background: #ff7900;
235
+ color: #FFF;
236
+ }
237
+
238
+
239
+ /* rounded borders */
240
+
241
+ #main, #main-navigation, #main-navigation li, .secondary-navigation, #main .block, #sidebar .block, #sidebar h3, ul.list li,
242
+ #footer .block, .form input.button, #box .block, #box .block h2 {
243
+ -moz-border-radius-topleft: 4px;
244
+ -webkit-border-top-left-radius: 4px;
245
+ -moz-border-radius-topright: 4px;
246
+ -webkit-border-top-right-radius: 4px;
247
+ }
248
+
249
+ .secondary-navigation li.first a, .secondary-navigation ul li.first, .table th.first, .table th.first {
250
+ -moz-border-radius-topleft: 4px;
251
+ -webkit-border-top-left-radius: 4px;
252
+ }
253
+
254
+ .table th.last {
255
+ -moz-border-radius-topright: 4px;
256
+ -webkit-border-top-right-radius: 4px;
257
+ }
258
+
259
+ .secondary-navigation ul li.first {
260
+ -moz-border-radius-topleft: 4px;
261
+ -webkit-border-top-left-radius: 4px;
262
+ }
263
+
264
+ #sidebar, #sidebar .block, #main .block, #sidebar ul.navigation, ul.list li, #footer .block, .form input.button, #box .block {
265
+ -moz-border-radius-bottomleft: 4px;
266
+ -webkit-border-bottom-left-radius: 4px;
267
+ -moz-border-radius-bottomright: 4px;
268
+ -webkit-border-bottom-right-radius: 4px;
269
+ }
@@ -0,0 +1,302 @@
1
+ .small { font-size:11px; }
2
+ .gray { color:#a2b0b6; }
3
+ .hightlight { background-color:#d6e7c7; }
4
+
5
+ a:link, a:visited, a:hover, a:active { color: #81B953; }
6
+ h1, h2, h3 { color: #3B5526; }
7
+ a { -moz-outline: none; }
8
+
9
+ body {
10
+ color: #222;
11
+ background: #e4ebe4;
12
+ font-family: helvetica, arial, sans-serif;
13
+ }
14
+
15
+ hr {
16
+ background: #f0f0ee;
17
+ color: #f0f0ee;
18
+ }
19
+
20
+ #header {
21
+ background: #c9deb7;
22
+
23
+ }
24
+
25
+ #header h1{
26
+ padding: 20px 0;
27
+ font-weight: bold;
28
+
29
+ }
30
+
31
+ #header h1 a:link, #header h1 a:active,
32
+ #header h1 a:hover, #header h1 a:visited {
33
+ color: #3B5526;
34
+ }
35
+
36
+ #main .block .content {
37
+ background: #FFF;
38
+ padding-top: 1px;
39
+ }
40
+
41
+ #main .block .content h2 {
42
+ margin-left: 15px;
43
+ }
44
+
45
+ #main .content { border: 1px solid #81B953;}
46
+
47
+ #sidebar .block {
48
+ background: #FFF;
49
+ border: none;
50
+ }
51
+
52
+ #sidebar h3 {
53
+ padding: 8px 12px;
54
+ background: #3B5526;
55
+ color: #FFF;
56
+ font-weight: bold;
57
+ border-bottom: 5px solid #81B953;
58
+ }
59
+
60
+
61
+ #sidebar ul li a:link,
62
+ #sidebar ul li a:visited {
63
+ background: #FFF;
64
+ border-bottom: 1px solid #F0F0EE;
65
+ text-decoration: none;
66
+ }
67
+
68
+ #sidebar ul li a:hover,
69
+ #sidebar ul li a:active {
70
+ background: #D3E8C1;
71
+ color: #FFF;
72
+ }
73
+
74
+ #main-navigation {
75
+ background: #44721e;
76
+ margin-right: 20px;
77
+ padding: 7px 7px 0 7px;
78
+ }
79
+
80
+ #main-navigation ul li {
81
+ background: #91B96F;
82
+ margin-right: 7px;
83
+ }
84
+
85
+ #main-navigation ul li a {
86
+ padding: 10px 10px 5px 10px;
87
+ }
88
+
89
+ #main-navigation ul li.active {
90
+ background: #e4ebe4;
91
+ border: 1px solid #91B96F;
92
+ border-bottom: none;
93
+ font-weight: bold;
94
+ }
95
+
96
+ #main-navigation ul li a:hover,
97
+ #main-navigation ul li a:link,
98
+ #main-navigation ul li a:visited,
99
+ #main-navigation ul li a:active,
100
+ .secondary-navigation ul li a:link, .secondary-navigation ul li a:visited,
101
+ .secondary-navigation ul li a:hover, .secondary-navigation ul li a:active {
102
+ text-decoration: none;
103
+ color: #FFF;
104
+ }
105
+
106
+ #user-navigation ul li a:link,
107
+ #user-navigation ul li a:visited,
108
+ #user-navigation ul li a:active {
109
+ color: #3B5526;
110
+ }
111
+
112
+ #user-navigation ul li a:hover { color: #fff; }
113
+
114
+ #main-navigation ul li.active a:link,
115
+ #main-navigation ul li.active a:visited,
116
+ #main-navigation ul li.active a:hover,
117
+ #main-navigation ul li.active a:active {
118
+ color: #262626;
119
+ }
120
+
121
+ .secondary-navigation {
122
+ background: #3B5526;
123
+ border-bottom: 5px solid #81b953;
124
+ }
125
+
126
+ .secondary-navigation ul li a {
127
+ display:block;
128
+ padding: 8px 12px;
129
+ }
130
+
131
+ .secondary-navigation ul li.active {background: #81b953; font-weight: bold;}
132
+ .secondary-navigation ul li.active a:hover {
133
+ background-color: #81B953;
134
+ }
135
+
136
+ .secondary-navigation li a:hover {
137
+ background: #81B953;
138
+ }
139
+
140
+ #footer .block {
141
+ color: #FFF;
142
+ background: #3B5526;
143
+ }
144
+
145
+ #footer .block p {
146
+ margin: 0;
147
+ padding: 5px;
148
+ }
149
+
150
+ /* pagination */
151
+
152
+ .pagination span.current {
153
+ background: #262626;
154
+ color: #FFF;
155
+ border-color: #262626;
156
+ }
157
+
158
+ .pagination a {
159
+ color: #262626;
160
+ border-color: #262626;
161
+ }
162
+
163
+ .pagination a:hover {
164
+ color: #FFF;
165
+ background: #262626;
166
+ }
167
+
168
+ /* tables */
169
+
170
+
171
+ .table th {
172
+ background: #253618;
173
+ color: #FFF;
174
+ }
175
+
176
+ .table tr th { padding: 5px; }
177
+
178
+ .table td {
179
+ border-bottom:1px solid #F0F0EE;
180
+ }
181
+ .table tr.odd {background: #ebfadf;}
182
+ .table tr.even {background: #d3e8c1;}
183
+
184
+
185
+ /* forms */
186
+
187
+ .form input.text_field, .form input.password_field, .form textarea.text_area {
188
+ width: 100%;
189
+ border: 1px solid #262626;
190
+ }
191
+
192
+ .form input.button {
193
+ padding: 5px 10px 5px 10px;
194
+ background-color:#3B5526;
195
+ text-decoration:none;
196
+ cursor: pointer;
197
+ color: #FFF;
198
+ font-size: 14px;
199
+ border:0px;
200
+ margin:0px;
201
+ }
202
+
203
+ .form .button:hover {
204
+ background: #81B953;
205
+ }
206
+
207
+ /* flash-messages */
208
+ .flash .message {
209
+ -moz-border-radius: 3px;
210
+ -webkit-border-radius: 3px;
211
+ text-align:center;
212
+ margin: 0 auto 15px;
213
+
214
+ }
215
+
216
+ .flash .message p {
217
+ margin:8px;
218
+ }
219
+ .flash .error {
220
+ border: 1px solid #fbb;
221
+ background-color: #fdd;
222
+ }
223
+ .flash .warning {
224
+ border: 1px solid #fffaaa;
225
+ background-color: #ffffcc;
226
+ }
227
+ .flash .notice {
228
+ border: 1px solid #1FDF00;
229
+ background-color: #BBFFB6;
230
+ }
231
+
232
+ /* lists */
233
+
234
+ ul.list li {
235
+ border-bottom-color: #F0F0EE;
236
+ border-bottom-width: 1px;
237
+ border-bottom-style: solid;
238
+ }
239
+
240
+ ul.list li .item .avatar {
241
+ border-color: #F0F0EE;
242
+ border-width: 1px;
243
+ border-style: solid;
244
+ padding: 2px;
245
+ }
246
+
247
+ /* box */
248
+
249
+ #box .block {
250
+ background: #FFF;
251
+ }
252
+
253
+ #box .block h2 {
254
+ color: #fff;
255
+ background: #3B5526;
256
+ border-bottom: 5px solid #81b953;
257
+ }
258
+
259
+ #box .block .content { border: 1px solid #81b953; border}
260
+
261
+ /* login */
262
+
263
+ #block-login { }
264
+ #block-login h2 { background: #3B5526;border-bottom: 5px solid #81b953;}
265
+
266
+ /* rounded borders */
267
+
268
+ #main, #main-navigation, #main-navigation li,
269
+ .secondary-navigation, #main .block, #sidebar .block,
270
+ #sidebar h3, ul.list li, #footer .block,
271
+ .form input.button, #box .block, #box .block h2 {
272
+ -moz-border-radius-topleft: 4px;
273
+ -webkit-border-top-left-radius: 4px;
274
+ -moz-border-radius-topright: 4px;
275
+ -webkit-border-top-right-radius: 4px;
276
+ }
277
+
278
+ .secondary-navigation li.first a,
279
+ .secondary-navigation ul li.first,
280
+ .table th.first, .table th.first {
281
+ -moz-border-radius-topleft: 4px;
282
+ -webkit-border-top-left-radius: 4px;
283
+ }
284
+
285
+ .table th.last {
286
+ -moz-border-radius-topright: 4px;
287
+ -webkit-border-top-right-radius: 4px;
288
+ }
289
+
290
+ .secondary-navigation ul li.first {
291
+ -moz-border-radius-topleft: 4px;
292
+ -webkit-border-top-left-radius: 4px;
293
+ }
294
+
295
+ #sidebar, #sidebar .block, #main .block,
296
+ #sidebar ul.navigation, ul.list li,
297
+ #footer .block, .form input.button, #box .block {
298
+ -moz-border-radius-bottomleft: 4px;
299
+ -webkit-border-bottom-left-radius: 4px;
300
+ -moz-border-radius-bottomright: 4px;
301
+ -webkit-border-bottom-right-radius: 4px;
302
+ }