gennaro 0.3.2.3 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gennaro/version.rb +1 -1
  3. data/templates/authentication/app/controllers/users.rb +1 -6
  4. data/templates/authentication/app/helpers/user.rb +5 -0
  5. data/templates/authentication/public/bootstrap/css/bootstrap-theme.css +397 -0
  6. data/templates/authentication/public/bootstrap/css/bootstrap-theme.min.css +7 -0
  7. data/templates/authentication/public/bootstrap/css/bootstrap.css +7118 -0
  8. data/templates/authentication/public/bootstrap/css/bootstrap.min.css +7 -0
  9. data/templates/authentication/public/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  10. data/templates/authentication/public/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  11. data/templates/authentication/public/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  12. data/templates/authentication/public/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  13. data/templates/authentication/public/bootstrap/js/bootstrap.js +2006 -0
  14. data/templates/authentication/public/bootstrap/js/bootstrap.min.js +7 -0
  15. data/templates/authentication/public/css/lib/bootstrap-checkbox.css +98 -0
  16. data/templates/authentication/public/css/lib/bootstrap-select.min.css +7 -0
  17. data/templates/authentication/public/css/user.css +54 -0
  18. data/templates/authentication/public/img/icons.png +0 -0
  19. data/templates/authentication/public/js/lib/bootstrap-checkbox.js +253 -0
  20. data/templates/authentication/public/js/lib/bootstrap-select.min.js +8 -0
  21. data/templates/authentication/public/js/lib/jquery.min.js +6 -0
  22. data/templates/authentication/public/js/user.js +4 -0
  23. data/templates/authentication/views/index.erb +2 -5
  24. data/templates/authentication/views/template/footer.erb +10 -1
  25. data/templates/authentication/views/template/header.erb +55 -3
  26. metadata +20 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13fce8c2eecbd079a420835cbba0d84d91254eff
4
- data.tar.gz: a54d5b7e6d0daf9ab97601b6e1604f944e4e3b8f
3
+ metadata.gz: bda287d08444c6155197221d38b588abab9c9a44
4
+ data.tar.gz: a06a5850cb26b0e1ac42a48b81635df96c140fb9
5
5
  SHA512:
6
- metadata.gz: 6597b7588563ba9353eb72a392f371fdd395abcda1ac8930657633571c29cf20d3c7152a7a4dcc12836e0b7b10145be896ea32203f55e2c67957c03eb6c84ae6
7
- data.tar.gz: b35ded8f5217988babd5f7fbbdabeba5a98a50a82f5d044b5df9104593aae098ffc570c116d9a479732b64db68932bdba9ceac633addef5597fd4e0bc75325ae
6
+ metadata.gz: c48791e3a6ff802f13797630815c26ef7c2beb26c6a78ad410f8abe30c3c54e44543b3bd217100746944cebc0c11d39a79da539e824f1b42b64a1dab035c928f
7
+ data.tar.gz: a8b49e0f1abdb87a462689f59debea37aa5fd87f947d0ddc5dd662068798d9540203b934e3d2de9e82b439cc3b4cbe03d6d67ce8e337dc3d6a92499e448c6cc5
@@ -10,6 +10,6 @@
10
10
 
11
11
  class Gennaro
12
12
  def self.version
13
- '0.3.2.3'
13
+ '0.3.3'
14
14
  end
15
15
  end
@@ -22,7 +22,6 @@ class ${ClassName}
22
22
  else
23
23
  @error = 'You are not logged in.'
24
24
  end
25
-
26
25
  erb :'user/logout'
27
26
  end
28
27
 
@@ -47,7 +46,7 @@ class ${ClassName}
47
46
  elsif not current_user.staff?
48
47
  @error = 'Go home, this is not a place for you.'
49
48
  else
50
- @users = User.all
49
+ @users = User.all
51
50
  end
52
51
  erb :'user/change_level'
53
52
  end
@@ -66,7 +65,6 @@ class ${ClassName}
66
65
  @error = 'Login failed.'
67
66
  end
68
67
  end
69
-
70
68
  erb :'user/login'
71
69
  end
72
70
 
@@ -86,7 +84,6 @@ class ${ClassName}
86
84
  @success = 'Sign up successful.'
87
85
  end
88
86
  end
89
-
90
87
  erb :'user/signup'
91
88
  end
92
89
 
@@ -102,7 +99,6 @@ class ${ClassName}
102
99
  else
103
100
  @error = 'The given username doesn\'t exists.'
104
101
  end
105
-
106
102
  erb :'user/lost_password'
107
103
  end
108
104
 
@@ -116,7 +112,6 @@ class ${ClassName}
116
112
  else
117
113
  @error = 'Error setting the password.'
118
114
  end
119
-
120
115
  erb :'user/password_recovery'
121
116
  end
122
117
 
@@ -21,6 +21,11 @@ class ${ClassName}
21
21
  end
22
22
  alias_method :logged?, :logged_in?
23
23
 
