active_frontend 6.2.0 → 6.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/stylesheets/_animation.scss +0 -2
- data/vendor/assets/stylesheets/_aside.scss +3 -3
- data/vendor/assets/stylesheets/_breadcrumb.scss +2 -2
- data/vendor/assets/stylesheets/_button.scss +196 -133
- data/vendor/assets/stylesheets/_carousel.scss +24 -24
- data/vendor/assets/stylesheets/_collapse.scss +1 -1
- data/vendor/assets/stylesheets/_datepicker.scss +31 -62
- data/vendor/assets/stylesheets/_dropdown.scss +6 -10
- data/vendor/assets/stylesheets/_footer.scss +3 -3
- data/vendor/assets/stylesheets/_form.scss +52 -71
- data/vendor/assets/stylesheets/_header.scss +79 -93
- data/vendor/assets/stylesheets/_icon.scss +2 -16
- data/vendor/assets/stylesheets/_image.scss +1 -1
- data/vendor/assets/stylesheets/_link.scss +2 -1
- data/vendor/assets/stylesheets/_list.scss +9 -10
- data/vendor/assets/stylesheets/_loader.scss +3 -11
- data/vendor/assets/stylesheets/_modal.scss +7 -7
- data/vendor/assets/stylesheets/_nav_and_tab.scss +23 -24
- data/vendor/assets/stylesheets/_navbar.scss +3 -3
- data/vendor/assets/stylesheets/_pagination.scss +17 -15
- data/vendor/assets/stylesheets/_panel.scss +6 -27
- data/vendor/assets/stylesheets/_placeholder.scss +5 -5
- data/vendor/assets/stylesheets/_popover.scss +20 -21
- data/vendor/assets/stylesheets/_progress.scss +3 -3
- data/vendor/assets/stylesheets/_reset.scss +3 -3
- data/vendor/assets/stylesheets/_spinner.scss +313 -403
- data/vendor/assets/stylesheets/_swoggle.scss +8 -10
- data/vendor/assets/stylesheets/_table.scss +4 -13
- data/vendor/assets/stylesheets/_timepicker.scss +12 -18
- data/vendor/assets/stylesheets/_tooltip.scss +7 -7
- data/vendor/assets/stylesheets/_transition.scss +2 -2
- data/vendor/assets/stylesheets/_trunk.scss +32 -51
- data/vendor/assets/stylesheets/_typeahead.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b76d774f8e3211387e19fe3c3a70ba11508f8e7
|
4
|
+
data.tar.gz: 9a3222a789b4148f523e8f69f0f698065610b13c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f66ea0b03134d3a4ef3a6384b4e9b5514cd4536080e29051e2fae4c37bd503dd540b6850ed6136c75dfc139477a60b4e31bbeddc493b628693644c2d3e6d3512
|
7
|
+
data.tar.gz: 60e427bd97d0d0a201559d38061d5b78882eee9df2a507ea902e2853829e134666afbba2cdef285d4734bcff5c71c66492774ce0cbd6029615252f6cb42d67e3
|
@@ -11,8 +11,6 @@
|
|
11
11
|
animation-duration: 1s;
|
12
12
|
-webkit-animation-fill-mode: both;
|
13
13
|
animation-fill-mode: both;
|
14
|
-
-webkit-backface-visibility: hidden !important;
|
15
|
-
backface-visibility: hidden !important;
|
16
14
|
-webkit-perspective: 1000;
|
17
15
|
perspective: 1000;
|
18
16
|
position: relative;
|
@@ -56,7 +56,7 @@
|
|
56
56
|
width: 100%;
|
57
57
|
z-index: 1051;
|
58
58
|
}
|
59
|
-
.aside-header h3 {
|
59
|
+
.aside-header > h3 {
|
60
60
|
color: rgba(255,255,255,1);
|
61
61
|
font-size: 14px;
|
62
62
|
letter-spacing: 1px;
|
@@ -74,7 +74,7 @@
|
|
74
74
|
top: 0;
|
75
75
|
z-index: 1051;
|
76
76
|
}
|
77
|
-
.aside-body p:last-child { margin-bottom: 0; }
|
77
|
+
.aside-body > p:last-child { margin-bottom: 0; }
|
78
78
|
.aside-footer {
|
79
79
|
background: rgba(255,255,255,1);
|
80
80
|
border-top: 1px solid rgba(230,237,242,1);
|
@@ -89,7 +89,7 @@
|
|
89
89
|
button.aside-footer-btn,
|
90
90
|
input.aside-footer-btn {
|
91
91
|
-webkit-appearance: none;
|
92
|
-
|
92
|
+
appearance: none;
|
93
93
|
background: rgba(255,255,255,1);
|
94
94
|
border-radius: 0;
|
95
95
|
border: 0;
|
@@ -6,13 +6,13 @@
|
|
6
6
|
================================================== */
|
7
7
|
.breadcrumb {
|
8
8
|
list-style: none;
|
9
|
-
margin
|
9
|
+
margin: 0 0 10px 0;
|
10
10
|
padding: 0;
|
11
11
|
}
|
12
12
|
.breadcrumb > li {
|
13
13
|
display: inline-block;
|
14
|
-
font-weight: bold;
|
15
14
|
font-size: 13px;
|
15
|
+
font-weight: bold;
|
16
16
|
}
|
17
17
|
.breadcrumb > li > a { color: rgba(35,41,55,1); }
|
18
18
|
.breadcrumb > li > a:hover { color: $primary-color; }
|
@@ -16,7 +16,7 @@
|
|
16
16
|
================================================== */
|
17
17
|
.btn {
|
18
18
|
-webkit-appearance: none;
|
19
|
-
|
19
|
+
appearance: none;
|
20
20
|
background: rgba(245,248,250,1);
|
21
21
|
border: 1px solid rgba(245,248,250,1);
|
22
22
|
border-radius: 2px;
|
@@ -35,24 +35,29 @@
|
|
35
35
|
text-decoration: none;
|
36
36
|
text-rendering: geometricPrecision;
|
37
37
|
text-transform: uppercase;
|
38
|
+
touch-action: manipulation;
|
38
39
|
-webkit-transition: all 0.3s linear;
|
39
40
|
transition: all 0.3s linear;
|
40
41
|
vertical-align: middle;
|
41
42
|
white-space: nowrap;
|
42
43
|
}
|
43
|
-
.btn:active,
|
44
|
-
.btn.active,
|
45
44
|
.btn:hover,
|
46
45
|
.btn:focus,
|
46
|
+
.btn:active,
|
47
|
+
.btn.active,
|
47
48
|
.btn[disabled],
|
48
49
|
.btn[disabled]:hover,
|
50
|
+
.btn[disabled]:focus,
|
51
|
+
.btn[disabled]:active,
|
49
52
|
.open > .dropdown-toggle.btn {
|
50
53
|
background: rgba(240,243,245,1);
|
51
54
|
border-color: rgba(240,243,245,1);
|
52
55
|
text-decoration: none;
|
53
56
|
}
|
54
57
|
.btn[disabled],
|
55
|
-
.btn[disabled]:hover
|
58
|
+
.btn[disabled]:hover,
|
59
|
+
.btn[disabled]:focus,
|
60
|
+
.btn[disabled]:active {
|
56
61
|
cursor: not-allowed;
|
57
62
|
pointer-events: none;
|
58
63
|
}
|
@@ -84,17 +89,26 @@ input.btn-block {
|
|
84
89
|
|
85
90
|
/* # Colors
|
86
91
|
================================================== */
|
92
|
+
.btn-black,
|
93
|
+
.btn-blue,
|
94
|
+
.btn-green,
|
95
|
+
.btn-orange,
|
96
|
+
.btn-purple,
|
97
|
+
.btn-red,
|
98
|
+
.btn-smoke,
|
99
|
+
.btn-yellow { color: rgba(255,255,255,1); }
|
87
100
|
.btn-black {
|
88
101
|
background: rgba(35,41,55,1);
|
89
102
|
border-color: rgba(35,41,55,1);
|
90
|
-
color: rgba(255,255,255,1) !important;
|
91
103
|
}
|
92
|
-
.btn-black[disabled],
|
93
|
-
.btn-black[disabled]:hover,
|
94
|
-
.btn-black:active,
|
95
|
-
.btn-black.active,
|
96
104
|
.btn-black:hover,
|
97
105
|
.btn-black:focus,
|
106
|
+
.btn-black:active,
|
107
|
+
.btn-black.active,
|
108
|
+
.btn-black[disabled],
|
109
|
+
.btn-black[disabled]:hover,
|
110
|
+
.btn-black[disabled]:focus,
|
111
|
+
.btn-black[disabled]:active,
|
98
112
|
.open > .dropdown-toggle.btn.btn-black {
|
99
113
|
background: rgba(25,31,45,1);
|
100
114
|
border-color: rgba(25,31,45,1);
|
@@ -102,14 +116,15 @@ input.btn-block {
|
|
102
116
|
.btn-blue {
|
103
117
|
background: rgba(0,102,255,1);
|
104
118
|
border-color: rgba(0,102,255,1);
|
105
|
-
color: rgba(255,255,255,1) !important;
|
106
119
|
}
|
107
|
-
.btn-blue[disabled],
|
108
|
-
.btn-blue[disabled]:hover,
|
109
|
-
.btn-blue:active,
|
110
|
-
.btn-blue.active,
|
111
120
|
.btn-blue:hover,
|
112
121
|
.btn-blue:focus,
|
122
|
+
.btn-blue:active,
|
123
|
+
.btn-blue.active,
|
124
|
+
.btn-blue[disabled],
|
125
|
+
.btn-blue[disabled]:hover,
|
126
|
+
.btn-blue[disabled]:focus,
|
127
|
+
.btn-blue[disabled]:active,
|
113
128
|
.open > .dropdown-toggle.btn.btn-blue {
|
114
129
|
background: rgba(0,92,245,1);
|
115
130
|
border-color: rgba(0,92,245,1);
|
@@ -117,14 +132,15 @@ input.btn-block {
|
|
117
132
|
.btn-green {
|
118
133
|
background: rgba(0,200,0,1);
|
119
134
|
border-color: rgba(0,200,0,1);
|
120
|
-
color: rgba(255,255,255,1) !important;
|
121
135
|
}
|
122
|
-
.btn-green[disabled],
|
123
|
-
.btn-green[disabled]:hover,
|
124
|
-
.btn-green:active,
|
125
|
-
.btn-green.active,
|
126
136
|
.btn-green:hover,
|
127
137
|
.btn-green:focus,
|
138
|
+
.btn-green:active,
|
139
|
+
.btn-green.active,
|
140
|
+
.btn-green[disabled],
|
141
|
+
.btn-green[disabled]:hover,
|
142
|
+
.btn-green[disabled]:focus,
|
143
|
+
.btn-green[disabled]:active,
|
128
144
|
.open > .dropdown-toggle.btn.btn-green {
|
129
145
|
background: rgba(0,190,0,1);
|
130
146
|
border-color: rgba(0,190,0,1);
|
@@ -132,14 +148,15 @@ input.btn-block {
|
|
132
148
|
.btn-orange {
|
133
149
|
background: rgba(255,82,0,1);
|
134
150
|
border-color: rgba(255,82,0,1);
|
135
|
-
color: rgba(255,255,255,1) !important;
|
136
151
|
}
|
137
|
-
.btn-orange[disabled],
|
138
|
-
.btn-orange[disabled]:hover,
|
139
|
-
.btn-orange:active,
|
140
|
-
.btn-orange.active,
|
141
152
|
.btn-orange:hover,
|
142
153
|
.btn-orange:focus,
|
154
|
+
.btn-orange:active,
|
155
|
+
.btn-orange.active,
|
156
|
+
.btn-orange[disabled],
|
157
|
+
.btn-orange[disabled]:hover,
|
158
|
+
.btn-orange[disabled]:focus,
|
159
|
+
.btn-orange[disabled]:active,
|
143
160
|
.open > .dropdown-toggle.btn.btn-orange {
|
144
161
|
background: rgba(245,72,0,1);
|
145
162
|
border-color: rgba(245,72,0,1);
|
@@ -147,14 +164,15 @@ input.btn-block {
|
|
147
164
|
.btn-purple {
|
148
165
|
background: rgba(128,0,255,1);
|
149
166
|
border-color: rgba(128,0,255,1);
|
150
|
-
color: rgba(255,255,255,1) !important;
|
151
167
|
}
|
152
|
-
.btn-purple[disabled],
|
153
|
-
.btn-purple[disabled]:hover,
|
154
|
-
.btn-purple:active,
|
155
|
-
.btn-purple.active,
|
156
168
|
.btn-purple:hover,
|
157
169
|
.btn-purple:focus,
|
170
|
+
.btn-purple:active,
|
171
|
+
.btn-purple.active,
|
172
|
+
.btn-purple[disabled],
|
173
|
+
.btn-purple[disabled]:hover,
|
174
|
+
.btn-purple[disabled]:focus,
|
175
|
+
.btn-purple[disabled]:active,
|
158
176
|
.open > .dropdown-toggle.btn.btn-purple {
|
159
177
|
background: rgba(118,0,255,1);
|
160
178
|
border-color: rgba(118,0,255,1);
|
@@ -162,14 +180,15 @@ input.btn-block {
|
|
162
180
|
.btn-red {
|
163
181
|
background: rgba(240,35,17,1);
|
164
182
|
border-color: rgba(240,35,17,1);
|
165
|
-
color: rgba(255,255,255,1) !important;
|
166
183
|
}
|
167
|
-
.btn-red[disabled],
|
168
|
-
.btn-red[disabled]:hover,
|
169
|
-
.btn-red:active,
|
170
|
-
.btn-red.active,
|
171
184
|
.btn-red:hover,
|
172
185
|
.btn-red:focus,
|
186
|
+
.btn-red:active,
|
187
|
+
.btn-red.active,
|
188
|
+
.btn-red[disabled],
|
189
|
+
.btn-red[disabled]:hover,
|
190
|
+
.btn-red[disabled]:focus,
|
191
|
+
.btn-red[disabled]:active,
|
173
192
|
.open > .dropdown-toggle.btn.btn-red {
|
174
193
|
background: rgba(230,25,7,1);
|
175
194
|
border-color: rgba(230,25,7,1);
|
@@ -177,14 +196,15 @@ input.btn-block {
|
|
177
196
|
.btn-smoke {
|
178
197
|
background: rgba(85,94,113,1);
|
179
198
|
border-color: rgba(85,94,113,1);
|
180
|
-
color: rgba(255,255,255,1) !important;
|
181
199
|
}
|
182
|
-
.btn-smoke[disabled],
|
183
|
-
.btn-smoke[disabled]:hover,
|
184
|
-
.btn-smoke:active,
|
185
|
-
.btn-smoke.active,
|
186
200
|
.btn-smoke:hover,
|
187
201
|
.btn-smoke:focus,
|
202
|
+
.btn-smoke:active,
|
203
|
+
.btn-smoke.active,
|
204
|
+
.btn-smoke[disabled],
|
205
|
+
.btn-smoke[disabled]:hover,
|
206
|
+
.btn-smoke[disabled]:focus,
|
207
|
+
.btn-smoke[disabled]:active,
|
188
208
|
.open > .dropdown-toggle.btn.btn-smoke {
|
189
209
|
background: rgba(75,84,103,1);
|
190
210
|
border-color: rgba(75,84,103,1);
|
@@ -193,12 +213,14 @@ input.btn-block {
|
|
193
213
|
background: rgba(255,255,255,1);
|
194
214
|
border-color: rgba(255,255,255,1);
|
195
215
|
}
|
196
|
-
.btn-white[disabled],
|
197
|
-
.btn-white[disabled]:hover,
|
198
|
-
.btn-white:active,
|
199
|
-
.btn-white.active,
|
200
216
|
.btn-white:hover,
|
201
217
|
.btn-white:focus,
|
218
|
+
.btn-white:active,
|
219
|
+
.btn-white.active,
|
220
|
+
.btn-white[disabled],
|
221
|
+
.btn-white[disabled]:hover,
|
222
|
+
.btn-white[disabled]:focus,
|
223
|
+
.btn-white[disabled]:active,
|
202
224
|
.open > .dropdown-toggle.btn.btn-white {
|
203
225
|
background: rgba(240,243,245,1);
|
204
226
|
border-color: rgba(240,243,245,1);
|
@@ -206,14 +228,15 @@ input.btn-block {
|
|
206
228
|
.btn-yellow {
|
207
229
|
background: rgba(255,245,0,1);
|
208
230
|
border-color: rgba(255,245,0,1);
|
209
|
-
color: rgba(255,255,255,1) !important;
|
210
231
|
}
|
211
|
-
.btn-yellow[disabled],
|
212
|
-
.btn-yellow[disabled]:hover,
|
213
|
-
.btn-yellow:active,
|
214
|
-
.btn-yellow.active,
|
215
232
|
.btn-yellow:hover,
|
216
233
|
.btn-yellow:focus,
|
234
|
+
.btn-yellow:active,
|
235
|
+
.btn-yellow.active,
|
236
|
+
.btn-yellow[disabled],
|
237
|
+
.btn-yellow[disabled]:hover,
|
238
|
+
.btn-yellow[disabled]:focus,
|
239
|
+
.btn-yellow[disabled]:active,
|
217
240
|
.open > .dropdown-toggle.btn.btn-yellow {
|
218
241
|
background: rgba(245,235,0,1);
|
219
242
|
border-color: rgba(245,235,0,1);
|
@@ -225,19 +248,20 @@ input.btn-block {
|
|
225
248
|
background: transparent;
|
226
249
|
border-color: transparent;
|
227
250
|
border-radius: 0;
|
228
|
-
|
229
|
-
color: rgba(136,153,166,1) !important;
|
251
|
+
color: rgba(136,153,166,1);
|
230
252
|
padding: 0;
|
231
253
|
}
|
232
|
-
.btn-link:active,
|
233
|
-
.btn-link.active,
|
234
254
|
.btn-link:hover,
|
235
255
|
.btn-link:focus,
|
256
|
+
.btn-link:active,
|
257
|
+
.btn-link.active,
|
236
258
|
.btn-link[disabled],
|
237
|
-
.btn-link[disabled]:hover
|
259
|
+
.btn-link[disabled]:hover,
|
260
|
+
.btn-link[disabled]:focus,
|
261
|
+
.btn-link[disabled]:active {
|
238
262
|
background: transparent;
|
239
263
|
border-color: transparent;
|
240
|
-
color: rgba(85,94,113,1)
|
264
|
+
color: rgba(85,94,113,1);
|
241
265
|
}
|
242
266
|
|
243
267
|
/* # Icons
|
@@ -277,117 +301,156 @@ input.btn-block {
|
|
277
301
|
================================================== */
|
278
302
|
.btn-outline,
|
279
303
|
.btn-outline[disabled],
|
280
|
-
.btn-outline[disabled]:hover
|
304
|
+
.btn-outline[disabled]:hover,
|
305
|
+
.btn-outline[disabled]:focus,
|
306
|
+
.btn-outline[disabled]:active {
|
281
307
|
background: transparent;
|
282
|
-
color: rgba(85,94,113,1)
|
308
|
+
color: rgba(85,94,113,1);
|
283
309
|
}
|
284
|
-
.btn-outline:active,
|
285
|
-
.btn-outline.active,
|
286
310
|
.btn-outline:hover,
|
287
311
|
.btn-outline:focus,
|
312
|
+
.btn-outline:active,
|
313
|
+
.btn-outline.active,
|
288
314
|
.open > .dropdown-toggle.btn.btn-outline {
|
289
315
|
background: rgba(240,243,245,1);
|
290
|
-
color: rgba(35,41,55,1)
|
316
|
+
color: rgba(35,41,55,1);
|
291
317
|
}
|
292
318
|
.btn-outline.btn-black,
|
293
319
|
.btn-outline.btn-black[disabled],
|
294
|
-
.btn-outline.btn-black[disabled]:hover
|
295
|
-
.btn-outline.btn-black:
|
296
|
-
.btn-outline.btn-black
|
297
|
-
.btn-outline.btn-black:hover,
|
298
|
-
.btn-outline.btn-black:focus,
|
299
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-black {
|
300
|
-
background: rgba(25,31,45,1);
|
301
|
-
color: rgba(255,255,255,1) !important;
|
302
|
-
}
|
320
|
+
.btn-outline.btn-black[disabled]:hover,
|
321
|
+
.btn-outline.btn-black[disabled]:focus,
|
322
|
+
.btn-outline.btn-black[disabled]:active { color: rgba(35,41,55,1); }
|
303
323
|
.btn-outline.btn-blue,
|
304
324
|
.btn-outline.btn-blue[disabled],
|
305
|
-
.btn-outline.btn-blue[disabled]:hover
|
306
|
-
.btn-outline.btn-blue:
|
307
|
-
.btn-outline.btn-blue
|
308
|
-
.btn-outline.btn-blue:hover,
|
309
|
-
.btn-outline.btn-blue:focus,
|
310
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-blue {
|
311
|
-
background: rgba(0,92,245,1);
|
312
|
-
color: rgba(255,255,255,1) !important;
|
313
|
-
}
|
325
|
+
.btn-outline.btn-blue[disabled]:hover,
|
326
|
+
.btn-outline.btn-blue[disabled]:focus,
|
327
|
+
.btn-outline.btn-blue[disabled]:active { color: rgba(0,102,255,1); }
|
314
328
|
.btn-outline.btn-green,
|
315
329
|
.btn-outline.btn-green[disabled],
|
316
|
-
.btn-outline.btn-green[disabled]:hover
|
317
|
-
.btn-outline.btn-green:
|
318
|
-
.btn-outline.btn-green
|
319
|
-
.btn-outline.btn-green:hover,
|
320
|
-
.btn-outline.btn-green:focus,
|
321
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-green {
|
322
|
-
background: rgba(0,190,0,1);
|
323
|
-
color: rgba(255,255,255,1) !important;
|
324
|
-
}
|
330
|
+
.btn-outline.btn-green[disabled]:hover,
|
331
|
+
.btn-outline.btn-green[disabled]:focus,
|
332
|
+
.btn-outline.btn-green[disabled]:active { color: rgba(0,204,0,1); }
|
325
333
|
.btn-outline.btn-orange,
|
326
334
|
.btn-outline.btn-orange[disabled],
|
327
|
-
.btn-outline.btn-orange[disabled]:hover
|
328
|
-
.btn-outline.btn-orange:
|
329
|
-
.btn-outline.btn-orange
|
330
|
-
.btn-outline.btn-orange:hover,
|
331
|
-
.btn-outline.btn-orange:focus,
|
332
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-orange {
|
333
|
-
background: rgba(245,72,0,1);
|
334
|
-
color: rgba(255,255,255,1) !important;
|
335
|
-
}
|
335
|
+
.btn-outline.btn-orange[disabled]:hover,
|
336
|
+
.btn-outline.btn-orange[disabled]:focus,
|
337
|
+
.btn-outline.btn-orange[disabled]:active { color: rgba(255,82,0,1); }
|
336
338
|
.btn-outline.btn-purple,
|
337
339
|
.btn-outline.btn-purple[disabled],
|
338
|
-
.btn-outline.btn-purple[disabled]:hover
|
339
|
-
.btn-outline.btn-purple:
|
340
|
-
.btn-outline.btn-purple
|
341
|
-
.btn-outline.btn-purple:hover,
|
342
|
-
.btn-outline.btn-purple:focus,
|
343
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-purple {
|
344
|
-
background: rgba(118,0,255,1);
|
345
|
-
color: rgba(255,255,255,1) !important;
|
346
|
-
}
|
340
|
+
.btn-outline.btn-purple[disabled]:hover,
|
341
|
+
.btn-outline.btn-purple[disabled]:focus,
|
342
|
+
.btn-outline.btn-purple[disabled]:active { color: rgba(128,0,255,1); }
|
347
343
|
.btn-outline.btn-red,
|
348
344
|
.btn-outline.btn-red[disabled],
|
349
|
-
.btn-outline.btn-red[disabled]:hover
|
350
|
-
.btn-outline.btn-red:
|
351
|
-
.btn-outline.btn-red
|
352
|
-
.btn-outline.btn-red:hover,
|
353
|
-
.btn-outline.btn-red:focus,
|
354
|
-
.open > .dropdown-toggle.btn.btn-outline.btn-red {
|
355
|
-
background: rgba(230,25,7,1);
|
356
|
-
color: rgba(255,255,255,1) !important;
|
357
|
-
}
|
345
|
+
.btn-outline.btn-red[disabled]:hover,
|
346
|
+
.btn-outline.btn-red[disabled]:focus,
|
347
|
+
.btn-outline.btn-red[disabled]:active { color: rgba(240,35,17,1); }
|
358
348
|
.btn-outline.btn-smoke,
|
359
349
|
.btn-outline.btn-smoke[disabled],
|
360
|
-
.btn-outline.btn-smoke[disabled]:hover
|
350
|
+
.btn-outline.btn-smoke[disabled]:hover,
|
351
|
+
.btn-outline.btn-smoke[disabled]:focus,
|
352
|
+
.btn-outline.btn-smoke[disabled]:active { color: rgba(85,94,113,1); }
|
353
|
+
.btn-outline.btn-white,
|
354
|
+
.btn-outline.btn-white[disabled],
|
355
|
+
.btn-outline.btn-white[disabled]:hover,
|
356
|
+
.btn-outline.btn-white[disabled]:focus,
|
357
|
+
.btn-outline.btn-white[disabled]:active { color: rgba(255,255,255,1); }
|
358
|
+
.btn-outline.btn-yellow,
|
359
|
+
.btn-outline.btn-yellow[disabled],
|
360
|
+
.btn-outline.btn-yellow[disabled]:hover,
|
361
|
+
.btn-outline.btn-yellow[disabled]:focus,
|
362
|
+
.btn-outline.btn-yellow[disabled]:active { color: rgba(255,245,0,1); }
|
363
|
+
|
364
|
+
|
365
|
+
|
366
|
+
.btn-outline.btn-black:hover,
|
367
|
+
.btn-outline.btn-black:focus,
|
368
|
+
.btn-outline.btn-black:active,
|
369
|
+
.btn-outline.btn-black.active,
|
370
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-black,
|
371
|
+
.btn-outline.btn-blue:hover,
|
372
|
+
.btn-outline.btn-blue:focus,
|
373
|
+
.btn-outline.btn-blue:active,
|
374
|
+
.btn-outline.btn-blue.active,
|
375
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-blue,
|
376
|
+
.btn-outline.btn-green:hover,
|
377
|
+
.btn-outline.btn-green:focus,
|
378
|
+
.btn-outline.btn-green:active,
|
379
|
+
.btn-outline.btn-green.active,
|
380
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-green,
|
381
|
+
.btn-outline.btn-orange:hover,
|
382
|
+
.btn-outline.btn-orange:focus,
|
383
|
+
.btn-outline.btn-orange:active,
|
384
|
+
.btn-outline.btn-orange.active,
|
385
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-orange,
|
386
|
+
.btn-outline.btn-purple:hover,
|
387
|
+
.btn-outline.btn-purple:focus,
|
388
|
+
.btn-outline.btn-purple:active,
|
389
|
+
.btn-outline.btn-purple.active,
|
390
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-purple,
|
391
|
+
.btn-outline.btn-red:hover,
|
392
|
+
.btn-outline.btn-red:focus,
|
393
|
+
.btn-outline.btn-red:active,
|
394
|
+
.btn-outline.btn-red.active,
|
395
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-red,
|
396
|
+
.btn-outline.btn-smoke:hover,
|
397
|
+
.btn-outline.btn-smoke:focus,
|
361
398
|
.btn-outline.btn-smoke:active,
|
362
399
|
.btn-outline.btn-smoke.active,
|
400
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-smoke,
|
401
|
+
.btn-outline.btn-yellow:hover,
|
402
|
+
.btn-outline.btn-yellow:focus,
|
403
|
+
.btn-outline.btn-yellow:active,
|
404
|
+
.btn-outline.btn-yellow.active,
|
405
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-yellow { color: rgba(255,255,255,1); }
|
406
|
+
.btn-outline.btn-black:hover,
|
407
|
+
.btn-outline.btn-black:focus,
|
408
|
+
.btn-outline.btn-black:active,
|
409
|
+
.btn-outline.btn-black.active,
|
410
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-black { background: rgba(25,31,45,1); }
|
411
|
+
.btn-outline.btn-blue:hover,
|
412
|
+
.btn-outline.btn-blue:focus,
|
413
|
+
.btn-outline.btn-blue:active,
|
414
|
+
.btn-outline.btn-blue.active,
|
415
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-blue { background: rgba(0,92,245,1); }
|
416
|
+
.btn-outline.btn-green:hover,
|
417
|
+
.btn-outline.btn-green:focus,
|
418
|
+
.btn-outline.btn-green:active,
|
419
|
+
.btn-outline.btn-green.active,
|
420
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-green { background: rgba(0,190,0,1); }
|
421
|
+
.btn-outline.btn-orange:hover,
|
422
|
+
.btn-outline.btn-orange:focus,
|
423
|
+
.btn-outline.btn-orange:active,
|
424
|
+
.btn-outline.btn-orange.active,
|
425
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-orange { background: rgba(245,72,0,1); }
|
426
|
+
.btn-outline.btn-purple:hover,
|
427
|
+
.btn-outline.btn-purple:focus,
|
428
|
+
.btn-outline.btn-purple:active,
|
429
|
+
.btn-outline.btn-purple.active,
|
430
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-purple { background: rgba(118,0,255,1); }
|
431
|
+
.btn-outline.btn-red:hover,
|
432
|
+
.btn-outline.btn-red:focus,
|
433
|
+
.btn-outline.btn-red:active,
|
434
|
+
.btn-outline.btn-red.active,
|
435
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-red { background: rgba(230,25,7,1); }
|
363
436
|
.btn-outline.btn-smoke:hover,
|
364
437
|
.btn-outline.btn-smoke:focus,
|
365
|
-
.
|
366
|
-
|
367
|
-
|
368
|
-
}
|
369
|
-
.btn-outline.btn-white,
|
370
|
-
.btn-outline.btn-white[disabled],
|
371
|
-
.btn-outline.btn-white[disabled]:hover { color: rgba(255,255,255,1) !important; }
|
372
|
-
.btn-outline.btn-white:active,
|
373
|
-
.btn-outline.btn-white.active,
|
438
|
+
.btn-outline.btn-smoke:active,
|
439
|
+
.btn-outline.btn-smoke.active,
|
440
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-smoke { background: rgba(75,84,103,1); }
|
374
441
|
.btn-outline.btn-white:hover,
|
375
442
|
.btn-outline.btn-white:focus,
|
443
|
+
.btn-outline.btn-white:active,
|
444
|
+
.btn-outline.btn-white.active,
|
376
445
|
.open > .dropdown-toggle.btn.btn-outline.btn-white {
|
377
446
|
background: rgba(240,243,245,1);
|
378
|
-
color: rgba(35,41,55,1)
|
447
|
+
color: rgba(35,41,55,1);
|
379
448
|
}
|
380
|
-
.btn-outline.btn-yellow,
|
381
|
-
.btn-outline.btn-yellow[disabled],
|
382
|
-
.btn-outline.btn-yellow[disabled]:hover { color: rgba(255,245,0,1) !important; }
|
383
|
-
.btn-outline.btn-yellow:active,
|
384
|
-
.btn-outline.btn-yellow.active,
|
385
449
|
.btn-outline.btn-yellow:hover,
|
386
450
|
.btn-outline.btn-yellow:focus,
|
387
|
-
.
|
388
|
-
|
389
|
-
|
390
|
-
}
|
451
|
+
.btn-outline.btn-yellow:active,
|
452
|
+
.btn-outline.btn-yellow.active,
|
453
|
+
.open > .dropdown-toggle.btn.btn-outline.btn-yellow { background: rgba(245,235,0,1); }
|
391
454
|
|
392
455
|
/* # Styles
|
393
456
|
================================================== */
|