semantic-ui-sass 0.19.3.1 → 1.7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +5 -6
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +472 -367
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +9 -5
- data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
- data/app/assets/javascripts/semantic-ui/api.js +840 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
- data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
- data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
- data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
- data/app/assets/javascripts/semantic-ui/modal.js +294 -219
- data/app/assets/javascripts/semantic-ui/nag.js +120 -186
- data/app/assets/javascripts/semantic-ui/popup.js +491 -223
- data/app/assets/javascripts/semantic-ui/progress.js +779 -0
- data/app/assets/javascripts/semantic-ui/rating.js +66 -22
- data/app/assets/javascripts/semantic-ui/search.js +219 -99
- data/app/assets/javascripts/semantic-ui/shape.js +72 -29
- data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
- data/app/assets/javascripts/semantic-ui/site.js +487 -0
- data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
- data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
- data/app/assets/javascripts/semantic-ui/tab.js +680 -603
- data/app/assets/javascripts/semantic-ui/transition.js +269 -158
- data/app/assets/javascripts/semantic-ui/video.js +113 -32
- data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
- data/app/assets/javascripts/semantic-ui/visit.js +513 -0
- data/app/assets/stylesheets/semantic-ui.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +99 -216
- metadata +22 -27
- data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
- data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
- data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-large.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small.gif +0 -0
- data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
- data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
- data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,7 +1,7 @@
|
|
1
|
-
/*
|
2
|
-
* # Semantic
|
3
|
-
*
|
4
|
-
*
|
1
|
+
/*
|
2
|
+
* # Semantic UI
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
5
|
*
|
6
6
|
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
@@ -9,101 +9,124 @@
|
|
9
9
|
*
|
10
10
|
*/
|
11
11
|
|
12
|
+
|
13
|
+
|
12
14
|
/*******************************
|
13
15
|
Label
|
14
16
|
*******************************/
|
15
17
|
|
16
18
|
.ui.label {
|
17
19
|
display: inline-block;
|
18
|
-
vertical-align:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-ms-box-sizing: border-box;
|
20
|
+
vertical-align: baseline;
|
21
|
+
line-height: 1;
|
22
|
+
margin: 0em 0.125em;
|
23
|
+
background-color: #e8e8e8;
|
24
|
+
border-color: #e8e8e8;
|
25
|
+
background-image: none;
|
26
|
+
padding: 0.6em 0.8em;
|
27
|
+
color: rgba(0, 0, 0, 0.6);
|
28
|
+
text-transform: none;
|
29
|
+
font-weight: bold;
|
30
|
+
border-radius: 0.2857rem;
|
30
31
|
box-sizing: border-box;
|
31
|
-
-webkit-transition: background 0.
|
32
|
-
|
32
|
+
-webkit-transition: background 0.2s ease;
|
33
|
+
transition: background 0.2s ease;
|
33
34
|
}
|
34
|
-
|
35
35
|
.ui.label:first-child {
|
36
36
|
margin-left: 0em;
|
37
37
|
}
|
38
|
-
|
39
38
|
.ui.label:last-child {
|
40
39
|
margin-right: 0em;
|
41
40
|
}
|
42
41
|
|
43
42
|
/* Link */
|
44
|
-
|
45
43
|
a.ui.label {
|
46
44
|
cursor: pointer;
|
47
45
|
}
|
48
46
|
|
49
47
|
/* Inside Link */
|
50
|
-
|
51
48
|
.ui.label a {
|
52
49
|
cursor: pointer;
|
53
50
|
color: inherit;
|
54
51
|
opacity: 0.8;
|
55
52
|
-webkit-transition: 0.2s opacity ease;
|
56
|
-
|
53
|
+
transition: 0.2s opacity ease;
|
57
54
|
}
|
58
|
-
|
59
55
|
.ui.label a:hover {
|
60
56
|
opacity: 1;
|
61
57
|
}
|
62
58
|
|
63
|
-
/*
|
59
|
+
/* Icon */
|
60
|
+
.ui.label .icon {
|
61
|
+
width: auto;
|
62
|
+
margin: 0em 0.75em 0em 0em;
|
63
|
+
}
|
64
64
|
|
65
|
+
/* Detail */
|
65
66
|
.ui.label .detail {
|
66
67
|
display: inline-block;
|
67
|
-
|
68
|
+
vertical-align: top;
|
68
69
|
font-weight: bold;
|
70
|
+
margin-left: 1em;
|
69
71
|
opacity: 0.8;
|
70
72
|
}
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
.ui.label .icon {
|
75
|
-
width: auto;
|
73
|
+
.ui.label .detail .icon {
|
74
|
+
margin: 0em 0.25em 0em 0em;
|
76
75
|
}
|
77
76
|
|
78
77
|
/* Removable label */
|
79
|
-
|
78
|
+
.ui.label .close.icon,
|
80
79
|
.ui.label .delete.icon {
|
81
80
|
cursor: pointer;
|
82
|
-
margin: 0em
|
83
|
-
|
84
|
-
|
85
|
-
transition: background 0.
|
81
|
+
margin-right: 0em;
|
82
|
+
margin-left: 0.5em;
|
83
|
+
opacity: 0.8;
|
84
|
+
-webkit-transition: background 0.2s ease;
|
85
|
+
transition: background 0.2s ease;
|
86
86
|
}
|
87
|
-
|
88
87
|
.ui.label .delete.icon:hover {
|
89
|
-
opacity:
|
88
|
+
opacity: 1;
|
89
|
+
}
|
90
|
+
|
91
|
+
/*-------------------
|
92
|
+
Group
|
93
|
+
--------------------*/
|
94
|
+
|
95
|
+
.ui.labels .label {
|
96
|
+
margin: 0em 0.5em 0.75em 0em;
|
90
97
|
}
|
91
98
|
|
92
99
|
/*-------------------
|
93
100
|
Coupling
|
94
101
|
--------------------*/
|
95
102
|
|
96
|
-
/* Padding on next content after a label */
|
97
103
|
|
98
|
-
|
99
|
-
|
104
|
+
/* Remove border radius on attached segment */
|
105
|
+
.ui.attached.segment > .ui.top.left.attached.label,
|
106
|
+
.ui.bottom.attached.segment > .ui.top.left.attached.label {
|
107
|
+
border-radius-top-left: 0;
|
108
|
+
}
|
109
|
+
.ui.attached.segment > .ui.top.right.attached.label,
|
110
|
+
.ui.bottom.attached.segment > .ui.top.right.attached.label {
|
111
|
+
border-radius-top-right: 0;
|
112
|
+
}
|
113
|
+
.ui.top.attached.segment > .ui.bottom.left.attached.label {
|
114
|
+
border-radius-bottom-left: 0;
|
115
|
+
}
|
116
|
+
.ui.top.attached.segment > .ui.bottom.right.attached.label {
|
117
|
+
border-radius-bottom-right: 0;
|
100
118
|
}
|
101
119
|
|
102
|
-
|
120
|
+
/* Padding on next content after a label */
|
121
|
+
.ui.top.attached.label:first-child + :not(.attached) {
|
122
|
+
margin-top: 2rem !important;
|
123
|
+
}
|
124
|
+
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
|
103
125
|
margin-top: 0em;
|
104
|
-
margin-bottom:
|
126
|
+
margin-bottom: 2rem !important;
|
105
127
|
}
|
106
128
|
|
129
|
+
|
107
130
|
/*******************************
|
108
131
|
Types
|
109
132
|
*******************************/
|
@@ -112,74 +135,28 @@ a.ui.label {
|
|
112
135
|
width: auto !important;
|
113
136
|
margin-top: 0em;
|
114
137
|
margin-bottom: 0em;
|
115
|
-
|
116
|
-
padding-bottom: 0.4em;
|
117
|
-
line-height: 1.5em;
|
138
|
+
max-width: 9999px;
|
118
139
|
vertical-align: baseline;
|
119
140
|
text-transform: none;
|
120
|
-
|
121
|
-
|
141
|
+
background: #e8e8e8;
|
142
|
+
padding: 0.6em 0.8em 0.6em 0.5em;
|
143
|
+
border-radius: 0.2857rem;
|
144
|
+
box-shadow: none;
|
122
145
|
}
|
123
|
-
|
124
146
|
.ui.image.label img {
|
125
147
|
display: inline-block;
|
126
|
-
height: 2.25em;
|
127
|
-
margin: -0.4em 0.8em -0.4em -0.8em;
|
128
148
|
vertical-align: top;
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
/*******************************
|
133
|
-
States
|
134
|
-
*******************************/
|
135
|
-
|
136
|
-
/*-------------------
|
137
|
-
Disabled
|
138
|
-
--------------------*/
|
139
|
-
|
140
|
-
.ui.label.disabled {
|
141
|
-
opacity: 0.5;
|
142
|
-
}
|
143
|
-
|
144
|
-
/*-------------------
|
145
|
-
Hover
|
146
|
-
--------------------*/
|
147
|
-
|
148
|
-
a.ui.labels .label:hover,
|
149
|
-
a.ui.label:hover {
|
150
|
-
background-color: #E0E0E0;
|
151
|
-
border-color: #E0E0E0;
|
152
|
-
color: rgba(0, 0, 0, 0.7);
|
153
|
-
}
|
154
|
-
|
155
|
-
.ui.labels a.label:hover:before,
|
156
|
-
a.ui.label:hover:before {
|
157
|
-
background-color: #E0E0E0;
|
158
|
-
color: rgba(0, 0, 0, 0.7);
|
159
|
-
}
|
160
|
-
|
161
|
-
/*-------------------
|
162
|
-
Visible
|
163
|
-
--------------------*/
|
164
|
-
|
165
|
-
.ui.labels.visible .label,
|
166
|
-
.ui.label.visible {
|
167
|
-
display: inline-block !important;
|
149
|
+
height: 2.2em;
|
150
|
+
margin: -0.6em 0.5em -0.6em -0.5em;
|
151
|
+
border-radius: 0.2857rem;
|
168
152
|
}
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
.ui.labels.hidden .label,
|
175
|
-
.ui.label.hidden {
|
176
|
-
display: none !important;
|
153
|
+
.ui.image.label .detail {
|
154
|
+
background: rgba(0, 0, 0, 0.1);
|
155
|
+
margin: -0.6em -0.8em -0.6em 0.5em;
|
156
|
+
padding: 0.6em 0.8em;
|
157
|
+
border-radius: 0em 0.2857rem 0.2857rem 0em;
|
177
158
|
}
|
178
159
|
|
179
|
-
/*******************************
|
180
|
-
Variations
|
181
|
-
*******************************/
|
182
|
-
|
183
160
|
/*-------------------
|
184
161
|
Tag
|
185
162
|
--------------------*/
|
@@ -188,40 +165,122 @@ a.ui.label:hover:before {
|
|
188
165
|
.ui.tag.label {
|
189
166
|
margin-left: 1em;
|
190
167
|
position: relative;
|
191
|
-
padding:
|
192
|
-
|
168
|
+
padding-left: 1.5em;
|
169
|
+
padding-right: 1.5em;
|
170
|
+
border-radius: 0em 0.2857rem 0.2857rem 0em;
|
193
171
|
}
|
194
|
-
|
195
172
|
.ui.tag.labels .label:before,
|
196
173
|
.ui.tag.label:before {
|
197
174
|
position: absolute;
|
198
|
-
|
199
|
-
|
175
|
+
-webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
176
|
+
-ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
177
|
+
transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
178
|
+
top: 50%;
|
179
|
+
right: 100%;
|
200
180
|
content: '';
|
201
|
-
|
181
|
+
background-color: #e8e8e8;
|
202
182
|
background-image: none;
|
203
|
-
width: 1.
|
204
|
-
height: 1.
|
205
|
-
-webkit-
|
206
|
-
|
207
|
-
transform: rotate(45deg);
|
208
|
-
-webkit-transition: background 0.1s linear;
|
209
|
-
transition: background 0.1s linear;
|
183
|
+
width: 1.56em;
|
184
|
+
height: 1.56em;
|
185
|
+
-webkit-transition: background 0.2s ease;
|
186
|
+
transition: background 0.2s ease;
|
210
187
|
}
|
211
|
-
|
212
188
|
.ui.tag.labels .label:after,
|
213
189
|
.ui.tag.label:after {
|
214
190
|
position: absolute;
|
215
191
|
content: '';
|
216
192
|
top: 50%;
|
217
193
|
left: -0.25em;
|
218
|
-
margin-top: -0.
|
219
|
-
background-color: #
|
220
|
-
width: 0.
|
221
|
-
height: 0.
|
222
|
-
-webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
194
|
+
margin-top: -0.25em;
|
195
|
+
background-color: #ffffff !important;
|
196
|
+
width: 0.5em;
|
197
|
+
height: 0.5em;
|
223
198
|
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
224
|
-
border-radius:
|
199
|
+
border-radius: 500rem;
|
200
|
+
}
|
201
|
+
|
202
|
+
/*-------------------
|
203
|
+
Corner Label
|
204
|
+
--------------------*/
|
205
|
+
|
206
|
+
.ui.corner.label {
|
207
|
+
position: absolute;
|
208
|
+
top: 0em;
|
209
|
+
right: 0em;
|
210
|
+
margin: 0em;
|
211
|
+
padding: 0em;
|
212
|
+
text-align: center;
|
213
|
+
width: 3.25em;
|
214
|
+
height: 3.25em;
|
215
|
+
z-index: 10;
|
216
|
+
-webkit-transition: border-color 0.2s ease;
|
217
|
+
transition: border-color 0.2s ease;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* Icon Label */
|
221
|
+
.ui.corner.label {
|
222
|
+
background-color: transparent !important;
|
223
|
+
}
|
224
|
+
.ui.corner.label:after {
|
225
|
+
position: absolute;
|
226
|
+
content: "";
|
227
|
+
right: 0em;
|
228
|
+
top: 0em;
|
229
|
+
z-index: -1;
|
230
|
+
width: 0em;
|
231
|
+
height: 0em;
|
232
|
+
background-color: transparent !important;
|
233
|
+
border-top: 0em solid transparent;
|
234
|
+
border-right: 3.25em solid transparent;
|
235
|
+
border-bottom: 3.25em solid transparent;
|
236
|
+
border-left: 0em solid transparent;
|
237
|
+
border-right-color: inherit;
|
238
|
+
-webkit-transition: border-color 0.2s ease;
|
239
|
+
transition: border-color 0.2s ease;
|
240
|
+
}
|
241
|
+
.ui.corner.label .icon {
|
242
|
+
position: relative;
|
243
|
+
top: 0.4em;
|
244
|
+
left: 0.75em;
|
245
|
+
font-size: 1em;
|
246
|
+
margin: 0em;
|
247
|
+
}
|
248
|
+
|
249
|
+
/* Left Corner */
|
250
|
+
.ui.left.corner.label,
|
251
|
+
.ui.left.corner.label:after {
|
252
|
+
right: auto;
|
253
|
+
left: 0em;
|
254
|
+
}
|
255
|
+
.ui.left.corner.label:after {
|
256
|
+
border-top: 3.25em solid transparent;
|
257
|
+
border-right: 3.25em solid transparent;
|
258
|
+
border-bottom: 0em solid transparent;
|
259
|
+
border-left: 0em solid transparent;
|
260
|
+
border-top-color: inherit;
|
261
|
+
}
|
262
|
+
.ui.left.corner.label .icon {
|
263
|
+
left: -0.75em;
|
264
|
+
}
|
265
|
+
|
266
|
+
/* Segment */
|
267
|
+
.ui.segment > .ui.corner.label {
|
268
|
+
top: -1px;
|
269
|
+
right: -1px;
|
270
|
+
}
|
271
|
+
.ui.segment > .ui.left.corner.label {
|
272
|
+
right: auto;
|
273
|
+
left: -1px;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* Input */
|
277
|
+
.ui.input > .ui.corner.label {
|
278
|
+
top: 1px;
|
279
|
+
right: 1px;
|
280
|
+
}
|
281
|
+
.ui.input > .ui.right.corner.label {
|
282
|
+
right: auto;
|
283
|
+
left: 1px;
|
225
284
|
}
|
226
285
|
|
227
286
|
/*-------------------
|
@@ -230,27 +289,44 @@ a.ui.label:hover:before {
|
|
230
289
|
|
231
290
|
.ui.ribbon.label {
|
232
291
|
position: relative;
|
233
|
-
margin: 0em
|
292
|
+
margin: 0em;
|
234
293
|
left: -2rem;
|
235
294
|
padding-left: 2rem;
|
236
|
-
border-radius:
|
295
|
+
border-radius: 0em 0.2857rem 0.2857rem 0em;
|
237
296
|
border-color: rgba(0, 0, 0, 0.15);
|
238
297
|
}
|
239
|
-
|
240
298
|
.ui.ribbon.label:after {
|
241
299
|
position: absolute;
|
242
300
|
content: "";
|
243
301
|
top: 100%;
|
244
302
|
left: 0%;
|
245
|
-
|
246
|
-
border-
|
303
|
+
background-color: transparent !important;
|
304
|
+
border-style: solid;
|
305
|
+
border-width: 0em 1.2em 1.2em 0em;
|
306
|
+
border-color: transparent;
|
247
307
|
border-right-color: inherit;
|
248
|
-
border-right-style: solid;
|
249
|
-
border-bottom: 1em solid transparent;
|
250
|
-
border-left: 0em solid transparent;
|
251
308
|
width: 0em;
|
252
309
|
height: 0em;
|
253
310
|
}
|
311
|
+
.ui[class*="right ribbon"].label {
|
312
|
+
text-align: left;
|
313
|
+
-webkit-transform: translateX(-100%);
|
314
|
+
-ms-transform: translateX(-100%);
|
315
|
+
transform: translateX(-100%);
|
316
|
+
left: -webkit-calc(100% + 2rem );
|
317
|
+
left: calc(100% + 2rem );
|
318
|
+
border-radius: 0.2857rem 0em 0em 0.2857rem;
|
319
|
+
padding-left: 0.8em;
|
320
|
+
padding-right: 2rem;
|
321
|
+
}
|
322
|
+
.ui[class*="right ribbon"].label:after {
|
323
|
+
left: auto;
|
324
|
+
right: 0%;
|
325
|
+
border-style: solid;
|
326
|
+
border-width: 1.2em 1.2em 0em 0em;
|
327
|
+
border-color: transparent;
|
328
|
+
border-top-color: inherit;
|
329
|
+
}
|
254
330
|
|
255
331
|
/*-------------------
|
256
332
|
Attached
|
@@ -264,485 +340,409 @@ a.ui.label:hover:before {
|
|
264
340
|
top: 0em;
|
265
341
|
left: 0em;
|
266
342
|
padding: 0.75em 1em;
|
267
|
-
border-radius:
|
343
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
268
344
|
}
|
269
|
-
|
270
345
|
.ui.bottom.attached.label {
|
271
346
|
top: auto;
|
272
347
|
bottom: 0em;
|
273
|
-
border-radius: 0em 0em
|
348
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
274
349
|
}
|
275
|
-
|
276
350
|
.ui.top.left.attached.label {
|
277
351
|
width: auto;
|
278
352
|
margin-top: 0em !important;
|
279
|
-
border-radius:
|
353
|
+
border-radius: 0.2857rem 0em 0.2857rem 0em;
|
280
354
|
}
|
281
|
-
|
282
355
|
.ui.top.right.attached.label {
|
283
356
|
width: auto;
|
284
357
|
left: auto;
|
285
358
|
right: 0em;
|
286
|
-
border-radius: 0em
|
359
|
+
border-radius: 0em 0.2857rem 0em 0.2857rem;
|
287
360
|
}
|
288
|
-
|
289
361
|
.ui.bottom.left.attached.label {
|
290
362
|
width: auto;
|
291
363
|
top: auto;
|
292
364
|
bottom: 0em;
|
293
|
-
border-radius:
|
365
|
+
border-radius: 0em 0.2857rem 0em 0.2857rem;
|
294
366
|
}
|
295
|
-
|
296
367
|
.ui.bottom.right.attached.label {
|
297
368
|
top: auto;
|
298
369
|
bottom: 0em;
|
299
370
|
left: auto;
|
300
371
|
right: 0em;
|
301
372
|
width: auto;
|
302
|
-
border-radius:
|
303
|
-
}
|
304
|
-
|
305
|
-
/*-------------------
|
306
|
-
Corner Label
|
307
|
-
--------------------*/
|
308
|
-
|
309
|
-
.ui.corner.label {
|
310
|
-
background-color: transparent;
|
311
|
-
position: absolute;
|
312
|
-
top: 0em;
|
313
|
-
right: 0em;
|
314
|
-
z-index: 10;
|
315
|
-
margin: 0em;
|
316
|
-
width: 3em;
|
317
|
-
height: 3em;
|
318
|
-
padding: 0em;
|
319
|
-
text-align: center;
|
320
|
-
-webkit-transition: color 0.2s ease;
|
321
|
-
transition: color 0.2s ease;
|
373
|
+
border-radius: 0.2857rem 0em 0.2857rem 0em;
|
322
374
|
}
|
323
375
|
|
324
|
-
.ui.corner.label:after {
|
325
|
-
position: absolute;
|
326
|
-
content: "";
|
327
|
-
right: 0em;
|
328
|
-
top: 0em;
|
329
|
-
z-index: -1;
|
330
|
-
width: 0em;
|
331
|
-
height: 0em;
|
332
|
-
border-top: 0em solid transparent;
|
333
|
-
border-right: 3em solid transparent;
|
334
|
-
border-bottom: 3em solid transparent;
|
335
|
-
border-left: 0em solid transparent;
|
336
|
-
border-right-color: inherit;
|
337
|
-
-webkit-transition: border-color 0.2s ease;
|
338
|
-
transition: border-color 0.2s ease;
|
339
|
-
}
|
340
|
-
|
341
|
-
.ui.corner.label .icon {
|
342
|
-
font-size: 0.875em;
|
343
|
-
margin: 0.5em 0em 0em 1.25em;
|
344
|
-
}
|
345
|
-
|
346
|
-
.ui.corner.label .text {
|
347
|
-
display: inline-block;
|
348
|
-
font-weight: bold;
|
349
|
-
margin: 0.5em 0em 0em 1em;
|
350
|
-
width: 2.5em;
|
351
|
-
font-size: 0.875em;
|
352
|
-
text-align: center;
|
353
|
-
-webkit-transform: rotate(45deg);
|
354
|
-
-ms-transform: rotate(45deg);
|
355
|
-
transform: rotate(45deg);
|
356
|
-
}
|
357
|
-
|
358
|
-
/* Coupling */
|
359
|
-
|
360
|
-
.ui.rounded.image > .ui.corner.label,
|
361
|
-
.ui.input > .ui.corner.label,
|
362
|
-
.ui.segment > .ui.corner.label {
|
363
|
-
overflow: hidden;
|
364
|
-
}
|
365
|
-
|
366
|
-
.ui.segment > .ui.corner.label {
|
367
|
-
top: -1px;
|
368
|
-
right: -1px;
|
369
|
-
}
|
370
376
|
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
}
|
375
|
-
|
376
|
-
.ui.input > .ui.corner.label {
|
377
|
-
top: 1px;
|
378
|
-
right: 1px;
|
379
|
-
}
|
380
|
-
|
381
|
-
.ui.input > .ui.right.corner.label {
|
382
|
-
right: auto;
|
383
|
-
left: 1px;
|
384
|
-
}
|
377
|
+
/*******************************
|
378
|
+
States
|
379
|
+
*******************************/
|
385
380
|
|
386
|
-
/* Left Corner */
|
387
381
|
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
left: 0em;
|
392
|
-
}
|
382
|
+
/*-------------------
|
383
|
+
Disabled
|
384
|
+
--------------------*/
|
393
385
|
|
394
|
-
.ui.
|
395
|
-
|
396
|
-
border-right: 3em solid transparent;
|
397
|
-
border-bottom: 0em solid transparent;
|
398
|
-
border-left: 0em solid transparent;
|
399
|
-
border-top-color: inherit;
|
386
|
+
.ui.label.disabled {
|
387
|
+
opacity: 0.5;
|
400
388
|
}
|
401
389
|
|
402
|
-
|
403
|
-
|
404
|
-
|
390
|
+
/*-------------------
|
391
|
+
Hover
|
392
|
+
--------------------*/
|
405
393
|
|
406
|
-
.ui.
|
407
|
-
|
408
|
-
-
|
409
|
-
-
|
410
|
-
|
394
|
+
a.ui.labels .label:hover,
|
395
|
+
a.ui.label:hover {
|
396
|
+
background-color: #e0e0e0;
|
397
|
+
border-color: #e0e0e0;
|
398
|
+
background-image: none;
|
399
|
+
color: rgba(0, 0, 0, 0.8);
|
411
400
|
}
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
401
|
+
.ui.labels a.label:hover:before,
|
402
|
+
a.ui.label:hover:before {
|
403
|
+
background-color: #e0e0e0;
|
404
|
+
background-image: none;
|
405
|
+
color: rgba(0, 0, 0, 0.8);
|
417
406
|
}
|
418
407
|
|
419
408
|
/*-------------------
|
420
|
-
|
409
|
+
Visible
|
421
410
|
--------------------*/
|
422
411
|
|
423
|
-
.ui.label
|
424
|
-
.ui.
|
425
|
-
|
426
|
-
-webkit-box-sizing: border-box;
|
427
|
-
-moz-box-sizing: border-box;
|
428
|
-
-ms-box-sizing: border-box;
|
429
|
-
box-sizing: border-box;
|
412
|
+
.ui.labels.visible .label,
|
413
|
+
.ui.label.visible {
|
414
|
+
display: inline-block !important;
|
430
415
|
}
|
431
416
|
|
432
417
|
/*-------------------
|
433
|
-
|
418
|
+
Hidden
|
434
419
|
--------------------*/
|
435
420
|
|
436
|
-
.ui.
|
437
|
-
.ui.
|
438
|
-
|
421
|
+
.ui.labels.hidden .label,
|
422
|
+
.ui.label.hidden {
|
423
|
+
display: none !important;
|
439
424
|
}
|
440
425
|
|
426
|
+
|
427
|
+
/*******************************
|
428
|
+
Variations
|
429
|
+
*******************************/
|
430
|
+
|
431
|
+
|
441
432
|
/*-------------------
|
442
433
|
Colors
|
443
434
|
--------------------*/
|
444
435
|
|
436
|
+
|
445
437
|
/*--- Black ---*/
|
446
438
|
|
447
439
|
.ui.black.labels .label,
|
448
440
|
.ui.black.label {
|
449
|
-
background-color: #
|
450
|
-
border-color: #
|
451
|
-
color: #
|
441
|
+
background-color: #1b1c1d !important;
|
442
|
+
border-color: #1b1c1d !important;
|
443
|
+
color: #ffffff !important;
|
452
444
|
}
|
453
|
-
|
454
445
|
.ui.labels .black.label:before,
|
455
446
|
.ui.black.labels .label:before,
|
456
447
|
.ui.black.label:before {
|
457
|
-
background-color: #
|
448
|
+
background-color: #1b1c1d !important;
|
458
449
|
}
|
459
|
-
|
460
|
-
/* Hover */
|
461
|
-
|
462
450
|
a.ui.black.labels .label:hover,
|
463
451
|
a.ui.black.label:hover {
|
464
|
-
background-color: #
|
465
|
-
border-color: #
|
452
|
+
background-color: #1b1c1d !important;
|
453
|
+
border-color: #1b1c1d !important;
|
466
454
|
}
|
467
|
-
|
468
455
|
.ui.labels a.black.label:hover:before,
|
469
456
|
.ui.black.labels a.label:hover:before,
|
470
457
|
a.ui.black.label:hover:before {
|
471
|
-
background-color: #
|
458
|
+
background-color: #1b1c1d !important;
|
472
459
|
}
|
473
|
-
|
474
|
-
/* Corner */
|
475
|
-
|
476
460
|
.ui.black.corner.label,
|
477
461
|
.ui.black.corner.label:hover {
|
478
462
|
background-color: transparent !important;
|
479
463
|
}
|
464
|
+
.ui.black.ribbon.label {
|
465
|
+
border-color: #020203 !important;
|
466
|
+
}
|
480
467
|
|
481
|
-
|
468
|
+
/*--- Blue ---*/
|
482
469
|
|
483
|
-
.ui.
|
484
|
-
|
470
|
+
.ui.blue.labels .label,
|
471
|
+
.ui.blue.label {
|
472
|
+
background-color: #3b83c0 !important;
|
473
|
+
border-color: #3b83c0 !important;
|
474
|
+
color: #ffffff !important;
|
475
|
+
}
|
476
|
+
.ui.labels .blue.label:before,
|
477
|
+
.ui.blue.labels .label:before,
|
478
|
+
.ui.blue.label:before {
|
479
|
+
background-color: #3b83c0 !important;
|
480
|
+
}
|
481
|
+
a.ui.blue.labels .label:hover,
|
482
|
+
.ui.blue.labels a.label:hover,
|
483
|
+
a.ui.blue.label:hover {
|
484
|
+
background-color: #458ac6 !important;
|
485
|
+
border-color: #458ac6 !important;
|
486
|
+
color: #ffffff !important;
|
487
|
+
}
|
488
|
+
.ui.labels a.blue.label:hover:before,
|
489
|
+
.ui.blue.labels a.label:hover:before,
|
490
|
+
a.ui.blue.label:hover:before {
|
491
|
+
background-color: #458ac6 !important;
|
492
|
+
}
|
493
|
+
.ui.blue.corner.label,
|
494
|
+
.ui.blue.corner.label:hover {
|
495
|
+
background-color: transparent !important;
|
496
|
+
}
|
497
|
+
.ui.blue.ribbon.label {
|
498
|
+
border-color: #2f6899 !important;
|
485
499
|
}
|
486
500
|
|
487
501
|
/*--- Green ---*/
|
488
502
|
|
489
503
|
.ui.green.labels .label,
|
490
504
|
.ui.green.label {
|
491
|
-
background-color: #
|
492
|
-
border-color: #
|
493
|
-
color: #
|
505
|
+
background-color: #5bbd72 !important;
|
506
|
+
border-color: #5bbd72 !important;
|
507
|
+
color: #ffffff !important;
|
494
508
|
}
|
495
|
-
|
496
509
|
.ui.labels .green.label:before,
|
497
510
|
.ui.green.labels .label:before,
|
498
511
|
.ui.green.label:before {
|
499
|
-
background-color: #
|
512
|
+
background-color: #5bbd72 !important;
|
500
513
|
}
|
501
|
-
|
502
|
-
/* Hover */
|
503
|
-
|
504
514
|
a.ui.green.labels .label:hover,
|
505
515
|
a.ui.green.label:hover {
|
506
|
-
background-color: #
|
507
|
-
border-color: #
|
516
|
+
background-color: #66c17b !important;
|
517
|
+
border-color: #66c17b !important;
|
508
518
|
}
|
509
|
-
|
510
519
|
.ui.labels a.green.label:hover:before,
|
511
520
|
.ui.green.labels a.label:hover:before,
|
512
521
|
a.ui.green.label:hover:before {
|
513
|
-
background-color: #
|
522
|
+
background-color: #66c17b !important;
|
514
523
|
}
|
515
|
-
|
516
|
-
/* Corner */
|
517
|
-
|
518
524
|
.ui.green.corner.label,
|
519
525
|
.ui.green.corner.label:hover {
|
520
526
|
background-color: transparent !important;
|
521
527
|
}
|
522
|
-
|
523
|
-
/* Ribbon */
|
524
|
-
|
525
528
|
.ui.green.ribbon.label {
|
526
|
-
border-color: #
|
529
|
+
border-color: #42a359 !important;
|
527
530
|
}
|
528
531
|
|
529
|
-
/*---
|
532
|
+
/*--- Orange ---*/
|
530
533
|
|
531
|
-
.ui.
|
532
|
-
.ui.
|
533
|
-
background-color: #
|
534
|
-
border-color: #
|
535
|
-
color: #
|
534
|
+
.ui.orange.labels .label,
|
535
|
+
.ui.orange.label {
|
536
|
+
background-color: #e07b53 !important;
|
537
|
+
border-color: #e07b53 !important;
|
538
|
+
color: #ffffff !important;
|
536
539
|
}
|
537
|
-
|
538
|
-
.ui.labels .
|
539
|
-
.ui.
|
540
|
-
|
541
|
-
background-color: #D95C5C !important;
|
540
|
+
.ui.labels .orange.label:before,
|
541
|
+
.ui.orange.labels .label:before,
|
542
|
+
.ui.orange.label:before {
|
543
|
+
background-color: #e07b53 !important;
|
542
544
|
}
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
545
|
+
a.ui.orange.labels .label:hover,
|
546
|
+
.ui.orange.labels a.label:hover,
|
547
|
+
a.ui.orange.label:hover {
|
548
|
+
background-color: #e28560 !important;
|
549
|
+
border-color: #e28560 !important;
|
550
|
+
color: #ffffff !important;
|
549
551
|
}
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
a.ui.red.label:hover {
|
555
|
-
background-color: #DE3859 !important;
|
556
|
-
border-color: #DE3859 !important;
|
557
|
-
color: #FFFFFF !important;
|
552
|
+
.ui.labels a.orange.label:hover:before,
|
553
|
+
.ui.orange.labels a.label:hover:before,
|
554
|
+
a.ui.orange.label:hover:before {
|
555
|
+
background-color: #e28560 !important;
|
558
556
|
}
|
559
|
-
|
560
|
-
.ui.
|
561
|
-
|
562
|
-
a.ui.red.label:hover:before {
|
563
|
-
background-color: #DE3859 !important;
|
557
|
+
.ui.orange.corner.label,
|
558
|
+
.ui.orange.corner.label:hover {
|
559
|
+
background-color: transparent !important;
|
564
560
|
}
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
.ui.red.ribbon.label {
|
569
|
-
border-color: #DE3859 !important;
|
561
|
+
.ui.orange.ribbon.label {
|
562
|
+
border-color: #d85a28 !important;
|
570
563
|
}
|
571
564
|
|
572
|
-
/*---
|
565
|
+
/*--- Pink ---*/
|
573
566
|
|
574
|
-
.ui.
|
575
|
-
.ui.
|
576
|
-
background-color: #
|
577
|
-
border-color: #
|
578
|
-
color: #
|
567
|
+
.ui.pink.labels .label,
|
568
|
+
.ui.pink.label {
|
569
|
+
background-color: #d9499a !important;
|
570
|
+
border-color: #d9499a !important;
|
571
|
+
color: #ffffff !important;
|
579
572
|
}
|
580
|
-
|
581
|
-
.ui.labels .
|
582
|
-
.ui.
|
583
|
-
|
584
|
-
background-color: #6ECFF5 !important;
|
573
|
+
.ui.labels .pink.label:before,
|
574
|
+
.ui.pink.labels .label:before,
|
575
|
+
.ui.pink.label:before {
|
576
|
+
background-color: #d9499a !important;
|
585
577
|
}
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
background-color: #1AB8F3 !important;
|
593
|
-
border-color: #1AB8F3 !important;
|
594
|
-
color: #FFFFFF !important;
|
578
|
+
a.ui.pink.labels .label:hover,
|
579
|
+
.ui.pink.labels a.label:hover,
|
580
|
+
a.ui.pink.label:hover {
|
581
|
+
background-color: #dc56a1 !important;
|
582
|
+
border-color: #dc56a1 !important;
|
583
|
+
color: #ffffff !important;
|
595
584
|
}
|
596
|
-
|
597
|
-
.ui.labels a.
|
598
|
-
.ui.
|
599
|
-
|
600
|
-
background-color: #1AB8F3 !important;
|
585
|
+
.ui.labels a.pink.label:hover:before,
|
586
|
+
.ui.pink.labels a.label:hover:before,
|
587
|
+
a.ui.pink.label:hover:before {
|
588
|
+
background-color: #dc56a1 !important;
|
601
589
|
}
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
.ui.blue.corner.label,
|
606
|
-
.ui.blue.corner.label:hover {
|
590
|
+
.ui.pink.corner.label,
|
591
|
+
.ui.pink.corner.label:hover {
|
607
592
|
background-color: transparent !important;
|
608
593
|
}
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
.ui.blue.ribbon.label {
|
613
|
-
border-color: #1AB8F3 !important;
|
594
|
+
.ui.pink.ribbon.label {
|
595
|
+
border-color: #c62981 !important;
|
614
596
|
}
|
615
597
|
|
616
598
|
/*--- Purple ---*/
|
617
599
|
|
618
600
|
.ui.purple.labels .label,
|
619
601
|
.ui.purple.label {
|
620
|
-
background-color: #
|
621
|
-
border-color: #
|
622
|
-
color: #
|
602
|
+
background-color: #564f8a !important;
|
603
|
+
border-color: #564f8a !important;
|
604
|
+
color: #ffffff !important;
|
623
605
|
}
|
624
|
-
|
625
606
|
.ui.labels .purple.label:before,
|
626
607
|
.ui.purple.labels .label:before,
|
627
608
|
.ui.purple.label:before {
|
628
|
-
background-color: #
|
609
|
+
background-color: #564f8a !important;
|
629
610
|
}
|
630
|
-
|
631
|
-
/* Hover */
|
632
|
-
|
633
611
|
a.ui.purple.labels .label:hover,
|
634
612
|
.ui.purple.labels a.label:hover,
|
635
613
|
a.ui.purple.label:hover {
|
636
|
-
background-color: #
|
637
|
-
border-color: #
|
638
|
-
color: #
|
614
|
+
background-color: #5c5594 !important;
|
615
|
+
border-color: #5c5594 !important;
|
616
|
+
color: #ffffff !important;
|
639
617
|
}
|
640
|
-
|
641
618
|
.ui.labels a.purple.label:hover:before,
|
642
619
|
.ui.purple.labels a.label:hover:before,
|
643
620
|
a.ui.purple.label:hover:before {
|
644
|
-
background-color: #
|
621
|
+
background-color: #5c5594 !important;
|
645
622
|
}
|
646
|
-
|
647
|
-
/* Corner */
|
648
|
-
|
649
623
|
.ui.purple.corner.label,
|
650
624
|
.ui.purple.corner.label:hover {
|
651
625
|
background-color: transparent !important;
|
652
626
|
}
|
653
|
-
|
654
|
-
/* Ribbon */
|
655
|
-
|
656
627
|
.ui.purple.ribbon.label {
|
657
|
-
border-color: #
|
628
|
+
border-color: #423c6a !important;
|
658
629
|
}
|
659
630
|
|
660
|
-
/*---
|
631
|
+
/*--- Red ---*/
|
661
632
|
|
662
|
-
.ui.
|
663
|
-
.ui.
|
664
|
-
background-color: #
|
665
|
-
border-color: #
|
666
|
-
color: #
|
633
|
+
.ui.red.labels .label,
|
634
|
+
.ui.red.label {
|
635
|
+
background-color: #d95c5c !important;
|
636
|
+
border-color: #d95c5c !important;
|
637
|
+
color: #ffffff !important;
|
667
638
|
}
|
668
|
-
|
669
|
-
.ui.labels .
|
670
|
-
.ui.
|
671
|
-
|
672
|
-
background-color: #F05940 !important;
|
639
|
+
.ui.labels .red.label:before,
|
640
|
+
.ui.red.labels .label:before,
|
641
|
+
.ui.red.label:before {
|
642
|
+
background-color: #d95c5c !important;
|
673
643
|
}
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
a.ui.orange.labels .label:hover,
|
678
|
-
.ui.orange.labels a.label:hover,
|
679
|
-
a.ui.orange.label:hover {
|
680
|
-
background-color: #FF4121 !important;
|
681
|
-
border-color: #FF4121 !important;
|
682
|
-
color: #FFFFFF !important;
|
644
|
+
.ui.red.corner.label,
|
645
|
+
.ui.red.corner.label:hover {
|
646
|
+
background-color: transparent !important;
|
683
647
|
}
|
684
|
-
|
685
|
-
.ui.
|
686
|
-
|
687
|
-
|
688
|
-
|
648
|
+
a.ui.red.labels .label:hover,
|
649
|
+
a.ui.red.label:hover {
|
650
|
+
background-color: #dc6868 !important;
|
651
|
+
border-color: #dc6868 !important;
|
652
|
+
color: #ffffff !important;
|
689
653
|
}
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
.ui.orange.corner.label:hover {
|
695
|
-
background-color: transparent !important;
|
654
|
+
.ui.labels a.red.label:hover:before,
|
655
|
+
.ui.red.labels a.label:hover:before,
|
656
|
+
a.ui.red.label:hover:before {
|
657
|
+
background-color: #dc6868 !important;
|
696
658
|
}
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
.ui.orange.ribbon.label {
|
701
|
-
border-color: #FF4121 !important;
|
659
|
+
.ui.red.ribbon.label {
|
660
|
+
border-color: #cf3333 !important;
|
702
661
|
}
|
703
662
|
|
704
663
|
/*--- Teal ---*/
|
705
664
|
|
706
665
|
.ui.teal.labels .label,
|
707
666
|
.ui.teal.label {
|
708
|
-
background-color: #
|
709
|
-
border-color: #
|
710
|
-
color: #
|
667
|
+
background-color: #00b5ad !important;
|
668
|
+
border-color: #00b5ad !important;
|
669
|
+
color: #ffffff !important;
|
711
670
|
}
|
712
|
-
|
713
671
|
.ui.labels .teal.label:before,
|
714
672
|
.ui.teal.labels .label:before,
|
715
673
|
.ui.teal.label:before {
|
716
|
-
background-color: #
|
674
|
+
background-color: #00b5ad !important;
|
717
675
|
}
|
718
|
-
|
719
|
-
/* Hover */
|
720
|
-
|
721
676
|
a.ui.teal.labels .label:hover,
|
722
677
|
.ui.teal.labels a.label:hover,
|
723
678
|
a.ui.teal.label:hover {
|
724
|
-
background-color: #
|
725
|
-
border-color: #
|
726
|
-
color: #
|
679
|
+
background-color: #00c4bc !important;
|
680
|
+
border-color: #00c4bc !important;
|
681
|
+
color: #ffffff !important;
|
727
682
|
}
|
728
|
-
|
729
683
|
.ui.labels a.teal.label:hover:before,
|
730
684
|
.ui.teal.labels a.label:hover:before,
|
731
685
|
a.ui.teal.label:hover:before {
|
732
|
-
background-color: #
|
686
|
+
background-color: #00c4bc !important;
|
733
687
|
}
|
734
|
-
|
735
|
-
/* Corner */
|
736
|
-
|
737
688
|
.ui.teal.corner.label,
|
738
689
|
.ui.teal.corner.label:hover {
|
739
690
|
background-color: transparent !important;
|
740
691
|
}
|
692
|
+
.ui.teal.ribbon.label {
|
693
|
+
border-color: #00827c !important;
|
694
|
+
}
|
741
695
|
|
742
|
-
|
696
|
+
/*--- Yellow ---*/
|
743
697
|
|
744
|
-
.ui.
|
745
|
-
|
698
|
+
.ui.yellow.labels .label,
|
699
|
+
.ui.yellow.label {
|
700
|
+
background-color: #f2c61f !important;
|
701
|
+
border-color: #f2c61f !important;
|
702
|
+
color: #ffffff !important;
|
703
|
+
}
|
704
|
+
.ui.labels .yellow.label:before,
|
705
|
+
.ui.yellow.labels .label:before,
|
706
|
+
.ui.yellow.label:before {
|
707
|
+
background-color: #f2c61f !important;
|
708
|
+
}
|
709
|
+
a.ui.yellow.labels .label:hover,
|
710
|
+
.ui.yellow.labels a.label:hover,
|
711
|
+
a.ui.yellow.label:hover {
|
712
|
+
background-color: #f3ca2d !important;
|
713
|
+
border-color: #f3ca2d !important;
|
714
|
+
color: #ffffff !important;
|
715
|
+
}
|
716
|
+
.ui.labels a.yellow.label:hover:before,
|
717
|
+
.ui.yellow.labels a.label:hover:before,
|
718
|
+
a.ui.yellow.label:hover:before {
|
719
|
+
background-color: #f3ca2d !important;
|
720
|
+
}
|
721
|
+
.ui.yellow.corner.label,
|
722
|
+
.ui.yellow.corner.label:hover {
|
723
|
+
background-color: transparent !important;
|
724
|
+
}
|
725
|
+
.ui.yellow.ribbon.label {
|
726
|
+
border-color: #d2a90c !important;
|
727
|
+
}
|
728
|
+
|
729
|
+
/*-------------------
|
730
|
+
Fluid
|
731
|
+
--------------------*/
|
732
|
+
|
733
|
+
.ui.label.fluid,
|
734
|
+
.ui.fluid.labels > .label {
|
735
|
+
width: 100%;
|
736
|
+
box-sizing: border-box;
|
737
|
+
}
|
738
|
+
|
739
|
+
/*-------------------
|
740
|
+
Inverted
|
741
|
+
--------------------*/
|
742
|
+
|
743
|
+
.ui.inverted.labels .label,
|
744
|
+
.ui.inverted.label {
|
745
|
+
color: #ffffff !important;
|
746
746
|
}
|
747
747
|
|
748
748
|
/*-------------------
|
@@ -751,9 +751,9 @@ a.ui.teal.label:hover:before {
|
|
751
751
|
|
752
752
|
.ui.horizontal.labels .label,
|
753
753
|
.ui.horizontal.label {
|
754
|
-
margin:
|
755
|
-
padding: 0.
|
756
|
-
min-width:
|
754
|
+
margin: 0em 0.5em 0em 0em;
|
755
|
+
padding: 0.4em 0.8em;
|
756
|
+
min-width: 3em;
|
757
757
|
text-align: center;
|
758
758
|
}
|
759
759
|
|
@@ -763,13 +763,22 @@ a.ui.teal.label:hover:before {
|
|
763
763
|
|
764
764
|
.ui.circular.labels .label,
|
765
765
|
.ui.circular.label {
|
766
|
-
min-
|
767
|
-
|
766
|
+
min-width: 2em;
|
767
|
+
min-height: 2em;
|
768
768
|
padding: 0.5em !important;
|
769
769
|
line-height: 1em;
|
770
770
|
text-align: center;
|
771
771
|
border-radius: 500rem;
|
772
772
|
}
|
773
|
+
.ui.empty.circular.labels .label,
|
774
|
+
.ui.empty.circular.label {
|
775
|
+
min-width: 0em;
|
776
|
+
min-height: 0em;
|
777
|
+
overflow: hidden;
|
778
|
+
width: 0.5em;
|
779
|
+
height: 0.5em;
|
780
|
+
vertical-align: baseline;
|
781
|
+
}
|
773
782
|
|
774
783
|
/*-------------------
|
775
784
|
Pointing
|
@@ -778,36 +787,33 @@ a.ui.teal.label:hover:before {
|
|
778
787
|
.ui.pointing.label {
|
779
788
|
position: relative;
|
780
789
|
}
|
781
|
-
|
782
790
|
.ui.attached.pointing.label {
|
783
791
|
position: absolute;
|
784
792
|
}
|
785
|
-
|
786
793
|
.ui.pointing.label:before {
|
787
794
|
position: absolute;
|
788
|
-
content:
|
789
|
-
width: 0.6em;
|
790
|
-
height: 0.6em;
|
791
|
-
background-image: none;
|
795
|
+
content: '';
|
792
796
|
-webkit-transform: rotate(45deg);
|
793
|
-
|
794
|
-
|
797
|
+
-ms-transform: rotate(45deg);
|
798
|
+
transform: rotate(45deg);
|
799
|
+
background-image: none;
|
795
800
|
z-index: 2;
|
796
|
-
|
797
|
-
|
801
|
+
width: 0.6em;
|
802
|
+
height: 0.6em;
|
803
|
+
-webkit-transition: background 0.2s ease;
|
804
|
+
transition: background 0.2s ease;
|
798
805
|
}
|
799
806
|
|
800
807
|
/*--- Above ---*/
|
801
808
|
|
802
809
|
.ui.pointing.label:before {
|
803
|
-
background-color: #
|
810
|
+
background-color: #e8e8e8;
|
811
|
+
background-image: none;
|
804
812
|
}
|
805
|
-
|
806
813
|
.ui.pointing.label,
|
807
814
|
.ui.pointing.above.label {
|
808
815
|
margin-top: 1em;
|
809
816
|
}
|
810
|
-
|
811
817
|
.ui.pointing.label:before,
|
812
818
|
.ui.pointing.above.label:before {
|
813
819
|
margin-left: -0.3em;
|
@@ -817,11 +823,12 @@ a.ui.teal.label:hover:before {
|
|
817
823
|
|
818
824
|
/*--- Below ---*/
|
819
825
|
|
826
|
+
.ui.pointing.bottom.label,
|
820
827
|
.ui.pointing.below.label {
|
821
828
|
margin-top: 0em;
|
822
829
|
margin-bottom: 1em;
|
823
830
|
}
|
824
|
-
|
831
|
+
.ui.pointing.bottom.label:before,
|
825
832
|
.ui.pointing.below.label:before {
|
826
833
|
margin-left: -0.3em;
|
827
834
|
top: auto;
|
@@ -834,9 +841,8 @@ a.ui.teal.label:hover:before {
|
|
834
841
|
|
835
842
|
.ui.pointing.left.label {
|
836
843
|
margin-top: 0em;
|
837
|
-
margin-left:
|
844
|
+
margin-left: 0.6em;
|
838
845
|
}
|
839
|
-
|
840
846
|
.ui.pointing.left.label:before {
|
841
847
|
margin-top: -0.3em;
|
842
848
|
bottom: auto;
|
@@ -849,9 +855,8 @@ a.ui.teal.label:hover:before {
|
|
849
855
|
|
850
856
|
.ui.pointing.right.label {
|
851
857
|
margin-top: 0em;
|
852
|
-
margin-right:
|
858
|
+
margin-right: 0.6em;
|
853
859
|
}
|
854
|
-
|
855
860
|
.ui.pointing.right.label:before {
|
856
861
|
margin-top: -0.3em;
|
857
862
|
right: -0.3em;
|
@@ -876,21 +881,47 @@ a.ui.teal.label:hover:before {
|
|
876
881
|
Sizes
|
877
882
|
--------------------*/
|
878
883
|
|
884
|
+
.ui.mini.labels .label,
|
885
|
+
.ui.mini.label {
|
886
|
+
font-size: 0.6428rem;
|
887
|
+
}
|
888
|
+
.ui.tiny.labels .label,
|
889
|
+
.ui.tiny.label {
|
890
|
+
font-size: 0.7142rem;
|
891
|
+
}
|
879
892
|
.ui.small.labels .label,
|
880
893
|
.ui.small.label {
|
881
|
-
font-size: 0.
|
894
|
+
font-size: 0.7857rem;
|
882
895
|
}
|
883
|
-
|
896
|
+
.ui.labels .label,
|
884
897
|
.ui.label {
|
885
|
-
font-size: 0.
|
898
|
+
font-size: 0.8571rem;
|
886
899
|
}
|
887
|
-
|
888
900
|
.ui.large.labels .label,
|
889
901
|
.ui.large.label {
|
890
|
-
font-size:
|
902
|
+
font-size: 1rem;
|
903
|
+
}
|
904
|
+
.ui.big.labels .label,
|
905
|
+
.ui.big.label {
|
906
|
+
font-size: 1.1428rem;
|
891
907
|
}
|
892
|
-
|
893
908
|
.ui.huge.labels .label,
|
894
909
|
.ui.huge.label {
|
895
|
-
font-size:
|
896
|
-
}
|
910
|
+
font-size: 1.2857rem;
|
911
|
+
}
|
912
|
+
.ui.massive.labels .label,
|
913
|
+
.ui.massive.label {
|
914
|
+
font-size: 1.4285rem;
|
915
|
+
}
|
916
|
+
|
917
|
+
|
918
|
+
/*******************************
|
919
|
+
Theme Overrides
|
920
|
+
*******************************/
|
921
|
+
|
922
|
+
|
923
|
+
|
924
|
+
/*******************************
|
925
|
+
Site Overrides
|
926
|
+
*******************************/
|
927
|
+
|