24
+ def staffer?
25
+ return false unless logged_in?
26
+ current_user.staff?
27
+ end
28
+
24
29
  def set_login(session)
25
30
  set_cookie 'sessid', session
26
31
  end
@@ -0,0 +1,397 @@
1
+ /*!
2
+ * Bootstrap v3.0.3 (http://getbootstrap.com)
3
+ * Copyright 2013 Twitter, Inc.
4
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0
5
+ */
6
+
7
+ .btn-default,
8
+ .btn-primary,
9
+ .btn-success,
10
+ .btn-info,
11
+ .btn-warning,
12
+ .btn-danger {
13
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
14
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
15
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
16
+ }
17
+
18
+ .btn-default:active,
19
+ .btn-primary:active,
20
+ .btn-success:active,
21
+ .btn-info:active,
22
+ .btn-warning:active,
23
+ .btn-danger:active,
24
+ .btn-default.active,
25
+ .btn-primary.active,
26
+ .btn-success.active,
27
+ .btn-info.active,
28
+ .btn-warning.active,
29
+ .btn-danger.active {
30
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
31
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
32
+ }
33
+
34
+ .btn:active,
35
+ .btn.active {
36
+ background-image: none;
37
+ }
38
+
39
+ .btn-default {
40
+ text-shadow: 0 1px 0 #fff;
41
+ background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
42
+ background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
43
+ background-repeat: repeat-x;
44
+ border-color: #dbdbdb;
45
+ border-color: #ccc;
46
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
47
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
48
+ }
49
+
50
+ .btn-default:hover,
51
+ .btn-default:focus {
52
+ background-color: #e0e0e0;
53
+ background-position: 0 -15px;
54
+ }
55
+
56
+ .btn-default:active,
57
+ .btn-default.active {
58
+ background-color: #e0e0e0;
59
+ border-color: #dbdbdb;
60
+ }
61
+
62
+ .btn-primary {
63
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
64
+ background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
65
+ background-repeat: repeat-x;
66
+ border-color: #2b669a;
67
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
68
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
69
+ }
70
+
71
+ .btn-primary:hover,
72
+ .btn-primary:focus {
73
+ background-color: #2d6ca2;
74
+ background-position: 0 -15px;
75
+ }
76
+
77
+ .btn-primary:active,
78
+ .btn-primary.active {
79
+ background-color: #2d6ca2;
80
+ border-color: #2b669a;
81
+ }
82
+
83
+ .btn-success {
84
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
85
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
86
+ background-repeat: repeat-x;
87
+ border-color: #3e8f3e;
88
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
89
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
90
+ }
91
+
92
+ .btn-success:hover,
93
+ .btn-success:focus {
94
+ background-color: #419641;
95
+ background-position: 0 -15px;
96
+ }
97
+
98
+ .btn-success:active,
99
+ .btn-success.active {
100
+ background-color: #419641;
101
+ border-color: #3e8f3e;
102
+ }
103
+
104
+ .btn-warning {
105
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
106
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
107
+ background-repeat: repeat-x;
108
+ border-color: #e38d13;
109
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
110
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
111
+ }
112
+
113
+ .btn-warning:hover,
114
+ .btn-warning:focus {
115
+ background-color: #eb9316;
116
+ background-position: 0 -15px;
117
+ }
118
+
119
+ .btn-warning:active,
120
+ .btn-warning.active {
121
+ background-color: #eb9316;
122
+ border-color: #e38d13;
123
+ }
124
+
125
+ .btn-danger {
126
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
127
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
128
+ background-repeat: repeat-x;
129
+ border-color: #b92c28;
130
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
131
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
132
+ }
133
+
134
+ .btn-danger:hover,
135
+ .btn-danger:focus {
136
+ background-color: #c12e2a;
137
+ background-position: 0 -15px;
138
+ }
139
+
140
+ .btn-danger:active,
141
+ .btn-danger.active {
142
+ background-color: #c12e2a;
143
+ border-color: #b92c28;
144
+ }
145
+
146
+ .btn-info {
147
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
148
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
149
+ background-repeat: repeat-x;
150
+ border-color: #28a4c9;
151
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
152
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
153
+ }
154
+
155
+ .btn-info:hover,
156
+ .btn-info:focus {
157
+ background-color: #2aabd2;
158
+ background-position: 0 -15px;
159
+ }
160
+
161
+ .btn-info:active,
162
+ .btn-info.active {
163
+ background-color: #2aabd2;
164
+ border-color: #28a4c9;
165
+ }
166
+
167
+ .thumbnail,
168
+ .img-thumbnail {
169
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
170
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
171
+ }
172
+
173
+ .dropdown-menu > li > a:hover,
174
+ .dropdown-menu > li > a:focus {
175
+ background-color: #e8e8e8;
176
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
177
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
178
+ background-repeat: repeat-x;
179
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
180
+ }
181
+
182
+ .dropdown-menu > .active > a,
183
+ .dropdown-menu > .active > a:hover,
184
+ .dropdown-menu > .active > a:focus {
185
+ background-color: #357ebd;
186
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
187
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
188
+ background-repeat: repeat-x;
189
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
190
+ }
191
+
192
+ .navbar-default {
193
+ background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
194
+ background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
195
+ background-repeat: repeat-x;
196
+ border-radius: 4px;
197
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
198
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
199
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
200
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
201
+ }
202
+
203
+ .navbar-default .navbar-nav > .active > a {
204
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
205
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
206
+ background-repeat: repeat-x;
207
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
208
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
209
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
210
+ }
211
+
212
+ .navbar-brand,
213
+ .navbar-nav > li > a {
214
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
215
+ }
216
+
217
+ .navbar-inverse {
218
+ background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
219
+ background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
220
+ background-repeat: repeat-x;
221
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
222
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
223
+ }
224
+
225
+ .navbar-inverse .navbar-nav > .active > a {
226
+ background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
227
+ background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
228
+ background-repeat: repeat-x;
229
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
230
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
231
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
232
+ }
233
+
234
+ .navbar-inverse .navbar-brand,
235
+ .navbar-inverse .navbar-nav > li > a {
236
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
237
+ }
238
+
239
+ .navbar-static-top,
240
+ .navbar-fixed-top,
241
+ .navbar-fixed-bottom {
242
+ border-radius: 0;
243
+ }
244
+
245
+ .alert {
246
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
247
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
248
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
249
+ }
250
+
251
+ .alert-success {
252
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
253
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
254
+ background-repeat: repeat-x;
255
+ border-color: #b2dba1;
256
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
257
+ }
258
+
259
+ .alert-info {
260
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
261
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
262
+ background-repeat: repeat-x;
263
+ border-color: #9acfea;
264
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
265
+ }
266
+
267
+ .alert-warning {
268
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
269
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
270
+ background-repeat: repeat-x;
271
+ border-color: #f5e79e;
272
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
273
+ }
274
+
275
+ .alert-danger {
276
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
277
+ background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
278
+ background-repeat: repeat-x;
279
+ border-color: #dca7a7;
280
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
281
+ }
282
+
283
+ .progress {
284
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
285
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
286
+ background-repeat: repeat-x;
287
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
288
+ }
289
+
290
+ .progress-bar {
291
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
292
+ background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
293
+ background-repeat: repeat-x;
294
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
295
+ }
296
+
297
+ .progress-bar-success {
298
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
299
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
300
+ background-repeat: repeat-x;
301
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
302
+ }
303
+
304
+ .progress-bar-info {
305
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
306
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
307
+ background-repeat: repeat-x;
308
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
309
+ }
310
+
311
+ .progress-bar-warning {
312
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
313
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
314
+ background-repeat: repeat-x;
315
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
316
+ }
317
+
318
+ .progress-bar-danger {
319
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
320
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
321
+ background-repeat: repeat-x;
322
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
323
+ }
324
+
325
+ .list-group {
326
+ border-radius: 4px;
327
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
328
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
329
+ }
330
+
331
+ .list-group-item.active,
332
+ .list-group-item.active:hover,
333
+ .list-group-item.active:focus {
334
+ text-shadow: 0 -1px 0 #3071a9;
335
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
336
+ background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
337
+ background-repeat: repeat-x;
338
+ border-color: #3278b3;
339
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
340
+ }
341
+
342
+ .panel {
343
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
344
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
345
+ }
346
+
347
+ .panel-default > .panel-heading {
348
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
349
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
350
+ background-repeat: repeat-x;
351
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
352
+ }
353
+
354
+ .panel-primary > .panel-heading {
355
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
356
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
357
+ background-repeat: repeat-x;
358
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
359
+ }
360
+
361
+ .panel-success > .panel-heading {
362
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
363
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
364
+ background-repeat: repeat-x;
365
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
366
+ }
367
+
368
+ .panel-info > .panel-heading {
369
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
370
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
371
+ background-repeat: repeat-x;
372
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
373
+ }
374
+
375
+ .panel-warning > .panel-heading {
376
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
377
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
378
+ background-repeat: repeat-x;
379
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
380
+ }
381
+
382
+ .panel-danger > .panel-heading {
383
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
384
+ background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
385
+ background-repeat: repeat-x;
386
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
387
+ }
388
+
389
+ .well {
390
+ background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
391
+ background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
392
+ background-repeat: repeat-x;
393
+ border-color: #dcdcdc;
394
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
395
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
396
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
397
+ }
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap v3.0.3 (http://getbootstrap.com)
3
+ * Copyright 2013 Twitter, Inc.
4
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0
5
+ */
6
+
7
+ .btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);background-repeat:repeat-x;border-color:#2b669a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);background-repeat:repeat-x;border-color:#3e8f3e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);background-repeat:repeat-x;border-color:#e38d13;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);background-repeat:repeat-x;border-color:#b92c28;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);background-repeat:repeat-x;border-color:#28a4c9;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}