mdbootstrap-rails 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +54 -0
- data/.travis.yml +10 -0
- data/CHANGE_LOG.md +10 -0
- data/Gemfile +10 -0
- data/Guardfile +9 -0
- data/LICENSE.txt +21 -0
- data/README.md +85 -0
- data/Rakefile +12 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/mdbootstrap/rails.rb +7 -0
- data/lib/mdbootstrap/rails/engine.rb +6 -0
- data/lib/mdbootstrap/rails/version.rb +5 -0
- data/mdbootstrap-rails.gemspec +31 -0
- data/vendor/assets/README.txt +25 -0
- data/vendor/assets/css/bootstrap.css +6686 -0
- data/vendor/assets/css/bootstrap.min.css +7 -0
- data/vendor/assets/css/mdb.css +8614 -0
- data/vendor/assets/css/mdb.min.css +26 -0
- data/vendor/assets/css/style.css +1 -0
- data/vendor/assets/fonts/roboto/Roboto-Bold.eot +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Bold.woff +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Light.eot +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Light.ttf +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Light.woff +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Medium.eot +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Medium.woff +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Regular.eot +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Regular.woff +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Thin.eot +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Thin.woff +0 -0
- data/vendor/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/vendor/assets/images/lightbox/default-skin.png +0 -0
- data/vendor/assets/images/lightbox/default-skin.svg +1 -0
- data/vendor/assets/images/lightbox/preloader.gif +0 -0
- data/vendor/assets/images/overlays/01.png +0 -0
- data/vendor/assets/images/overlays/02.png +0 -0
- data/vendor/assets/images/overlays/03.png +0 -0
- data/vendor/assets/images/overlays/04.png +0 -0
- data/vendor/assets/images/overlays/05.png +0 -0
- data/vendor/assets/images/overlays/06.png +0 -0
- data/vendor/assets/images/overlays/07.png +0 -0
- data/vendor/assets/images/overlays/08.png +0 -0
- data/vendor/assets/images/overlays/09.png +0 -0
- data/vendor/assets/javascripts/bootstrap.js +3430 -0
- data/vendor/assets/javascripts/bootstrap.min.js +7 -0
- data/vendor/assets/javascripts/jquery-2.2.3.js +9842 -0
- data/vendor/assets/javascripts/jquery-2.2.3.min.js +4 -0
- data/vendor/assets/javascripts/jquery-3.1.1.js +10220 -0
- data/vendor/assets/javascripts/jquery-3.1.1.min.js +4 -0
- data/vendor/assets/javascripts/mdb.js +5316 -0
- data/vendor/assets/javascripts/mdb.min.js +4 -0
- data/vendor/assets/javascripts/tether.js +1726 -0
- data/vendor/assets/javascripts/tether.min.js +1 -0
- data/vendor/assets/stylesheets/bootstrap.css +6686 -0
- data/vendor/assets/stylesheets/bootstrap.min.css +7 -0
- data/vendor/assets/stylesheets/mdb.scss +49 -0
- data/vendor/assets/stylesheets/mdb/free/_animations.scss +3340 -0
- data/vendor/assets/stylesheets/mdb/free/_buttons.scss +528 -0
- data/vendor/assets/stylesheets/mdb/free/_cards-basic.scss +59 -0
- data/vendor/assets/stylesheets/mdb/free/_carousels-basic.scss +51 -0
- data/vendor/assets/stylesheets/mdb/free/_footer.scss +51 -0
- data/vendor/assets/stylesheets/mdb/free/_forms-basic.scss +306 -0
- data/vendor/assets/stylesheets/mdb/free/_global.scss +397 -0
- data/vendor/assets/stylesheets/mdb/free/_helpers.scss +257 -0
- data/vendor/assets/stylesheets/mdb/free/_hover-effects.scss +415 -0
- data/vendor/assets/stylesheets/mdb/free/_navbars.scss +196 -0
- data/vendor/assets/stylesheets/mdb/free/_roboto.scss +51 -0
- data/vendor/assets/stylesheets/mdb/free/_typography.scss +201 -0
- data/vendor/assets/stylesheets/mdb/free/_waves.scss +157 -0
- data/vendor/assets/stylesheets/mdb/free/data/_colors.scss +875 -0
- data/vendor/assets/stylesheets/mdb/free/data/_mixins.scss +83 -0
- data/vendor/assets/stylesheets/mdb/free/data/_prefixer.scss +376 -0
- data/vendor/assets/stylesheets/mdb/free/data/_variables-b4.scss +666 -0
- data/vendor/assets/stylesheets/mdb/free/data/_variables.scss +102 -0
- metadata +221 -0
|
@@ -0,0 +1,528 @@
|
|
|
1
|
+
// BUTTONS
|
|
2
|
+
button:focus {
|
|
3
|
+
outline: none!important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.btn {
|
|
7
|
+
font-size: 0.8rem;
|
|
8
|
+
padding: 0.85rem 2.13rem;
|
|
9
|
+
&.btn-lg {
|
|
10
|
+
font-size: 0.9rem;
|
|
11
|
+
padding: 1rem 2.4rem;
|
|
12
|
+
}
|
|
13
|
+
&.btn-md {
|
|
14
|
+
font-size: 0.7rem;
|
|
15
|
+
padding: 0.7rem 1.6rem;
|
|
16
|
+
}
|
|
17
|
+
&.btn-sm {
|
|
18
|
+
font-size: 0.6rem;
|
|
19
|
+
padding: 0.5rem 1.6rem;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.btn {
|
|
24
|
+
border-radius: 2px;
|
|
25
|
+
border: 0;
|
|
26
|
+
@extend .z-depth-1;
|
|
27
|
+
transition: .2s ease-out;
|
|
28
|
+
color: #fff!important;
|
|
29
|
+
margin: 6px;
|
|
30
|
+
white-space: normal !important;
|
|
31
|
+
word-wrap: break-word;
|
|
32
|
+
text-transform: uppercase;
|
|
33
|
+
&:hover {
|
|
34
|
+
@extend .z-depth-1-half;
|
|
35
|
+
color: #fff;
|
|
36
|
+
}
|
|
37
|
+
&:active,
|
|
38
|
+
&:focus,
|
|
39
|
+
&.active {
|
|
40
|
+
outline: 0;
|
|
41
|
+
color: #fff;
|
|
42
|
+
}
|
|
43
|
+
.fa {
|
|
44
|
+
font-size: 1.1rem;
|
|
45
|
+
position: relative;
|
|
46
|
+
vertical-align: middle;
|
|
47
|
+
margin-top: -2px;
|
|
48
|
+
&.right {
|
|
49
|
+
margin-left: 3px;
|
|
50
|
+
}
|
|
51
|
+
&.left {
|
|
52
|
+
margin-right: 3px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.btn-group {
|
|
58
|
+
.btn {
|
|
59
|
+
margin: 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.btn-block {
|
|
64
|
+
margin: inherit;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Alert buttons
|
|
68
|
+
.btn-secondary {
|
|
69
|
+
background-color: $secondary-color;
|
|
70
|
+
&:hover,
|
|
71
|
+
&:focus {
|
|
72
|
+
background-color: lighten( $secondary-color, 5%)!important;
|
|
73
|
+
color: #fff;
|
|
74
|
+
}
|
|
75
|
+
&.active {
|
|
76
|
+
background-color: darken( $secondary-color, 20%)!important;
|
|
77
|
+
@extend .z-depth-1-half;
|
|
78
|
+
&:hover {
|
|
79
|
+
color: #fff;
|
|
80
|
+
}
|
|
81
|
+
&:focus {
|
|
82
|
+
color: #fff;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
&.dropdown-toggle {
|
|
86
|
+
color: #fff!important;
|
|
87
|
+
background-color: $secondary-color!important;
|
|
88
|
+
@extend .z-depth-1-half;
|
|
89
|
+
&:hover {
|
|
90
|
+
color: #fff;
|
|
91
|
+
background-color: lighten( $secondary-color, 5%)!important;
|
|
92
|
+
}
|
|
93
|
+
&:focus {
|
|
94
|
+
color: #fff;
|
|
95
|
+
background-color: $secondary-color;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.btn-secondary:active:hover {
|
|
101
|
+
background-color: lighten( $secondary-color, 5%)!important;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.btn-primary {
|
|
105
|
+
background: $primary-color;
|
|
106
|
+
&:hover,
|
|
107
|
+
&:focus {
|
|
108
|
+
background-color: lighten( $primary-color, 5%)!important;
|
|
109
|
+
}
|
|
110
|
+
&.active {
|
|
111
|
+
background-color: darken( $primary-color, 20%)!important;
|
|
112
|
+
@extend .z-depth-1-half;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.btn-default {
|
|
117
|
+
background: $default-color;
|
|
118
|
+
&:hover,
|
|
119
|
+
&:focus {
|
|
120
|
+
background-color: lighten( $default-color, 5%)!important;
|
|
121
|
+
}
|
|
122
|
+
&.active {
|
|
123
|
+
background-color: darken( $default-color, 20%)!important;
|
|
124
|
+
@extend .z-depth-1-half;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.btn-success {
|
|
129
|
+
background: $success-color;
|
|
130
|
+
&:hover,
|
|
131
|
+
&:focus {
|
|
132
|
+
background-color: lighten( $success-color, 2%)!important;
|
|
133
|
+
}
|
|
134
|
+
&.active {
|
|
135
|
+
background-color: darken( $success-color, 20%)!important;
|
|
136
|
+
@extend .z-depth-1-half;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.btn-info {
|
|
141
|
+
background: $info-color;
|
|
142
|
+
&:hover,
|
|
143
|
+
&:focus {
|
|
144
|
+
background-color: lighten( $info-color, 5%)!important;
|
|
145
|
+
}
|
|
146
|
+
&.active {
|
|
147
|
+
background-color: darken( $info-color, 20%)!important;
|
|
148
|
+
@extend .z-depth-1-half;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.btn-warning {
|
|
153
|
+
background: $warning-color-dark;
|
|
154
|
+
&:hover,
|
|
155
|
+
&:focus {
|
|
156
|
+
background-color: lighten( $warning-color-dark, 6%)!important;
|
|
157
|
+
}
|
|
158
|
+
&.active {
|
|
159
|
+
background-color: darken( $warning-color, 20%)!important;
|
|
160
|
+
@extend .z-depth-1-half;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.btn-danger {
|
|
165
|
+
background: $danger-color-dark;
|
|
166
|
+
&:hover,
|
|
167
|
+
&:focus {
|
|
168
|
+
background-color: lighten( $danger-color-dark, 3%)!important;
|
|
169
|
+
}
|
|
170
|
+
&.active {
|
|
171
|
+
background-color: darken( $danger-color-dark, 15%)!important;
|
|
172
|
+
@extend .z-depth-1-half;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.btn-link {
|
|
177
|
+
background-color: transparent;
|
|
178
|
+
color: #000!important;
|
|
179
|
+
&:hover,
|
|
180
|
+
&:focus {
|
|
181
|
+
background-color: transparent;
|
|
182
|
+
color: #000;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
// Additional button styles
|
|
187
|
+
.btn-outline-primary {
|
|
188
|
+
border: 2px solid $primary-color;
|
|
189
|
+
color: $primary-color-dark!important;
|
|
190
|
+
background-color: transparent;
|
|
191
|
+
&:hover,
|
|
192
|
+
&:focus,
|
|
193
|
+
&:active,
|
|
194
|
+
&:active:focus {
|
|
195
|
+
color: $primary-color;
|
|
196
|
+
border-color: $primary-color;
|
|
197
|
+
background-color: transparent;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.btn-outline-secondary {
|
|
202
|
+
border: 2px solid $secondary-color;
|
|
203
|
+
color: $secondary-color-dark!important;
|
|
204
|
+
background-color: transparent;
|
|
205
|
+
&:hover,
|
|
206
|
+
&:focus,
|
|
207
|
+
&:active,
|
|
208
|
+
&:active:focus {
|
|
209
|
+
color: $secondary-color;
|
|
210
|
+
border: 2px solid $secondary-color;
|
|
211
|
+
background-color: transparent;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.btn-outline-default {
|
|
216
|
+
background-color: transparent;
|
|
217
|
+
border: 2px solid $default-color;
|
|
218
|
+
color: $default-color-dark!important;
|
|
219
|
+
background-color: transparent;
|
|
220
|
+
&:hover,
|
|
221
|
+
&:focus,
|
|
222
|
+
&:active,
|
|
223
|
+
&:active:focus {
|
|
224
|
+
color: $default-color;
|
|
225
|
+
border-color: $default-color;
|
|
226
|
+
background-color:transparent;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.btn-outline-success {
|
|
231
|
+
border: 2px solid $success-color;
|
|
232
|
+
color: $success-color-dark!important;
|
|
233
|
+
background-color: transparent;
|
|
234
|
+
&:hover,
|
|
235
|
+
&:focus,
|
|
236
|
+
&:active,
|
|
237
|
+
&:active:focus {
|
|
238
|
+
color: $success-color;
|
|
239
|
+
border-color: $success-color;
|
|
240
|
+
background-color: transparent;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.btn-outline-info {
|
|
245
|
+
border: 2px solid $info-color;
|
|
246
|
+
color: $info-color-dark!important;
|
|
247
|
+
background-color: transparent;
|
|
248
|
+
&:hover,
|
|
249
|
+
&:focus,
|
|
250
|
+
&:active,
|
|
251
|
+
&:active:focus {
|
|
252
|
+
color: $info-color;
|
|
253
|
+
border-color: $info-color;
|
|
254
|
+
background-color: transparent;
|
|
255
|
+
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.btn-outline-warning {
|
|
260
|
+
border: 2px solid $warning-color;
|
|
261
|
+
color: $warning-color-dark!important;
|
|
262
|
+
background-color: transparent;
|
|
263
|
+
&:hover,
|
|
264
|
+
&:focus,
|
|
265
|
+
&:active,
|
|
266
|
+
&:active:focus {
|
|
267
|
+
border-color: $warning-color;
|
|
268
|
+
color: $warning-color;
|
|
269
|
+
background-color: transparent;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.btn-outline-danger {
|
|
274
|
+
border: 2px solid $danger-color;
|
|
275
|
+
color: $danger-color-dark!important;
|
|
276
|
+
background-color: transparent;
|
|
277
|
+
&:hover,
|
|
278
|
+
&:focus,
|
|
279
|
+
&:active,
|
|
280
|
+
&:active:focus {
|
|
281
|
+
color: $danger-color;
|
|
282
|
+
border-color: $danger-color;
|
|
283
|
+
background-color: transparent;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.btn-outline-white {
|
|
288
|
+
border: 2px solid #fff;
|
|
289
|
+
color: #fff!important;
|
|
290
|
+
background-color: transparent;
|
|
291
|
+
&:hover,
|
|
292
|
+
&:focus,
|
|
293
|
+
&:active,
|
|
294
|
+
&:active:focus {
|
|
295
|
+
color: darken( #fff, 10%);
|
|
296
|
+
border-color: #fff;
|
|
297
|
+
background-color:transparent;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.btn-outline-black {
|
|
302
|
+
border: 2px solid #000;
|
|
303
|
+
color: #000!important;
|
|
304
|
+
background-color: transparent;
|
|
305
|
+
&:hover,
|
|
306
|
+
&:focus,
|
|
307
|
+
&:active,
|
|
308
|
+
&:active:focus {
|
|
309
|
+
color: #000;
|
|
310
|
+
border-color: #000;
|
|
311
|
+
background-color: transparent;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// Pagination
|
|
316
|
+
.pager li a {
|
|
317
|
+
border: 0;
|
|
318
|
+
@extend .z-depth-1;
|
|
319
|
+
transition: .2s ease-out;
|
|
320
|
+
&:hover {
|
|
321
|
+
@extend .z-depth-1-half;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// Additional buttons colors
|
|
326
|
+
.btn-elegant {
|
|
327
|
+
background: $elegant-color;
|
|
328
|
+
&:hover,
|
|
329
|
+
&:focus {
|
|
330
|
+
background-color: lighten( $elegant-color, 5%)!important;
|
|
331
|
+
}
|
|
332
|
+
&.active {
|
|
333
|
+
background-color: darken( $elegant-color, 20%)!important;
|
|
334
|
+
@extend .z-depth-1-half;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.btn-unique {
|
|
339
|
+
background: $unique-color-dark;
|
|
340
|
+
&:hover,
|
|
341
|
+
&:focus {
|
|
342
|
+
background-color: lighten( $unique-color-dark, 5%)!important;
|
|
343
|
+
}
|
|
344
|
+
&.active {
|
|
345
|
+
background-color: darken( $unique-color-dark, 20%)!important;
|
|
346
|
+
@extend .z-depth-1-half;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.btn-pink {
|
|
351
|
+
background: #e91e63;
|
|
352
|
+
&:hover,
|
|
353
|
+
&:focus {
|
|
354
|
+
background-color: lighten(#e91e63, 5%)!important;
|
|
355
|
+
}
|
|
356
|
+
&.active {
|
|
357
|
+
background-color: darken(#e91e63, 20%)!important;
|
|
358
|
+
@extend .z-depth-1-half;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.btn-purple {
|
|
363
|
+
background: #4a148c;
|
|
364
|
+
&:hover,
|
|
365
|
+
&:focus {
|
|
366
|
+
background-color: lighten(#4a148c, 5%)!important;
|
|
367
|
+
}
|
|
368
|
+
&.active {
|
|
369
|
+
background-color: darken(#4a148c, 20%)!important;
|
|
370
|
+
@extend .z-depth-1-half;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.btn-deep-purple {
|
|
375
|
+
background: #311b92;
|
|
376
|
+
&:hover,
|
|
377
|
+
&:focus {
|
|
378
|
+
background-color: lighten(#311b92, 5%)!important;
|
|
379
|
+
}
|
|
380
|
+
&.active {
|
|
381
|
+
background-color: darken(#311b92, 20%)!important;
|
|
382
|
+
@extend .z-depth-1-half;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.btn-indigo {
|
|
387
|
+
background: #1a237e;
|
|
388
|
+
&:hover,
|
|
389
|
+
&:focus {
|
|
390
|
+
background-color: lighten(#1a237e, 5%)!important;
|
|
391
|
+
}
|
|
392
|
+
&.active {
|
|
393
|
+
background-color: darken(#1a237e, 20%)!important;
|
|
394
|
+
@extend .z-depth-1-half;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.btn-cyan {
|
|
399
|
+
background: #00acc1;
|
|
400
|
+
&:hover,
|
|
401
|
+
&:focus {
|
|
402
|
+
background-color: lighten(#00acc1, 5%)!important;
|
|
403
|
+
}
|
|
404
|
+
&.active {
|
|
405
|
+
background-color: darken(#00acc1, 20%)!important;
|
|
406
|
+
@extend .z-depth-1-half;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.btn-light-green {
|
|
411
|
+
background: #7cb342;
|
|
412
|
+
&:hover,
|
|
413
|
+
&:focus {
|
|
414
|
+
background-color: lighten(#7cb342, 5%)!important;
|
|
415
|
+
}
|
|
416
|
+
&.active {
|
|
417
|
+
background-color: darken(#7cb342, 20%)!important;
|
|
418
|
+
@extend .z-depth-1-half;
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.btn-dark-green {
|
|
423
|
+
background: #007E33;
|
|
424
|
+
&:hover,
|
|
425
|
+
&:focus {
|
|
426
|
+
background-color: lighten(#007E33, 5%)!important;
|
|
427
|
+
}
|
|
428
|
+
&.active {
|
|
429
|
+
background-color: darken(#007E33, 20%)!important;
|
|
430
|
+
@extend .z-depth-1-half;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.btn-lime {
|
|
435
|
+
background: #afb42b;
|
|
436
|
+
&:hover,
|
|
437
|
+
&:focus {
|
|
438
|
+
background-color: lighten(#afb42b, 5%)!important;
|
|
439
|
+
}
|
|
440
|
+
&.active {
|
|
441
|
+
background-color: darken(#afb42b, 20%)!important;
|
|
442
|
+
@extend .z-depth-1-half;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.btn-yellow {
|
|
447
|
+
background: #fbc02d;
|
|
448
|
+
&:hover,
|
|
449
|
+
&:focus {
|
|
450
|
+
background-color: lighten(#fbc02d, 5%)!important;
|
|
451
|
+
}
|
|
452
|
+
&.active {
|
|
453
|
+
background-color: darken(#fbc02d, 20%)!important;
|
|
454
|
+
@extend .z-depth-1-half;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.btn-amber {
|
|
459
|
+
background: #ff6f00;
|
|
460
|
+
&:hover,
|
|
461
|
+
&:focus {
|
|
462
|
+
background-color: lighten(#ff6f00, 5%)!important;
|
|
463
|
+
}
|
|
464
|
+
&.active {
|
|
465
|
+
background-color: darken(#ff6f00, 20%)!important;
|
|
466
|
+
@extend .z-depth-1-half;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.btn-orange {
|
|
471
|
+
background: #e65100;
|
|
472
|
+
&:hover,
|
|
473
|
+
&:focus {
|
|
474
|
+
background-color: lighten(#e65100, 5%)!important;
|
|
475
|
+
}
|
|
476
|
+
&.active {
|
|
477
|
+
background-color: darken(#e65100, 20%)!important;
|
|
478
|
+
@extend .z-depth-1-half;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.btn-deep-orange {
|
|
483
|
+
background: #bf360c;
|
|
484
|
+
&:hover,
|
|
485
|
+
&:focus {
|
|
486
|
+
background-color: lighten(#bf360c, 5%)!important;
|
|
487
|
+
}
|
|
488
|
+
&.active {
|
|
489
|
+
background-color: darken(#bf360c, 20%)!important;
|
|
490
|
+
@extend .z-depth-1-half;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.btn-brown {
|
|
495
|
+
background: #6d4c41;
|
|
496
|
+
&:hover,
|
|
497
|
+
&:focus {
|
|
498
|
+
background-color: lighten(#6d4c41, 5%)!important;
|
|
499
|
+
}
|
|
500
|
+
&.active {
|
|
501
|
+
background-color: darken(#6d4c41, 20%)!important;
|
|
502
|
+
@extend .z-depth-1-half;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.btn-blue-grey {
|
|
507
|
+
background: #607d8b;
|
|
508
|
+
&:hover,
|
|
509
|
+
&:focus {
|
|
510
|
+
background-color: lighten(#607d8b, 5%)!important;
|
|
511
|
+
}
|
|
512
|
+
&.active {
|
|
513
|
+
background-color: darken(#607d8b, 20%)!important;
|
|
514
|
+
@extend .z-depth-1-half;
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.btn-mdb {
|
|
519
|
+
background: #45526E;
|
|
520
|
+
&:hover,
|
|
521
|
+
&:focus {
|
|
522
|
+
background-color: lighten(#45526E, 5%)!important;
|
|
523
|
+
}
|
|
524
|
+
&.active {
|
|
525
|
+
background-color: darken(#45526E, 20%)!important;
|
|
526
|
+
@extend .z-depth-1-half;
|
|
527
|
+
}
|
|
528
|
+
}
|