active_frontend 6.6.2 → 7.0.0
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 +4 -4
- data/.gitignore +1 -6
- data/CODE_OF_CONDUCT.md +13 -0
- data/LICENSE.txt +17 -18
- data/README.md +0 -1
- data/active_frontend.gemspec +7 -6
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/javascripts/chart.js +4 -4
- data/vendor/assets/stylesheets/_ad.scss +2 -2
- data/vendor/assets/stylesheets/_alert.scss +9 -9
- data/vendor/assets/stylesheets/_aside.scss +10 -10
- data/vendor/assets/stylesheets/_breadcrumb.scss +4 -4
- data/vendor/assets/stylesheets/_button.scss +189 -93
- data/vendor/assets/stylesheets/_carousel.scss +25 -12
- data/vendor/assets/stylesheets/_code.scss +63 -63
- data/vendor/assets/stylesheets/_colorpicker.scss +2 -2
- data/vendor/assets/stylesheets/_datepicker.scss +9 -9
- data/vendor/assets/stylesheets/_dropdown.scss +8 -8
- data/vendor/assets/stylesheets/_footer.scss +21 -10
- data/vendor/assets/stylesheets/_form.scss +33 -32
- data/vendor/assets/stylesheets/_header.scss +39 -40
- data/vendor/assets/stylesheets/_label_and_badge.scss +32 -32
- data/vendor/assets/stylesheets/_list.scss +8 -7
- data/vendor/assets/stylesheets/_loader.scss +4 -4
- data/vendor/assets/stylesheets/_map.scss +2 -2
- data/vendor/assets/stylesheets/_modal.scss +9 -9
- data/vendor/assets/stylesheets/_nav_and_tab.scss +25 -25
- data/vendor/assets/stylesheets/_navbar.scss +8 -8
- data/vendor/assets/stylesheets/_pagination.scss +5 -5
- data/vendor/assets/stylesheets/_panel.scss +8 -8
- data/vendor/assets/stylesheets/_placeholder.scss +6 -6
- data/vendor/assets/stylesheets/_popover.scss +15 -15
- data/vendor/assets/stylesheets/_progress.scss +3 -3
- data/vendor/assets/stylesheets/_reset.scss +7 -7
- data/vendor/assets/stylesheets/_sidebar.scss +11 -11
- data/vendor/assets/stylesheets/_spinner.scss +19 -19
- data/vendor/assets/stylesheets/_swoggle.scss +21 -21
- data/vendor/assets/stylesheets/_table.scss +12 -12
- data/vendor/assets/stylesheets/_timepicker.scss +6 -6
- data/vendor/assets/stylesheets/_tooltip.scss +7 -7
- data/vendor/assets/stylesheets/_trunk.scss +7 -7
- data/vendor/assets/stylesheets/_typeahead.scss +1 -1
- data/vendor/assets/stylesheets/_typography.scss +19 -13
- data/vendor/assets/stylesheets/activefrontend.scss +22 -1
- metadata +13 -12
@@ -11,8 +11,8 @@
|
|
11
11
|
fieldset { border: 0; }
|
12
12
|
legend {
|
13
13
|
border: 0;
|
14
|
-
border-bottom: 1px solid
|
15
|
-
color:
|
14
|
+
border-bottom: 1px solid $color-haze;
|
15
|
+
color: $color-gray-dark;
|
16
16
|
display: block;
|
17
17
|
font-size: 16px;
|
18
18
|
font-weight: bold;
|
@@ -24,7 +24,7 @@ legend {
|
|
24
24
|
width: 100%;
|
25
25
|
}
|
26
26
|
label {
|
27
|
-
color:
|
27
|
+
color: $color-black;
|
28
28
|
display: block;
|
29
29
|
font-size: 13px;
|
30
30
|
font-weight: bold;
|
@@ -50,11 +50,11 @@ input[type="color"],
|
|
50
50
|
.form-select > select {
|
51
51
|
-webkit-appearance: none;
|
52
52
|
appearance: none;
|
53
|
-
background:
|
54
|
-
border: 1px solid
|
53
|
+
background: $color-white;
|
54
|
+
border: 1px solid $color-haze;
|
55
55
|
border-radius: 0;
|
56
56
|
box-sizing: border-box;
|
57
|
-
color:
|
57
|
+
color: $color-black;
|
58
58
|
display: block;
|
59
59
|
font-size: 16px;
|
60
60
|
font-style: normal;
|
@@ -91,7 +91,7 @@ input[type="search"]:focus,
|
|
91
91
|
input[type="tel"]:focus,
|
92
92
|
input[type="color"]:focus,
|
93
93
|
.uneditable-input:focus {
|
94
|
-
border-color:
|
94
|
+
border-color: $color-blue;
|
95
95
|
outline: 0;
|
96
96
|
outline: thin dotted \9;
|
97
97
|
-webkit-transition: background 150ms linear;
|
@@ -133,34 +133,34 @@ select.datetime {
|
|
133
133
|
}
|
134
134
|
input:-moz-placeholder,
|
135
135
|
textarea:-moz-placeholder {
|
136
|
-
color:
|
136
|
+
color: $color-gray;
|
137
137
|
font-weight: 200;
|
138
138
|
}
|
139
139
|
input:-ms-input-placeholder,
|
140
140
|
textarea:-ms-input-placeholder {
|
141
|
-
color:
|
141
|
+
color: $color-gray;
|
142
142
|
font-weight: 200;
|
143
143
|
}
|
144
144
|
input::-webkit-input-placeholder,
|
145
145
|
textarea::-webkit-input-placeholder {
|
146
|
-
color:
|
146
|
+
color: $color-gray;
|
147
147
|
font-weight: 200;
|
148
148
|
}
|
149
149
|
input:focus:invalid,
|
150
150
|
textarea:focus:invalid,
|
151
151
|
select:focus:invalid {
|
152
|
-
border-color:
|
153
|
-
color:
|
152
|
+
border-color: $color-red;
|
153
|
+
color: $color-red;
|
154
154
|
}
|
155
155
|
input:focus:invalid:focus,
|
156
156
|
textarea:focus:invalid:focus,
|
157
|
-
select:focus:invalid:focus { border-color:
|
157
|
+
select:focus:invalid:focus { border-color: $color-red; }
|
158
158
|
input[disabled],
|
159
159
|
textarea[disabled],
|
160
160
|
select[disabled],
|
161
161
|
.uneditable-input {
|
162
|
-
background:
|
163
|
-
color:
|
162
|
+
background: $color-haze-light;
|
163
|
+
color: $color-gray !important;
|
164
164
|
cursor: not-allowed;
|
165
165
|
}
|
166
166
|
.uneditable-input { font-weight: normal; }
|
@@ -173,7 +173,7 @@ select.form-input-initial-width {
|
|
173
173
|
/* # Components
|
174
174
|
================================================== */
|
175
175
|
.form-header {
|
176
|
-
border-bottom: 1px solid
|
176
|
+
border-bottom: 1px solid $color-haze;
|
177
177
|
margin-bottom: 30px;
|
178
178
|
padding-bottom: 5px;
|
179
179
|
}
|
@@ -184,17 +184,17 @@ select.form-input-initial-width {
|
|
184
184
|
.form-header > h5,
|
185
185
|
.form-header > h6 { margin-bottom: 0; }
|
186
186
|
.form-error-messages {
|
187
|
-
background:
|
187
|
+
background: $color-white;
|
188
188
|
margin-bottom: 40px;
|
189
189
|
}
|
190
190
|
.form-error-messages > h4 {
|
191
|
-
background:
|
192
|
-
border: 1px solid
|
191
|
+
background: $color-haze-light;
|
192
|
+
border: 1px solid $color-haze;
|
193
193
|
margin: 0;
|
194
194
|
padding: 5px 10px;
|
195
195
|
}
|
196
196
|
.form-error-messages > ul {
|
197
|
-
border: 1px solid
|
197
|
+
border: 1px solid $color-haze;
|
198
198
|
border-top: 0;
|
199
199
|
}
|
200
200
|
.form-error-messages > ul > li {
|
@@ -241,9 +241,9 @@ select.form-input-initial-width {
|
|
241
241
|
vertical-align: middle;
|
242
242
|
}
|
243
243
|
.form-input-group-addon {
|
244
|
-
background:
|
245
|
-
border: 1px solid
|
246
|
-
color:
|
244
|
+
background: $color-haze-light;
|
245
|
+
border: 1px solid $color-haze;
|
246
|
+
color: $color-gray;
|
247
247
|
font-size: 16px;
|
248
248
|
font-style: normal;
|
249
249
|
font-weight: normal;
|
@@ -251,7 +251,7 @@ select.form-input-initial-width {
|
|
251
251
|
}
|
252
252
|
.form-file-group-addon { padding: 0; }
|
253
253
|
.form-file-group-button {
|
254
|
-
border-color:
|
254
|
+
border-color: $color-haze;
|
255
255
|
margin-right: -1px;
|
256
256
|
padding-bottom: 14px;
|
257
257
|
padding-top: 14px;
|
@@ -276,7 +276,7 @@ select.form-input-initial-width {
|
|
276
276
|
padding-top: 14px;
|
277
277
|
}
|
278
278
|
.form-help-block {
|
279
|
-
color:
|
279
|
+
color: $color-gray;
|
280
280
|
display: block;
|
281
281
|
font-size: 12px;
|
282
282
|
margin-bottom: 15px;
|
@@ -294,7 +294,7 @@ select.form-input-initial-width {
|
|
294
294
|
position: absolute;
|
295
295
|
}
|
296
296
|
.form-select::after {
|
297
|
-
color:
|
297
|
+
color: $color-black;
|
298
298
|
content: "\f3d0";
|
299
299
|
font-family: "Ionicons";
|
300
300
|
font-size: 18px;
|
@@ -307,8 +307,8 @@ select.form-input-initial-width {
|
|
307
307
|
top: 50%;
|
308
308
|
}
|
309
309
|
.form-select::before {
|
310
|
-
background: rgba(
|
311
|
-
border: 1px solid
|
310
|
+
background: rgba(0,0,0,0);
|
311
|
+
border: 1px solid $color-haze;
|
312
312
|
border-left: 0;
|
313
313
|
bottom: 0;
|
314
314
|
right: 0;
|
@@ -321,11 +321,13 @@ select.form-input-initial-width {
|
|
321
321
|
text-overflow: '';
|
322
322
|
}
|
323
323
|
.form-select > select[disabled] {
|
324
|
-
background:
|
325
|
-
color:
|
324
|
+
background: $color-haze-light;
|
325
|
+
color: $color-gray;
|
326
326
|
}
|
327
327
|
.form-footer {
|
328
|
-
border-top: 1px solid
|
328
|
+
border-top: 1px solid $color-haze;
|
329
|
+
font-size: 12px !important;
|
330
|
+
line-height: 20px !important;
|
329
331
|
margin-top: 30px;
|
330
332
|
padding: 20px 0 0 0;
|
331
333
|
}
|
@@ -365,7 +367,6 @@ select.form-input-initial-width {
|
|
365
367
|
padding-bottom: 6px;
|
366
368
|
padding-top: 8px;
|
367
369
|
}
|
368
|
-
|
369
370
|
.form-inline.form-inline-alt > input[type="submit"],
|
370
371
|
.form-inline.form-inline-alt > input[type="reset"],
|
371
372
|
.form-inline.form-inline-alt > input[type="button"] {
|
@@ -15,8 +15,8 @@
|
|
15
15
|
z-index: 1030;
|
16
16
|
}
|
17
17
|
.header {
|
18
|
-
background:
|
19
|
-
border-bottom: 2px solid
|
18
|
+
background: $color-white;
|
19
|
+
border-bottom: 2px solid $color-haze-light;
|
20
20
|
box-sizing: border-box;
|
21
21
|
height: 65px;
|
22
22
|
padding: 15px 0;
|
@@ -25,7 +25,7 @@
|
|
25
25
|
.header-app { width: calc(100% - 280px); }
|
26
26
|
.header-brand { float: left; }
|
27
27
|
.header-brand > a {
|
28
|
-
color: $primary
|
28
|
+
color: $color-primary;
|
29
29
|
font-size: 30px;
|
30
30
|
line-height: 40px;
|
31
31
|
text-decoration: none;
|
@@ -43,7 +43,7 @@
|
|
43
43
|
.header-nav,
|
44
44
|
.header-nav-alt,
|
45
45
|
.header-toolchain {
|
46
|
-
color:
|
46
|
+
color: $color-black;
|
47
47
|
list-style-type: none;
|
48
48
|
padding: 0;
|
49
49
|
}
|
@@ -60,7 +60,7 @@
|
|
60
60
|
.header-toolchain > li { float: left; }
|
61
61
|
.header-nav > li,
|
62
62
|
.header-nav-alt > li {
|
63
|
-
color:
|
63
|
+
color: $color-black;
|
64
64
|
font-size: 12px;
|
65
65
|
font-weight: 500;
|
66
66
|
letter-spacing: 1px;
|
@@ -68,7 +68,7 @@
|
|
68
68
|
margin-left: 15px;
|
69
69
|
text-transform: uppercase;
|
70
70
|
}
|
71
|
-
.header-nav > li { margin-right:
|
71
|
+
.header-nav > li { margin-right: 20px; }
|
72
72
|
.header-toolchain > li { margin-left: 15px; }
|
73
73
|
.header-nav > li:last-child,
|
74
74
|
.header-toolchain > li:first-child { margin: 0; }
|
@@ -82,7 +82,7 @@
|
|
82
82
|
.header-nav > li > a,
|
83
83
|
.header-nav-alt > li > a,
|
84
84
|
.header-toolchain > li > a {
|
85
|
-
color:
|
85
|
+
color: $color-black;
|
86
86
|
text-decoration: none;
|
87
87
|
}
|
88
88
|
.header-nav-alt > li > a { padding: 15px 0 14px 0; }
|
@@ -101,27 +101,26 @@
|
|
101
101
|
.header-toolchain > li > a:hover,
|
102
102
|
.header-toolchain > li > a.active,
|
103
103
|
.header-toolchain > li > a:active,
|
104
|
-
.header-toolchain > li > a:focus { color: $primary
|
104
|
+
.header-toolchain > li > a:focus { color: $color-primary; }
|
105
105
|
.header-nav-alt > li.inverse > a {
|
106
|
-
background: $primary
|
107
|
-
border: 1px solid $primary
|
108
|
-
border-radius:
|
106
|
+
background: $color-primary;
|
107
|
+
border: 1px solid $color-primary;
|
108
|
+
border-radius: 3px;
|
109
109
|
box-sizing: border-box;
|
110
|
-
color:
|
110
|
+
color: $color-white;
|
111
111
|
padding-left: 20px;
|
112
112
|
padding-right: 20px;
|
113
113
|
}
|
114
114
|
.header-nav-alt > li.inverse.outline > a {
|
115
115
|
background: transparent;
|
116
|
-
color: $primary
|
116
|
+
color: $color-primary;
|
117
117
|
}
|
118
118
|
.header-nav-alt > li.inverse > a:hover,
|
119
119
|
.header-nav-alt > li.inverse > a.active,
|
120
120
|
.header-nav-alt > li.inverse > a:active,
|
121
121
|
.header-nav-alt > li.inverse > a:focus {
|
122
|
-
background:
|
123
|
-
|
124
|
-
color: rgba(255,255,255,1);
|
122
|
+
background: $color-primary;
|
123
|
+
color: $color-white;
|
125
124
|
}
|
126
125
|
.header-user {
|
127
126
|
float: right;
|
@@ -129,18 +128,18 @@
|
|
129
128
|
margin: 0 0 0 20px;
|
130
129
|
}
|
131
130
|
.header-user > a {
|
132
|
-
color:
|
131
|
+
color: $color-black;
|
133
132
|
text-decoration: none;
|
134
133
|
}
|
135
134
|
.header-user > a:hover,
|
136
135
|
.header-user > a.active,
|
137
136
|
.header-user > a:active,
|
138
|
-
.header-user > a:focus { color: $primary
|
137
|
+
.header-user > a:focus { color: $color-primary; }
|
139
138
|
.header-user > a > img,
|
140
139
|
.header-user-placeholder {
|
141
|
-
background:
|
140
|
+
background: $color-gray-dark;
|
142
141
|
border-radius: 500px;
|
143
|
-
color:
|
142
|
+
color: $color-white;
|
144
143
|
display: inline-block;
|
145
144
|
height: 36px;
|
146
145
|
margin: 0;
|
@@ -155,7 +154,7 @@
|
|
155
154
|
}
|
156
155
|
.header-user > ul.dropdown-menu { margin: -5px 10px 0 0; }
|
157
156
|
.header-toggle > a {
|
158
|
-
color: $primary
|
157
|
+
color: $color-primary;
|
159
158
|
float: right;
|
160
159
|
font-size: 40px;
|
161
160
|
padding: 4px 0px 3px 14px;
|
@@ -166,8 +165,8 @@
|
|
166
165
|
================================================== */
|
167
166
|
.header-dark,
|
168
167
|
.header-primary { border-color: rgba(0,0,0,0.2); }
|
169
|
-
.header-dark { background:
|
170
|
-
.header-primary { background: $primary
|
168
|
+
.header-dark { background: $color-black; }
|
169
|
+
.header-primary { background: $color-primary; }
|
171
170
|
.header-dark .header-nav > li > a,
|
172
171
|
.header-dark .header-nav-alt > li > a,
|
173
172
|
.header-dark .header-nav-alt > li.inverse > a:hover,
|
@@ -175,7 +174,7 @@
|
|
175
174
|
.header-dark .header-nav-alt > li.inverse > a:active,
|
176
175
|
.header-dark .header-nav-alt > li.inverse > a:focus,
|
177
176
|
.header-dark .header-toolchain > li > a,
|
178
|
-
.header-dark .header-user > a { color:
|
177
|
+
.header-dark .header-user > a { color: $color-gray; }
|
179
178
|
.header-primary .header-nav > li > a,
|
180
179
|
.header-primary .header-nav-alt > li > a,
|
181
180
|
.header-primary .header-nav-alt > li.inverse > a:hover,
|
@@ -183,7 +182,7 @@
|
|
183
182
|
.header-primary .header-nav-alt > li.inverse > a:active,
|
184
183
|
.header-primary .header-nav-alt > li.inverse > a:focus,
|
185
184
|
.header-primary .header-toolchain > li > a,
|
186
|
-
.header-primary .header-user > a { color:
|
185
|
+
.header-primary .header-user > a { color: $color-white; }
|
187
186
|
.header-dark .header-brand > a,
|
188
187
|
.header-primary .header-brand > a,
|
189
188
|
.header-dark .header-nav > li > a:hover,
|
@@ -206,7 +205,7 @@
|
|
206
205
|
.header-dark .header-user > img,
|
207
206
|
.header-dark .header-user-placeholder,
|
208
207
|
.header-dark .header-toggle > a,
|
209
|
-
.header-primary .header-toggle > a { color:
|
208
|
+
.header-primary .header-toggle > a { color: $color-white }
|
210
209
|
.header-primary .header-nav > li > a:hover,
|
211
210
|
.header-primary .header-nav > li > a.active,
|
212
211
|
.header-primary .header-nav > li > a:active,
|
@@ -225,35 +224,35 @@
|
|
225
224
|
.header-primary .header-user > a:active,
|
226
225
|
.header-primary .header-user > a:focus,
|
227
226
|
.header-primary .header-user > img,
|
228
|
-
.header-primary .header-user-placeholder { color:
|
227
|
+
.header-primary .header-user-placeholder { color: $color-black }
|
229
228
|
.header-dark .header-nav-alt > li.inverse > a,
|
230
229
|
.header-primary .header-nav-alt > li.inverse > a {
|
231
230
|
background: transparent;
|
232
|
-
border-color:
|
231
|
+
border-color: $color-white;
|
233
232
|
}
|
234
|
-
.header-primary .header-nav-alt > li.inverse > a { color
|
233
|
+
.header-primary .header-nav-alt > li.inverse > a { color:$color-white; }
|
235
234
|
.header-dark .header-nav-alt > li.inverse > a:hover,
|
236
235
|
.header-dark .header-nav-alt > li.inverse > a.active,
|
237
236
|
.header-dark .header-nav-alt > li.inverse > a:active,
|
238
|
-
.header-dark .header-nav-alt > li.inverse > a:focus { border-color:
|
237
|
+
.header-dark .header-nav-alt > li.inverse > a:focus { border-color: $color-gray; }
|
239
238
|
.header-primary .header-nav-alt > li.inverse > a:hover,
|
240
239
|
.header-primary .header-nav-alt > li.inverse > a.active,
|
241
240
|
.header-primary .header-nav-alt > li.inverse > a:active,
|
242
241
|
.header-primary .header-nav-alt > li.inverse > a:focus {
|
243
|
-
border-color:
|
244
|
-
color:
|
242
|
+
border-color: $color-black;
|
243
|
+
color: $color-black;
|
245
244
|
}
|
246
245
|
.header-dark .header-user > img,
|
247
|
-
.header-dark .header-user-placeholder { background:
|
246
|
+
.header-dark .header-user-placeholder { background: $color-gray; }
|
248
247
|
.header-light {
|
249
|
-
background:
|
250
|
-
border-color:
|
248
|
+
background: $color-haze-light;
|
249
|
+
border-color: $color-haze-dark;
|
251
250
|
}
|
252
251
|
|
253
252
|
/* # Styles
|
254
253
|
================================================== */
|
255
254
|
.header-borderless { border-bottom-color: transparent !important; }
|
256
|
-
.header-border-alt { border-bottom-color: $primary
|
255
|
+
.header-border-alt { border-bottom-color: $color-primary !important; }
|
257
256
|
|
258
257
|
/* # Media Queries
|
259
258
|
================================================== */
|
@@ -268,7 +267,7 @@
|
|
268
267
|
}
|
269
268
|
@media only screen and (max-width: 767px) {
|
270
269
|
.header {
|
271
|
-
border-color:
|
270
|
+
border-color: $color-haze;
|
272
271
|
height: 50px;
|
273
272
|
padding: 0;
|
274
273
|
}
|
@@ -280,8 +279,8 @@
|
|
280
279
|
.header-dark,
|
281
280
|
.header-primary,
|
282
281
|
.header-primary-phone { border-color: rgba(0,0,0,0.2); }
|
283
|
-
.header-light { border-color:
|
284
|
-
.header-primary-phone { background: $primary
|
282
|
+
.header-light { border-color: $color-haze-dark; }
|
283
|
+
.header-primary-phone { background: $color-primary; }
|
285
284
|
.header-primary-phone .header-brand > a,
|
286
|
-
.header-primary-phone .header-toggle > a { color:
|
285
|
+
.header-primary-phone .header-toggle > a { color: $color-white; }
|
287
286
|
}
|
@@ -6,10 +6,10 @@
|
|
6
6
|
================================================== */
|
7
7
|
.badge,
|
8
8
|
.label {
|
9
|
-
background:
|
10
|
-
border: 1px solid
|
9
|
+
background: $color-haze;
|
10
|
+
border: 1px solid $color-haze;
|
11
11
|
border-radius: 2px;
|
12
|
-
color:
|
12
|
+
color: $color-black;
|
13
13
|
display: inline-block;
|
14
14
|
padding: 6px;
|
15
15
|
font-size: 12px;
|
@@ -41,72 +41,72 @@
|
|
41
41
|
.badge-white,
|
42
42
|
.label-white,
|
43
43
|
.badge-yellow,
|
44
|
-
.label-yellow { color:
|
44
|
+
.label-yellow { color: $color-white; }
|
45
45
|
.badge-black,
|
46
46
|
.label-black {
|
47
|
-
background:
|
48
|
-
border-color:
|
47
|
+
background: $color-black;
|
48
|
+
border-color: $color-black;
|
49
49
|
}
|
50
50
|
.badge-blue,
|
51
51
|
.label-blue {
|
52
|
-
background:
|
53
|
-
border-color:
|
52
|
+
background: $color-blue;
|
53
|
+
border-color: $color-blue;
|
54
54
|
}
|
55
55
|
.badge-green,
|
56
56
|
.label-green {
|
57
|
-
background:
|
58
|
-
border-color:
|
57
|
+
background: $color-green;
|
58
|
+
border-color: $color-green;
|
59
59
|
}
|
60
60
|
.badge-orange,
|
61
61
|
.label-orange {
|
62
|
-
background:
|
63
|
-
border-color:
|
62
|
+
background: $color-orange;
|
63
|
+
border-color: $color-orange;
|
64
64
|
}
|
65
65
|
.badge-purple,
|
66
66
|
.label-purple {
|
67
|
-
background:
|
68
|
-
border-color:
|
67
|
+
background: $color-purple;
|
68
|
+
border-color: $color-purple;
|
69
69
|
}
|
70
70
|
.badge-red,
|
71
71
|
.label-red {
|
72
|
-
background:
|
73
|
-
border-color:
|
72
|
+
background: $color-red;
|
73
|
+
border-color: $color-red;
|
74
74
|
}
|
75
75
|
.badge-smoke,
|
76
76
|
.label-smoke {
|
77
|
-
background:
|
78
|
-
border-color:
|
77
|
+
background: $color-gray-dark;
|
78
|
+
border-color: $color-gray-dark;
|
79
79
|
}
|
80
80
|
.badge-white,
|
81
81
|
.label-white {
|
82
|
-
background:
|
83
|
-
border-color:
|
82
|
+
background: $color-white;
|
83
|
+
border-color: $color-white;
|
84
84
|
}
|
85
85
|
.badge-yellow,
|
86
86
|
.label-yellow {
|
87
|
-
background:
|
88
|
-
border-color:
|
87
|
+
background: $color-yellow;
|
88
|
+
border-color: $color-yellow;
|
89
89
|
}
|
90
90
|
.badge.badge-outline,
|
91
91
|
.label.label-outline {
|
92
92
|
background: transparent;
|
93
|
-
color:
|
93
|
+
color: $color-gray-dark;
|
94
94
|
}
|
95
95
|
.badge-black.badge-outline,
|
96
|
-
.label-black.label-outline { color:
|
96
|
+
.label-black.label-outline { color: $color-black; }
|
97
97
|
.badge-blue.badge-outline,
|
98
|
-
.label-blue.label-outline { color:
|
98
|
+
.label-blue.label-outline { color: $color-blue; }
|
99
99
|
.badge-green.badge-outline,
|
100
|
-
.label-green.label-outline { color:
|
100
|
+
.label-green.label-outline { color: $color-green; }
|
101
101
|
.badge-orange.badge-outline,
|
102
|
-
.label-orange.label-outline { color:
|
102
|
+
.label-orange.label-outline { color: $color-orange; }
|
103
103
|
.badge-purple.badge-outline,
|
104
|
-
.label-purple.label-outline { color:
|
104
|
+
.label-purple.label-outline { color: $color-purple; }
|
105
105
|
.badge-red.badge-outline,
|
106
|
-
.label-red.label-outline { color:
|
106
|
+
.label-red.label-outline { color: $color-red; }
|
107
107
|
.badge-smoke.badge-outline,
|
108
|
-
.label-smoke.label-outline { color:
|
108
|
+
.label-smoke.label-outline { color: $color-gray-dark; }
|
109
109
|
.badge-white.badge-outline,
|
110
|
-
.label-white.label-outline { color:
|
110
|
+
.label-white.label-outline { color: $color-white; }
|
111
111
|
.badge-yellow.badge-outline,
|
112
|
-
.label-yellow.label-outline { color:
|
112
|
+
.label-yellow.label-outline { color: $color-yellow; }
|