semantic-ui-sass 0.8.1.0 → 0.8.2.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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/dimmer.js +4 -2
- data/app/assets/javascripts/semantic-ui/modal.js +11 -6
- data/app/assets/javascripts/semantic-ui/popup.js +0 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +6 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +56 -73
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +89 -53
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +221 -316
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +43 -88
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +83 -23
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +831 -187
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +189 -191
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +4 -22
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +43 -20
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1529 -472
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +145 -152
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +36 -63
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +120 -175
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +13 -11
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +33 -115
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +46 -101
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +35 -65
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +127 -170
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +287 -269
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +42 -129
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +16 -49
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +54 -107
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +29 -22
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +112 -147
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +226 -230
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +20 -28
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +35 -78
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +27 -44
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +10 -41
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +31 -60
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +219 -451
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +75 -79
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +21 -23
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -8
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +86 -43
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +80 -53
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +6 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/semantic-ui-sass.gemspec +1 -1
- data/spec/dummy/config/application.rb +1 -1
- data/spec/spec_helper.rb +0 -1
- data/tasks/converter.rb +7 -0
- metadata +4 -7
- data/spec/dummy/config/database.yml +0 -25
@@ -16,58 +16,38 @@
|
|
16
16
|
.ui.label {
|
17
17
|
display: inline-block;
|
18
18
|
vertical-align: middle;
|
19
|
-
|
20
19
|
margin: -0.25em 0.25em 0em;
|
21
|
-
|
22
20
|
background-color: #E8E8E8;
|
23
21
|
border-color: #E8E8E8;
|
24
|
-
|
25
22
|
padding: 0.5em 0.8em;
|
26
23
|
color: rgba(0, 0, 0, 0.65);
|
27
|
-
|
28
24
|
text-transform: uppercase;
|
29
25
|
font-weight: normal;
|
30
|
-
|
31
|
-
-webkit-border-radius: 0.325em;
|
32
|
-
-moz-border-radius: 0.325em;
|
33
26
|
border-radius: 0.325em;
|
34
|
-
|
35
27
|
-webkit-box-sizing: border-box;
|
36
28
|
-moz-box-sizing: border-box;
|
37
29
|
-ms-box-sizing: border-box;
|
38
30
|
box-sizing: border-box;
|
39
|
-
|
40
|
-
|
41
|
-
background 0.1s linear
|
42
|
-
;
|
43
|
-
-moz-transition:
|
44
|
-
background 0.1s linear
|
45
|
-
;
|
46
|
-
-o-transition:
|
47
|
-
background 0.1s linear
|
48
|
-
;
|
49
|
-
-ms-transition:
|
50
|
-
background 0.1s linear
|
51
|
-
;
|
52
|
-
transition:
|
53
|
-
background 0.1s linear
|
54
|
-
;
|
31
|
+
-webkit-transition: background 0.1s linear;
|
32
|
+
transition: background 0.1s linear;
|
55
33
|
}
|
56
34
|
|
57
35
|
.ui.label:first-child {
|
58
36
|
margin-left: 0em;
|
59
37
|
}
|
38
|
+
|
60
39
|
.ui.label:last-child {
|
61
40
|
margin-right: 0em;
|
62
41
|
}
|
63
42
|
|
64
|
-
|
65
43
|
/* Link */
|
44
|
+
|
66
45
|
a.ui.label {
|
67
46
|
cursor: pointer;
|
68
47
|
}
|
69
48
|
|
70
49
|
/* Detail */
|
50
|
+
|
71
51
|
.ui.label .detail {
|
72
52
|
display: inline-block;
|
73
53
|
margin-left: 0.5em;
|
@@ -76,51 +56,40 @@ a.ui.label {
|
|
76
56
|
}
|
77
57
|
|
78
58
|
/* Icon */
|
59
|
+
|
79
60
|
.ui.label .icon {
|
80
61
|
width: auto;
|
81
62
|
}
|
82
63
|
|
83
64
|
/* Removable label */
|
65
|
+
|
84
66
|
.ui.label .delete.icon {
|
85
67
|
cursor: pointer;
|
86
68
|
margin: 0em 0em 0em 0.5em;
|
87
69
|
opacity: 0.7;
|
88
|
-
|
89
|
-
|
90
|
-
background 0.1s linear
|
91
|
-
;
|
92
|
-
-moz-transition:
|
93
|
-
background 0.1s linear
|
94
|
-
;
|
95
|
-
-o-transition:
|
96
|
-
background 0.1s linear
|
97
|
-
;
|
98
|
-
-ms-transition:
|
99
|
-
background 0.1s linear
|
100
|
-
;
|
101
|
-
transition:
|
102
|
-
background 0.1s linear
|
103
|
-
;
|
70
|
+
-webkit-transition: background 0.1s linear;
|
71
|
+
transition: background 0.1s linear;
|
104
72
|
}
|
73
|
+
|
105
74
|
.ui.label .delete.icon:hover {
|
106
75
|
opacity: 0.99;
|
107
76
|
}
|
108
77
|
|
109
|
-
|
110
78
|
/*-------------------
|
111
79
|
Coupling
|
112
80
|
--------------------*/
|
113
81
|
|
114
82
|
/* Padding on next content after a label */
|
83
|
+
|
115
84
|
.ui.segment > .attached.label:first-child + * {
|
116
85
|
margin-top: 2.5em;
|
117
86
|
}
|
87
|
+
|
118
88
|
.ui.segment > .bottom.attached.label:first-child ~ :last-child {
|
119
89
|
margin-top: 0em;
|
120
90
|
margin-bottom: 2.5em;
|
121
91
|
}
|
122
92
|
|
123
|
-
|
124
93
|
/*******************************
|
125
94
|
Types
|
126
95
|
*******************************/
|
@@ -129,26 +98,20 @@ a.ui.label {
|
|
129
98
|
width: auto !important;
|
130
99
|
margin-top: 0em;
|
131
100
|
margin-bottom: 0em;
|
132
|
-
|
133
101
|
padding-top: 0.4em;
|
134
102
|
padding-bottom: 0.4em;
|
135
|
-
|
136
103
|
line-height: 1.5em;
|
137
104
|
vertical-align: baseline;
|
138
105
|
text-transform: none;
|
139
|
-
|
140
106
|
-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
141
|
-
-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
142
107
|
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
143
108
|
}
|
109
|
+
|
144
110
|
.ui.image.label img {
|
145
111
|
display: inline-block;
|
146
112
|
height: 2.25em;
|
147
113
|
margin: -0.4em 0.8em -0.4em -0.8em;
|
148
114
|
vertical-align: top;
|
149
|
-
|
150
|
-
-moz-border-radius: 0.325em 0em 0em 0.325em;
|
151
|
-
-webkit-border-radius: 0.325em 0em 0em 0.325em;
|
152
115
|
border-radius: 0.325em 0em 0em 0.325em;
|
153
116
|
}
|
154
117
|
|
@@ -164,7 +127,6 @@ a.ui.label {
|
|
164
127
|
opacity: 0.5;
|
165
128
|
}
|
166
129
|
|
167
|
-
|
168
130
|
/*-------------------
|
169
131
|
Hover
|
170
132
|
--------------------*/
|
@@ -175,6 +137,7 @@ a.ui.label:hover {
|
|
175
137
|
border-color: #E0E0E0;
|
176
138
|
color: rgba(0, 0, 0, 0.7);
|
177
139
|
}
|
140
|
+
|
178
141
|
.ui.labels a.label:hover:before,
|
179
142
|
a.ui.label:hover:before {
|
180
143
|
background-color: #E0E0E0;
|
@@ -199,13 +162,10 @@ a.ui.label:hover:before {
|
|
199
162
|
display: none !important;
|
200
163
|
}
|
201
164
|
|
202
|
-
|
203
|
-
|
204
165
|
/*******************************
|
205
166
|
Variations
|
206
167
|
*******************************/
|
207
168
|
|
208
|
-
|
209
169
|
/*-------------------
|
210
170
|
Tag
|
211
171
|
--------------------*/
|
@@ -215,66 +175,41 @@ a.ui.label:hover:before {
|
|
215
175
|
margin-left: 1em;
|
216
176
|
position: relative;
|
217
177
|
padding: 0.33em 1.3em 0.33em 1.4em;
|
218
|
-
|
219
|
-
-webkit-border-radius: 0px 3px 3px 0px;
|
220
|
-
-moz-border-radius: 0px 3px 3px 0px;
|
221
178
|
border-radius: 0px 3px 3px 0px;
|
222
179
|
}
|
180
|
+
|
223
181
|
.ui.tag.labels .label:before,
|
224
182
|
.ui.tag.label:before {
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
transform: rotate(45deg);
|
239
|
-
|
240
|
-
-webkit-transition:
|
241
|
-
background 0.1s linear
|
242
|
-
;
|
243
|
-
-moz-transition:
|
244
|
-
background 0.1s linear
|
245
|
-
;
|
246
|
-
-o-transition:
|
247
|
-
background 0.1s linear
|
248
|
-
;
|
249
|
-
-ms-transition:
|
250
|
-
background 0.1s linear
|
251
|
-
;
|
252
|
-
transition:
|
253
|
-
background 0.1s linear
|
254
|
-
;
|
183
|
+
position: absolute;
|
184
|
+
top: 0.3em;
|
185
|
+
left: 0.3em;
|
186
|
+
content: '';
|
187
|
+
margin-left: -1em;
|
188
|
+
background-image: none;
|
189
|
+
width: 1.5em;
|
190
|
+
height: 1.5em;
|
191
|
+
-webkit-transform: rotate(45deg);
|
192
|
+
-ms-transform: rotate(45deg);
|
193
|
+
transform: rotate(45deg);
|
194
|
+
-webkit-transition: background 0.1s linear;
|
195
|
+
transition: background 0.1s linear;
|
255
196
|
}
|
256
197
|
|
257
|
-
|
258
198
|
.ui.tag.labels .label:after,
|
259
199
|
.ui.tag.label:after {
|
260
200
|
position: absolute;
|
261
201
|
content: '';
|
262
202
|
top: 50%;
|
263
203
|
left: -0.25em;
|
264
|
-
|
265
204
|
margin-top: -0.3em;
|
266
205
|
background-color: #FFFFFF;
|
267
206
|
width: 0.55em;
|
268
207
|
height: 0.55em;
|
269
|
-
|
270
208
|
-webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
271
|
-
-moz-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
272
209
|
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
273
|
-
|
274
|
-
-moz-border-radius: 100px 100px 100px 100px;
|
275
|
-
-webkit-border-radius: 100px 100px 100px 100px;
|
276
210
|
border-radius: 100px 100px 100px 100px;
|
277
211
|
}
|
212
|
+
|
278
213
|
/*-------------------
|
279
214
|
Ribbon
|
280
215
|
--------------------*/
|
@@ -284,27 +219,21 @@ a.ui.label:hover:before {
|
|
284
219
|
margin: 0em 0.2em;
|
285
220
|
left: -2rem;
|
286
221
|
padding-left: 2rem;
|
287
|
-
-webkit-border-radius: 0px 4px 4px 0px;
|
288
|
-
-moz-border-radius: 0px 4px 4px 0px;
|
289
222
|
border-radius: 0px 4px 4px 0px;
|
290
|
-
|
291
223
|
border-color: rgba(0, 0, 0, 0.15);
|
292
224
|
}
|
293
225
|
|
294
226
|
.ui.ribbon.label:after {
|
295
227
|
position: absolute;
|
296
228
|
content: "";
|
297
|
-
|
298
229
|
top: 100%;
|
299
230
|
left: 0%;
|
300
|
-
|
301
231
|
border-top: 0em solid transparent;
|
302
232
|
border-right-width: 1em;
|
303
233
|
border-right-color: inherit;
|
304
234
|
border-right-style: solid;
|
305
235
|
border-bottom: 1em solid transparent;
|
306
236
|
border-left: 0em solid transparent;
|
307
|
-
|
308
237
|
width: 0em;
|
309
238
|
height: 0em;
|
310
239
|
}
|
@@ -320,28 +249,19 @@ a.ui.label:hover:before {
|
|
320
249
|
margin: 0em;
|
321
250
|
top: 0em;
|
322
251
|
left: 0em;
|
323
|
-
|
324
252
|
padding: 0.75em 1em;
|
325
|
-
|
326
|
-
-webkit-border-radius: 4px 4px 0em 0em;
|
327
|
-
-moz-border-radius: 4px 4px 0em 0em;
|
328
253
|
border-radius: 4px 4px 0em 0em;
|
329
254
|
}
|
255
|
+
|
330
256
|
.ui.bottom.attached.label {
|
331
257
|
top: auto;
|
332
258
|
bottom: 0em;
|
333
|
-
|
334
|
-
-webkit-border-radius: 0em 0em 4px 4px;
|
335
|
-
-moz-border-radius: 0em 0em 4px 4px;
|
336
259
|
border-radius: 0em 0em 4px 4px;
|
337
260
|
}
|
338
261
|
|
339
262
|
.ui.top.left.attached.label {
|
340
263
|
width: auto;
|
341
264
|
margin-top: 0em !important;
|
342
|
-
|
343
|
-
-webkit-border-radius: 4px 0em 4px 0em;
|
344
|
-
-moz-border-radius: 4px 0em 4px 0em;
|
345
265
|
border-radius: 4px 0em 4px 0em;
|
346
266
|
}
|
347
267
|
|
@@ -349,28 +269,22 @@ a.ui.label:hover:before {
|
|
349
269
|
width: auto;
|
350
270
|
left: auto;
|
351
271
|
right: 0em;
|
352
|
-
|
353
|
-
-webkit-border-radius: 0em 4px 0em 4px;
|
354
|
-
-moz-border-radius: 0em 4px 0em 4px;
|
355
272
|
border-radius: 0em 4px 0em 4px;
|
356
273
|
}
|
274
|
+
|
357
275
|
.ui.bottom.left.attached.label {
|
358
276
|
width: auto;
|
359
277
|
top: auto;
|
360
278
|
bottom: 0em;
|
361
|
-
|
362
|
-
-webkit-border-radius: 4px 0em 0em 4px;
|
363
|
-
-moz-border-radius: 4px 0em 0em 4px;
|
364
279
|
border-radius: 4px 0em 0em 4px;
|
365
280
|
}
|
281
|
+
|
366
282
|
.ui.bottom.right.attached.label {
|
367
283
|
top: auto;
|
368
284
|
bottom: 0em;
|
369
285
|
left: auto;
|
370
286
|
right: 0em;
|
371
287
|
width: auto;
|
372
|
-
-webkit-border-radius: 4px 0em 4px 0em;
|
373
|
-
-moz-border-radius: 4px 0em 4px 0em;
|
374
288
|
border-radius: 4px 0em 4px 0em;
|
375
289
|
}
|
376
290
|
|
@@ -385,96 +299,81 @@ a.ui.label:hover:before {
|
|
385
299
|
right: 0em;
|
386
300
|
z-index: 10;
|
387
301
|
margin: 0em;
|
388
|
-
|
389
302
|
font-size: 0.8125em;
|
390
303
|
width: 2rem;
|
391
304
|
height: 2rem;
|
392
305
|
padding: 0em;
|
393
|
-
|
394
306
|
text-align: center;
|
395
|
-
|
396
307
|
-webkit-transition: color 0.2s ease;
|
397
|
-
-moz-transition: color 0.2s ease;
|
398
|
-
-o-transition: color 0.2s ease;
|
399
|
-
-ms-transition: color 0.2s ease;
|
400
308
|
transition: color 0.2s ease;
|
401
309
|
}
|
310
|
+
|
402
311
|
.ui.corner.label:after {
|
403
312
|
position: absolute;
|
404
313
|
content: "";
|
405
314
|
right: 0em;
|
406
315
|
top: 0em;
|
407
316
|
z-index: -1;
|
408
|
-
|
409
317
|
width: 0em;
|
410
318
|
height: 0em;
|
411
|
-
|
412
319
|
border-top: 0em solid transparent;
|
413
320
|
border-right: 3em solid transparent;
|
414
321
|
border-bottom: 3em solid transparent;
|
415
322
|
border-left: 0em solid transparent;
|
416
|
-
|
417
323
|
border-right-color: inherit;
|
418
|
-
|
419
324
|
-webkit-transition: border-color 0.2s ease;
|
420
|
-
-moz-transition: border-color 0.2s ease;
|
421
|
-
-o-transition: border-color 0.2s ease;
|
422
|
-
-ms-transition: border-color 0.2s ease;
|
423
325
|
transition: border-color 0.2s ease;
|
424
326
|
}
|
425
327
|
|
426
328
|
.ui.corner.label .icon {
|
427
329
|
margin: 0.4em 0em 0em 0.7em;
|
428
330
|
}
|
331
|
+
|
429
332
|
.ui.corner.label .text {
|
430
333
|
display: inline-block;
|
431
334
|
font-weight: bold;
|
432
335
|
margin: 0.5em 0em 0em 0.6em;
|
433
336
|
width: 2.5em;
|
434
|
-
|
435
337
|
font-size: 0.82em;
|
436
338
|
text-align: center;
|
437
|
-
|
438
339
|
-webkit-transform: rotate(45deg);
|
439
|
-
-moz-transform: rotate(45deg);
|
440
|
-
-o-transform: rotate(45deg);
|
441
340
|
-ms-transform: rotate(45deg);
|
442
341
|
transform: rotate(45deg);
|
443
342
|
}
|
444
343
|
|
445
344
|
/* Left Corner */
|
345
|
+
|
446
346
|
.ui.left.corner.label,
|
447
347
|
.ui.left.corner.label:after {
|
448
348
|
right: auto;
|
449
349
|
left: 0em;
|
450
350
|
}
|
351
|
+
|
451
352
|
.ui.left.corner.label:after {
|
452
353
|
border-top: 3em solid transparent;
|
453
354
|
border-right: 3em solid transparent;
|
454
355
|
border-bottom: 0em solid transparent;
|
455
356
|
border-left: 0em solid transparent;
|
456
|
-
|
457
357
|
border-top-color: inherit;
|
458
358
|
}
|
359
|
+
|
459
360
|
.ui.left.corner.label .icon {
|
460
361
|
margin: 0.4em 0em 0em -0.7em;
|
461
362
|
}
|
363
|
+
|
462
364
|
.ui.left.corner.label .text {
|
463
365
|
margin: 0.5em 0em 0em -0.6em;
|
464
366
|
-webkit-transform: rotate(-45deg);
|
465
|
-
-moz-transform: rotate(-45deg);
|
466
|
-
-o-transform: rotate(-45deg);
|
467
367
|
-ms-transform: rotate(-45deg);
|
468
368
|
transform: rotate(-45deg);
|
469
369
|
}
|
470
370
|
|
471
|
-
|
472
371
|
/* Hover */
|
372
|
+
|
473
373
|
.ui.corner.label:hover {
|
474
374
|
background-color: transparent;
|
475
375
|
}
|
476
376
|
|
477
|
-
|
478
377
|
/*-------------------
|
479
378
|
Fluid
|
480
379
|
--------------------*/
|
@@ -502,23 +401,28 @@ a.ui.label:hover:before {
|
|
502
401
|
--------------------*/
|
503
402
|
|
504
403
|
/*--- Black ---*/
|
404
|
+
|
505
405
|
.ui.black.labels .label,
|
506
406
|
.ui.black.label {
|
507
407
|
background-color: #5C6166 !important;
|
508
408
|
border-color: #5C6166 !important;
|
509
409
|
color: #FFFFFF !important;
|
510
410
|
}
|
411
|
+
|
511
412
|
.ui.labels .black.label:before,
|
512
413
|
.ui.black.labels .label:before,
|
513
414
|
.ui.black.label:before {
|
514
415
|
background-color: #5C6166 !important;
|
515
416
|
}
|
417
|
+
|
516
418
|
/* Hover */
|
419
|
+
|
517
420
|
a.ui.black.labels .label:hover,
|
518
421
|
a.ui.black.label:hover {
|
519
422
|
background-color: #333333 !important;
|
520
423
|
border-color: #333333 !important;
|
521
424
|
}
|
425
|
+
|
522
426
|
.ui.labels a.black.label:hover:before,
|
523
427
|
.ui.black.labels a.label:hover:before,
|
524
428
|
a.ui.black.label:hover:before {
|
@@ -526,23 +430,27 @@ a.ui.black.label:hover:before {
|
|
526
430
|
}
|
527
431
|
|
528
432
|
/* Corner */
|
433
|
+
|
529
434
|
.ui.black.corner.label,
|
530
435
|
.ui.black.corner.label:hover {
|
531
436
|
background-color: transparent !important;
|
532
437
|
}
|
438
|
+
|
533
439
|
/* Ribbon */
|
440
|
+
|
534
441
|
.ui.black.ribbon.label {
|
535
442
|
border-color: #333333 !important;
|
536
443
|
}
|
537
444
|
|
538
|
-
|
539
445
|
/*--- Green ---*/
|
446
|
+
|
540
447
|
.ui.green.labels .label,
|
541
448
|
.ui.green.label {
|
542
449
|
background-color: #A1CF64 !important;
|
543
450
|
border-color: #A1CF64 !important;
|
544
451
|
color: #FFFFFF !important;
|
545
452
|
}
|
453
|
+
|
546
454
|
.ui.labels .green.label:before,
|
547
455
|
.ui.green.labels .label:before,
|
548
456
|
.ui.green.label:before {
|
@@ -550,11 +458,13 @@ a.ui.black.label:hover:before {
|
|
550
458
|
}
|
551
459
|
|
552
460
|
/* Hover */
|
461
|
+
|
553
462
|
a.ui.green.labels .label:hover,
|
554
463
|
a.ui.green.label:hover {
|
555
464
|
background-color: #89B84C !important;
|
556
465
|
border-color: #89B84C !important;
|
557
466
|
}
|
467
|
+
|
558
468
|
.ui.labels a.green.label:hover:before,
|
559
469
|
.ui.green.labels a.label:hover:before,
|
560
470
|
a.ui.green.label:hover:before {
|
@@ -562,65 +472,78 @@ a.ui.green.label:hover:before {
|
|
562
472
|
}
|
563
473
|
|
564
474
|
/* Corner */
|
475
|
+
|
565
476
|
.ui.green.corner.label,
|
566
477
|
.ui.green.corner.label:hover {
|
567
478
|
background-color: transparent !important;
|
568
479
|
}
|
480
|
+
|
569
481
|
/* Ribbon */
|
482
|
+
|
570
483
|
.ui.green.ribbon.label {
|
571
484
|
border-color: #89B84C !important;
|
572
485
|
}
|
573
486
|
|
574
|
-
|
575
487
|
/*--- Red ---*/
|
488
|
+
|
576
489
|
.ui.red.labels .label,
|
577
490
|
.ui.red.label {
|
578
491
|
background-color: #D95C5C !important;
|
579
492
|
border-color: #D95C5C !important;
|
580
493
|
color: #FFFFFF !important;
|
581
494
|
}
|
495
|
+
|
582
496
|
.ui.labels .red.label:before,
|
583
497
|
.ui.red.labels .label:before,
|
584
498
|
.ui.red.label:before {
|
585
499
|
background-color: #D95C5C !important;
|
586
500
|
}
|
501
|
+
|
587
502
|
/* Corner */
|
503
|
+
|
588
504
|
.ui.red.corner.label,
|
589
505
|
.ui.red.corner.label:hover {
|
590
506
|
background-color: transparent !important;
|
591
507
|
}
|
592
508
|
|
593
509
|
/* Hover */
|
510
|
+
|
594
511
|
a.ui.red.labels .label:hover,
|
595
|
-
a.ui.red.label:hover{
|
512
|
+
a.ui.red.label:hover {
|
596
513
|
background-color: #DE3859 !important;
|
597
514
|
border-color: #DE3859 !important;
|
598
515
|
color: #FFFFFF !important;
|
599
516
|
}
|
517
|
+
|
600
518
|
.ui.labels a.red.label:hover:before,
|
601
519
|
.ui.red.labels a.label:hover:before,
|
602
520
|
a.ui.red.label:hover:before {
|
603
521
|
background-color: #DE3859 !important;
|
604
522
|
}
|
523
|
+
|
605
524
|
/* Ribbon */
|
525
|
+
|
606
526
|
.ui.red.ribbon.label {
|
607
527
|
border-color: #DE3859 !important;
|
608
528
|
}
|
609
529
|
|
610
|
-
|
611
530
|
/*--- Blue ---*/
|
531
|
+
|
612
532
|
.ui.blue.labels .label,
|
613
533
|
.ui.blue.label {
|
614
534
|
background-color: #6ECFF5 !important;
|
615
535
|
border-color: #6ECFF5 !important;
|
616
536
|
color: #FFFFFF !important;
|
617
537
|
}
|
538
|
+
|
618
539
|
.ui.labels .blue.label:before,
|
619
540
|
.ui.blue.labels .label:before,
|
620
541
|
.ui.blue.label:before {
|
621
542
|
background-color: #6ECFF5 !important;
|
622
543
|
}
|
544
|
+
|
623
545
|
/* Hover */
|
546
|
+
|
624
547
|
a.ui.blue.labels .label:hover,
|
625
548
|
.ui.blue.labels a.label:hover,
|
626
549
|
a.ui.blue.label:hover {
|
@@ -628,34 +551,43 @@ a.ui.blue.label:hover {
|
|
628
551
|
border-color: #1AB8F3 !important;
|
629
552
|
color: #FFFFFF !important;
|
630
553
|
}
|
554
|
+
|
631
555
|
.ui.labels a.blue.label:hover:before,
|
632
556
|
.ui.blue.labels a.label:hover:before,
|
633
557
|
a.ui.blue.label:hover:before {
|
634
558
|
background-color: #1AB8F3 !important;
|
635
559
|
}
|
560
|
+
|
636
561
|
/* Corner */
|
562
|
+
|
637
563
|
.ui.blue.corner.label,
|
638
564
|
.ui.blue.corner.label:hover {
|
639
565
|
background-color: transparent !important;
|
640
566
|
}
|
567
|
+
|
641
568
|
/* Ribbon */
|
569
|
+
|
642
570
|
.ui.blue.ribbon.label {
|
643
571
|
border-color: #1AB8F3 !important;
|
644
572
|
}
|
645
573
|
|
646
574
|
/*--- Purple ---*/
|
575
|
+
|
647
576
|
.ui.purple.labels .label,
|
648
577
|
.ui.purple.label {
|
649
578
|
background-color: #564F8A !important;
|
650
579
|
border-color: #564F8A !important;
|
651
580
|
color: #FFFFFF !important;
|
652
581
|
}
|
582
|
+
|
653
583
|
.ui.labels .purple.label:before,
|
654
584
|
.ui.purple.labels .label:before,
|
655
585
|
.ui.purple.label:before {
|
656
586
|
background-color: #564F8A !important;
|
657
587
|
}
|
588
|
+
|
658
589
|
/* Hover */
|
590
|
+
|
659
591
|
a.ui.purple.labels .label:hover,
|
660
592
|
.ui.purple.labels a.label:hover,
|
661
593
|
a.ui.purple.label:hover {
|
@@ -663,34 +595,43 @@ a.ui.purple.label:hover {
|
|
663
595
|
border-color: #3E3773 !important;
|
664
596
|
color: #FFFFFF !important;
|
665
597
|
}
|
598
|
+
|
666
599
|
.ui.labels a.purple.label:hover:before,
|
667
600
|
.ui.purple.labels a.label:hover:before,
|
668
601
|
a.ui.purple.label:hover:before {
|
669
602
|
background-color: #3E3773 !important;
|
670
603
|
}
|
604
|
+
|
671
605
|
/* Corner */
|
606
|
+
|
672
607
|
.ui.purple.corner.label,
|
673
608
|
.ui.purple.corner.label:hover {
|
674
609
|
background-color: transparent !important;
|
675
610
|
}
|
611
|
+
|
676
612
|
/* Ribbon */
|
613
|
+
|
677
614
|
.ui.purple.ribbon.label {
|
678
615
|
border-color: #3E3773 !important;
|
679
616
|
}
|
680
617
|
|
681
618
|
/*--- Orange ---*/
|
619
|
+
|
682
620
|
.ui.orange.labels .label,
|
683
621
|
.ui.orange.label {
|
684
622
|
background-color: #F05940 !important;
|
685
623
|
border-color: #F05940 !important;
|
686
624
|
color: #FFFFFF !important;
|
687
625
|
}
|
626
|
+
|
688
627
|
.ui.labels .orange.label:before,
|
689
628
|
.ui.orange.labels .label:before,
|
690
629
|
.ui.orange.label:before {
|
691
630
|
background-color: #F05940 !important;
|
692
631
|
}
|
632
|
+
|
693
633
|
/* Hover */
|
634
|
+
|
694
635
|
a.ui.orange.labels .label:hover,
|
695
636
|
.ui.orange.labels a.label:hover,
|
696
637
|
a.ui.orange.label:hover {
|
@@ -698,37 +639,43 @@ a.ui.orange.label:hover {
|
|
698
639
|
border-color: #FF4121 !important;
|
699
640
|
color: #FFFFFF !important;
|
700
641
|
}
|
642
|
+
|
701
643
|
.ui.labels a.orange.label:hover:before,
|
702
644
|
.ui.orange.labels a.label:hover:before,
|
703
645
|
a.ui.orange.label:hover:before {
|
704
646
|
background-color: #FF4121 !important;
|
705
647
|
}
|
648
|
+
|
706
649
|
/* Corner */
|
650
|
+
|
707
651
|
.ui.orange.corner.label,
|
708
652
|
.ui.orange.corner.label:hover {
|
709
653
|
background-color: transparent !important;
|
710
654
|
}
|
655
|
+
|
711
656
|
/* Ribbon */
|
657
|
+
|
712
658
|
.ui.orange.ribbon.label {
|
713
659
|
border-color: #FF4121 !important;
|
714
660
|
}
|
715
661
|
|
716
|
-
|
717
|
-
|
718
|
-
|
719
662
|
/*--- Teal ---*/
|
663
|
+
|
720
664
|
.ui.teal.labels .label,
|
721
665
|
.ui.teal.label {
|
722
666
|
background-color: #00B5AD !important;
|
723
667
|
border-color: #00B5AD !important;
|
724
668
|
color: #FFFFFF !important;
|
725
669
|
}
|
670
|
+
|
726
671
|
.ui.labels .teal.label:before,
|
727
672
|
.ui.teal.labels .label:before,
|
728
673
|
.ui.teal.label:before {
|
729
674
|
background-color: #00B5AD !important;
|
730
675
|
}
|
676
|
+
|
731
677
|
/* Hover */
|
678
|
+
|
732
679
|
a.ui.teal.labels .label:hover,
|
733
680
|
.ui.teal.labels a.label:hover,
|
734
681
|
a.ui.teal.label:hover {
|
@@ -736,17 +683,22 @@ a.ui.teal.label:hover {
|
|
736
683
|
border-color: #009A93 !important;
|
737
684
|
color: #FFFFFF !important;
|
738
685
|
}
|
686
|
+
|
739
687
|
.ui.labels a.teal.label:hover:before,
|
740
688
|
.ui.teal.labels a.label:hover:before,
|
741
689
|
a.ui.teal.label:hover:before {
|
742
690
|
background-color: #009A93 !important;
|
743
691
|
}
|
692
|
+
|
744
693
|
/* Corner */
|
694
|
+
|
745
695
|
.ui.teal.corner.label,
|
746
696
|
.ui.teal.corner.label:hover {
|
747
697
|
background-color: transparent !important;
|
748
698
|
}
|
699
|
+
|
749
700
|
/* Ribbon */
|
701
|
+
|
750
702
|
.ui.teal.ribbon.label {
|
751
703
|
border-color: #009A93 !important;
|
752
704
|
}
|
@@ -758,13 +710,11 @@ a.ui.teal.label:hover:before {
|
|
758
710
|
.ui.horizontal.labels .label,
|
759
711
|
.ui.horizontal.label {
|
760
712
|
margin: -0.125em 0.5em -0.125em 0em;
|
761
|
-
|
762
713
|
padding: 0.35em 1em;
|
763
714
|
min-width: 6em;
|
764
715
|
text-align: center;
|
765
716
|
}
|
766
717
|
|
767
|
-
|
768
718
|
/*-------------------
|
769
719
|
Circular
|
770
720
|
--------------------*/
|
@@ -773,14 +723,9 @@ a.ui.teal.label:hover:before {
|
|
773
723
|
.ui.circular.label {
|
774
724
|
min-height: 1em;
|
775
725
|
max-height: 2em;
|
776
|
-
|
777
726
|
padding: 0.5em !important;
|
778
|
-
|
779
727
|
line-height: 1em;
|
780
728
|
text-align: center;
|
781
|
-
|
782
|
-
-webkit-border-radius: 500rem;
|
783
|
-
-moz-border-radius: 500rem;
|
784
729
|
border-radius: 500rem;
|
785
730
|
}
|
786
731
|
|
@@ -791,6 +736,7 @@ a.ui.teal.label:hover:before {
|
|
791
736
|
.ui.pointing.label {
|
792
737
|
position: relative;
|
793
738
|
}
|
739
|
+
|
794
740
|
.ui.attached.pointing.label {
|
795
741
|
position: absolute;
|
796
742
|
}
|
@@ -798,52 +744,42 @@ a.ui.teal.label:hover:before {
|
|
798
744
|
.ui.pointing.label:before {
|
799
745
|
position: absolute;
|
800
746
|
content: "";
|
801
|
-
|
802
747
|
width: 0.6em;
|
803
748
|
height: 0.6em;
|
804
|
-
|
805
749
|
background-image: none;
|
806
|
-
|
807
750
|
-webkit-transform: rotate(45deg);
|
808
|
-
-
|
751
|
+
-ms-transform: rotate(45deg);
|
809
752
|
transform: rotate(45deg);
|
810
753
|
z-index: 2;
|
811
|
-
|
812
|
-
|
813
|
-
background 0.1s linear
|
814
|
-
;
|
815
|
-
-moz-transition:
|
816
|
-
background 0.1s linear
|
817
|
-
;
|
818
|
-
-o-transition:
|
819
|
-
background 0.1s linear
|
820
|
-
;
|
821
|
-
-ms-transition:
|
822
|
-
background 0.1s linear
|
823
|
-
;
|
824
|
-
transition:
|
825
|
-
background 0.1s linear
|
826
|
-
;
|
754
|
+
-webkit-transition: background 0.1s linear;
|
755
|
+
transition: background 0.1s linear;
|
827
756
|
}
|
757
|
+
|
828
758
|
/*--- Above ---*/
|
759
|
+
|
829
760
|
.ui.pointing.label:before {
|
830
761
|
background-color: #E8E8E8;
|
831
762
|
}
|
763
|
+
|
832
764
|
.ui.pointing.label,
|
833
765
|
.ui.pointing.above.label {
|
834
766
|
margin-top: 1em;
|
835
767
|
}
|
768
|
+
|
836
769
|
.ui.pointing.label:before,
|
837
770
|
.ui.pointing.above.label:before {
|
838
771
|
margin-left: -0.3em;
|
839
772
|
top: -0.3em;
|
840
773
|
left: 50%;
|
841
774
|
}
|
775
|
+
|
842
776
|
/*--- Below ---*/
|
777
|
+
|
843
778
|
.ui.pointing.below.label {
|
844
779
|
margin-top: 0em;
|
845
780
|
margin-bottom: 1em;
|
846
781
|
}
|
782
|
+
|
847
783
|
.ui.pointing.below.label:before {
|
848
784
|
margin-left: -0.3em;
|
849
785
|
top: auto;
|
@@ -851,11 +787,14 @@ a.ui.teal.label:hover:before {
|
|
851
787
|
bottom: -0.3em;
|
852
788
|
left: 50%;
|
853
789
|
}
|
790
|
+
|
854
791
|
/*--- Left ---*/
|
792
|
+
|
855
793
|
.ui.pointing.left.label {
|
856
794
|
margin-top: 0em;
|
857
795
|
margin-left: 1em;
|
858
796
|
}
|
797
|
+
|
859
798
|
.ui.pointing.left.label:before {
|
860
799
|
margin-top: -0.3em;
|
861
800
|
bottom: auto;
|
@@ -863,11 +802,14 @@ a.ui.teal.label:hover:before {
|
|
863
802
|
top: 50%;
|
864
803
|
left: 0em;
|
865
804
|
}
|
805
|
+
|
866
806
|
/*--- Right ---*/
|
807
|
+
|
867
808
|
.ui.pointing.right.label {
|
868
809
|
margin-top: 0em;
|
869
810
|
margin-right: 1em;
|
870
811
|
}
|
812
|
+
|
871
813
|
.ui.pointing.right.label:before {
|
872
814
|
margin-top: -0.3em;
|
873
815
|
right: -0.3em;
|
@@ -896,14 +838,17 @@ a.ui.teal.label:hover:before {
|
|
896
838
|
.ui.small.label {
|
897
839
|
font-size: 0.75rem;
|
898
840
|
}
|
841
|
+
|
899
842
|
.ui.label {
|
900
843
|
font-size: 0.8125rem;
|
901
844
|
}
|
845
|
+
|
902
846
|
.ui.large.labels .label,
|
903
847
|
.ui.large.label {
|
904
848
|
font-size: 0.875rem;
|
905
849
|
}
|
850
|
+
|
906
851
|
.ui.huge.labels .label,
|
907
852
|
.ui.huge.label {
|
908
853
|
font-size: 1rem;
|
909
|
-
}
|
854
|
+
}
|