fomantic-ui-sass 2.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.rspec +1 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +370 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +177 -0
- data/Rakefile +8 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- 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 +1518 -0
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +27 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
- data/app/assets/javascripts/semantic-ui/api.js +1167 -0
- data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
- data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
- data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
- data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
- data/app/assets/javascripts/semantic-ui/embed.js +706 -0
- data/app/assets/javascripts/semantic-ui/form.js +1707 -0
- data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
- data/app/assets/javascripts/semantic-ui/nag.js +507 -0
- data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
- data/app/assets/javascripts/semantic-ui/progress.js +923 -0
- data/app/assets/javascripts/semantic-ui/range.js +278 -0
- data/app/assets/javascripts/semantic-ui/rating.js +511 -0
- data/app/assets/javascripts/semantic-ui/search.js +1515 -0
- data/app/assets/javascripts/semantic-ui/shape.js +921 -0
- data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
- data/app/assets/javascripts/semantic-ui/site.js +490 -0
- data/app/assets/javascripts/semantic-ui/state.js +708 -0
- data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
- data/app/assets/javascripts/semantic-ui/tab.js +952 -0
- data/app/assets/javascripts/semantic-ui/toast.js +592 -0
- data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
- data/app/assets/javascripts/semantic-ui/video.js +532 -0
- data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
- data/app/assets/javascripts/semantic-ui/visit.js +525 -0
- data/app/assets/stylesheets/semantic-ui.scss +5 -0
- data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
- data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
- data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
- data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
- data/app/helpers/semantic_flash_helper.rb +22 -0
- data/app/helpers/semantic_icon_helper.rb +8 -0
- data/app/views/semantic/_breadcrumbs.html.erb +12 -0
- data/fomantic-ui-sass.gemspec +31 -0
- data/lib/fomantic-ui-sass.rb +62 -0
- data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
- data/lib/fomantic/ui/sass/engine.rb +23 -0
- data/lib/fomantic/ui/sass/version.rb +8 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
- data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
- data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
- data/spec/spec_helper.rb +17 -0
- data/tasks/converter.rb +216 -0
- data/templates/project/manifest.rb +29 -0
- data/templates/project/styles.scss +1 -0
- metadata +390 -0
@@ -0,0 +1,1395 @@
|
|
1
|
+
/*!
|
2
|
+
* # Semantic UI 2.6.4 - Label
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
4
|
+
*
|
5
|
+
*
|
6
|
+
* Released under the MIT license
|
7
|
+
* http://opensource.org/licenses/MIT
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
/*******************************
|
13
|
+
Label
|
14
|
+
*******************************/
|
15
|
+
|
16
|
+
.ui.label {
|
17
|
+
display: inline-block;
|
18
|
+
line-height: 1;
|
19
|
+
vertical-align: baseline;
|
20
|
+
margin: 0em 0.14285714em;
|
21
|
+
background-color: #E8E8E8;
|
22
|
+
background-image: none;
|
23
|
+
padding: 0.5833em 0.833em;
|
24
|
+
color: rgba(0, 0, 0, 0.6);
|
25
|
+
text-transform: none;
|
26
|
+
font-weight: bold;
|
27
|
+
border: 0px solid transparent;
|
28
|
+
border-radius: 0.28571429rem;
|
29
|
+
-webkit-transition: background 0.1s ease;
|
30
|
+
transition: background 0.1s ease;
|
31
|
+
}
|
32
|
+
.ui.label:first-child {
|
33
|
+
margin-left: 0em;
|
34
|
+
}
|
35
|
+
.ui.label:last-child {
|
36
|
+
margin-right: 0em;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Link */
|
40
|
+
a.ui.label {
|
41
|
+
cursor: pointer;
|
42
|
+
}
|
43
|
+
|
44
|
+
/* Inside Link */
|
45
|
+
.ui.label > a {
|
46
|
+
cursor: pointer;
|
47
|
+
color: inherit;
|
48
|
+
opacity: 0.5;
|
49
|
+
-webkit-transition: 0.1s opacity ease;
|
50
|
+
transition: 0.1s opacity ease;
|
51
|
+
}
|
52
|
+
.ui.label > a:hover {
|
53
|
+
opacity: 1;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Image */
|
57
|
+
.ui.label > img {
|
58
|
+
width: auto !important;
|
59
|
+
vertical-align: middle;
|
60
|
+
height: 2.1666em !important;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* Icon */
|
64
|
+
.ui.label > .icon {
|
65
|
+
width: auto;
|
66
|
+
margin: 0em 0.75em 0em 0em;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Detail */
|
70
|
+
.ui.label > .detail {
|
71
|
+
display: inline-block;
|
72
|
+
vertical-align: top;
|
73
|
+
font-weight: bold;
|
74
|
+
margin-left: 1em;
|
75
|
+
opacity: 0.8;
|
76
|
+
}
|
77
|
+
.ui.label > .detail .icon {
|
78
|
+
margin: 0em 0.25em 0em 0em;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Removable label */
|
82
|
+
.ui.label > .close.icon,
|
83
|
+
.ui.label > .delete.icon {
|
84
|
+
cursor: pointer;
|
85
|
+
margin-right: 0em;
|
86
|
+
margin-left: 0.5em;
|
87
|
+
font-size: 0.92857143em;
|
88
|
+
opacity: 0.5;
|
89
|
+
-webkit-transition: background 0.1s ease;
|
90
|
+
transition: background 0.1s ease;
|
91
|
+
}
|
92
|
+
.ui.label > .delete.icon:hover {
|
93
|
+
opacity: 1;
|
94
|
+
}
|
95
|
+
|
96
|
+
/*-------------------
|
97
|
+
Group
|
98
|
+
--------------------*/
|
99
|
+
|
100
|
+
.ui.labels > .label {
|
101
|
+
margin: 0em 0.5em 0.5em 0em;
|
102
|
+
}
|
103
|
+
|
104
|
+
/*-------------------
|
105
|
+
Coupling
|
106
|
+
--------------------*/
|
107
|
+
|
108
|
+
.ui.header > .ui.label {
|
109
|
+
margin-top: -0.29165em;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* Remove border radius on attached segment */
|
113
|
+
.ui.attached.segment > .ui.top.left.attached.label,
|
114
|
+
.ui.bottom.attached.segment > .ui.top.left.attached.label {
|
115
|
+
border-top-left-radius: 0;
|
116
|
+
}
|
117
|
+
.ui.attached.segment > .ui.top.right.attached.label,
|
118
|
+
.ui.bottom.attached.segment > .ui.top.right.attached.label {
|
119
|
+
border-top-right-radius: 0;
|
120
|
+
}
|
121
|
+
.ui.top.attached.segment > .ui.bottom.left.attached.label {
|
122
|
+
border-bottom-left-radius: 0;
|
123
|
+
}
|
124
|
+
.ui.top.attached.segment > .ui.bottom.right.attached.label {
|
125
|
+
border-bottom-right-radius: 0;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* Padding on next content after a label */
|
129
|
+
.ui.top.attached.label:first-child + :not(.attached),
|
130
|
+
.ui.top.attached.label + [class*="right floated"] + * {
|
131
|
+
margin-top: 2rem !important;
|
132
|
+
}
|
133
|
+
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
|
134
|
+
margin-top: 0em;
|
135
|
+
margin-bottom: 2rem !important;
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
/*******************************
|
140
|
+
Types
|
141
|
+
*******************************/
|
142
|
+
|
143
|
+
.ui.image.label {
|
144
|
+
width: auto !important;
|
145
|
+
margin-top: 0em;
|
146
|
+
margin-bottom: 0em;
|
147
|
+
max-width: 9999px;
|
148
|
+
vertical-align: baseline;
|
149
|
+
text-transform: none;
|
150
|
+
background: #E8E8E8;
|
151
|
+
padding: 0.5833em 0.833em 0.5833em 0.5em;
|
152
|
+
border-radius: 0.28571429rem;
|
153
|
+
-webkit-box-shadow: none;
|
154
|
+
box-shadow: none;
|
155
|
+
}
|
156
|
+
.ui.image.label img {
|
157
|
+
display: inline-block;
|
158
|
+
vertical-align: top;
|
159
|
+
height: 2.1666em;
|
160
|
+
margin: -0.5833em 0.5em -0.5833em -0.5em;
|
161
|
+
border-radius: 0.28571429rem 0em 0em 0.28571429rem;
|
162
|
+
}
|
163
|
+
.ui.image.label .detail {
|
164
|
+
background: rgba(0, 0, 0, 0.1);
|
165
|
+
margin: -0.5833em -0.833em -0.5833em 0.5em;
|
166
|
+
padding: 0.5833em 0.833em;
|
167
|
+
border-radius: 0em 0.28571429rem 0.28571429rem 0em;
|
168
|
+
}
|
169
|
+
|
170
|
+
/*-------------------
|
171
|
+
Tag
|
172
|
+
--------------------*/
|
173
|
+
|
174
|
+
.ui.tag.labels .label,
|
175
|
+
.ui.tag.label {
|
176
|
+
margin-left: 1em;
|
177
|
+
position: relative;
|
178
|
+
padding-left: 1.5em;
|
179
|
+
padding-right: 1.5em;
|
180
|
+
border-radius: 0em 0.28571429rem 0.28571429rem 0em;
|
181
|
+
-webkit-transition: none;
|
182
|
+
transition: none;
|
183
|
+
}
|
184
|
+
.ui.tag.labels .label:before,
|
185
|
+
.ui.tag.label:before {
|
186
|
+
position: absolute;
|
187
|
+
-webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
188
|
+
transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
189
|
+
top: 50%;
|
190
|
+
right: 100%;
|
191
|
+
content: '';
|
192
|
+
background-color: inherit;
|
193
|
+
background-image: none;
|
194
|
+
width: 1.56em;
|
195
|
+
height: 1.56em;
|
196
|
+
-webkit-transition: none;
|
197
|
+
transition: none;
|
198
|
+
}
|
199
|
+
.ui.tag.labels .label:after,
|
200
|
+
.ui.tag.label:after {
|
201
|
+
position: absolute;
|
202
|
+
content: '';
|
203
|
+
top: 50%;
|
204
|
+
left: -0.25em;
|
205
|
+
margin-top: -0.25em;
|
206
|
+
background-color: #FFFFFF !important;
|
207
|
+
width: 0.5em;
|
208
|
+
height: 0.5em;
|
209
|
+
-webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
210
|
+
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
|
211
|
+
border-radius: 500rem;
|
212
|
+
}
|
213
|
+
|
214
|
+
/*-------------------
|
215
|
+
Corner Label
|
216
|
+
--------------------*/
|
217
|
+
|
218
|
+
.ui.corner.label {
|
219
|
+
position: absolute;
|
220
|
+
top: 0em;
|
221
|
+
right: 0em;
|
222
|
+
margin: 0em;
|
223
|
+
padding: 0em;
|
224
|
+
text-align: center;
|
225
|
+
border-color: #E8E8E8;
|
226
|
+
width: 4em;
|
227
|
+
height: 4em;
|
228
|
+
z-index: 1;
|
229
|
+
-webkit-transition: border-color 0.1s ease;
|
230
|
+
transition: border-color 0.1s ease;
|
231
|
+
}
|
232
|
+
|
233
|
+
/* Icon Label */
|
234
|
+
.ui.corner.label {
|
235
|
+
background-color: transparent !important;
|
236
|
+
}
|
237
|
+
.ui.corner.label:after {
|
238
|
+
position: absolute;
|
239
|
+
content: "";
|
240
|
+
right: 0em;
|
241
|
+
top: 0em;
|
242
|
+
z-index: -1;
|
243
|
+
width: 0em;
|
244
|
+
height: 0em;
|
245
|
+
background-color: transparent !important;
|
246
|
+
border-top: 0em solid transparent;
|
247
|
+
border-right: 4em solid transparent;
|
248
|
+
border-bottom: 4em solid transparent;
|
249
|
+
border-left: 0em solid transparent;
|
250
|
+
border-right-color: inherit;
|
251
|
+
-webkit-transition: border-color 0.1s ease;
|
252
|
+
transition: border-color 0.1s ease;
|
253
|
+
}
|
254
|
+
.ui.corner.label .icon {
|
255
|
+
cursor: default;
|
256
|
+
position: relative;
|
257
|
+
top: 0.64285714em;
|
258
|
+
left: 0.78571429em;
|
259
|
+
font-size: 1.14285714em;
|
260
|
+
margin: 0em;
|
261
|
+
}
|
262
|
+
|
263
|
+
/* Left Corner */
|
264
|
+
.ui.left.corner.label,
|
265
|
+
.ui.left.corner.label:after {
|
266
|
+
right: auto;
|
267
|
+
left: 0em;
|
268
|
+
}
|
269
|
+
.ui.left.corner.label:after {
|
270
|
+
border-top: 4em solid transparent;
|
271
|
+
border-right: 4em solid transparent;
|
272
|
+
border-bottom: 0em solid transparent;
|
273
|
+
border-left: 0em solid transparent;
|
274
|
+
border-top-color: inherit;
|
275
|
+
}
|
276
|
+
.ui.left.corner.label .icon {
|
277
|
+
left: -0.78571429em;
|
278
|
+
}
|
279
|
+
|
280
|
+
/* Segment */
|
281
|
+
.ui.segment > .ui.corner.label {
|
282
|
+
top: -1px;
|
283
|
+
right: -1px;
|
284
|
+
}
|
285
|
+
.ui.segment > .ui.left.corner.label {
|
286
|
+
right: auto;
|
287
|
+
left: -1px;
|
288
|
+
}
|
289
|
+
|
290
|
+
/*-------------------
|
291
|
+
Ribbon
|
292
|
+
--------------------*/
|
293
|
+
|
294
|
+
.ui.ribbon.label {
|
295
|
+
position: relative;
|
296
|
+
margin: 0em;
|
297
|
+
min-width: -webkit-max-content;
|
298
|
+
min-width: -moz-max-content;
|
299
|
+
min-width: max-content;
|
300
|
+
border-radius: 0em 0.28571429rem 0.28571429rem 0em;
|
301
|
+
border-color: rgba(0, 0, 0, 0.15);
|
302
|
+
}
|
303
|
+
.ui.ribbon.label:after {
|
304
|
+
position: absolute;
|
305
|
+
content: '';
|
306
|
+
top: 100%;
|
307
|
+
left: 0%;
|
308
|
+
background-color: transparent !important;
|
309
|
+
border-style: solid;
|
310
|
+
border-width: 0em 1.2em 1.2em 0em;
|
311
|
+
border-color: transparent;
|
312
|
+
border-right-color: inherit;
|
313
|
+
width: 0em;
|
314
|
+
height: 0em;
|
315
|
+
}
|
316
|
+
|
317
|
+
/* Positioning */
|
318
|
+
.ui.ribbon.label {
|
319
|
+
left: calc(-1rem - 1.2em);
|
320
|
+
margin-right: -1.2em;
|
321
|
+
padding-left: calc(1rem + 1.2em);
|
322
|
+
padding-right: 1.2em;
|
323
|
+
}
|
324
|
+
.ui[class*="right ribbon"].label {
|
325
|
+
left: calc(100% + 1rem + 1.2em);
|
326
|
+
padding-left: 1.2em;
|
327
|
+
padding-right: calc(1rem + 1.2em);
|
328
|
+
}
|
329
|
+
|
330
|
+
/* Right Ribbon */
|
331
|
+
.ui[class*="right ribbon"].label {
|
332
|
+
text-align: left;
|
333
|
+
-webkit-transform: translateX(-100%);
|
334
|
+
transform: translateX(-100%);
|
335
|
+
border-radius: 0.28571429rem 0em 0em 0.28571429rem;
|
336
|
+
}
|
337
|
+
.ui[class*="right ribbon"].label:after {
|
338
|
+
left: auto;
|
339
|
+
right: 0%;
|
340
|
+
border-style: solid;
|
341
|
+
border-width: 1.2em 1.2em 0em 0em;
|
342
|
+
border-color: transparent;
|
343
|
+
border-top-color: inherit;
|
344
|
+
}
|
345
|
+
|
346
|
+
/* Inside Table */
|
347
|
+
.ui.image > .ribbon.label,
|
348
|
+
.ui.card .image > .ribbon.label {
|
349
|
+
position: absolute;
|
350
|
+
top: 1rem;
|
351
|
+
}
|
352
|
+
.ui.card .image > .ui.ribbon.label,
|
353
|
+
.ui.image > .ui.ribbon.label {
|
354
|
+
left: calc(0.05rem - 1.2em);
|
355
|
+
}
|
356
|
+
.ui.card .image > .ui[class*="right ribbon"].label,
|
357
|
+
.ui.image > .ui[class*="right ribbon"].label {
|
358
|
+
left: calc(100% + -0.05rem + 1.2em);
|
359
|
+
padding-left: 0.833em;
|
360
|
+
}
|
361
|
+
|
362
|
+
/* Inside Table */
|
363
|
+
.ui.table td > .ui.ribbon.label {
|
364
|
+
left: calc(-0.7857142857142857em - 1.2em);
|
365
|
+
}
|
366
|
+
.ui.table td > .ui[class*="right ribbon"].label {
|
367
|
+
left: calc(100% + 0.7857142857142857em + 1.2em);
|
368
|
+
padding-left: 0.833em;
|
369
|
+
}
|
370
|
+
|
371
|
+
/*-------------------
|
372
|
+
Attached
|
373
|
+
--------------------*/
|
374
|
+
|
375
|
+
.ui[class*="top attached"].label,
|
376
|
+
.ui.attached.label {
|
377
|
+
width: 100%;
|
378
|
+
position: absolute;
|
379
|
+
margin: 0em;
|
380
|
+
top: 0em;
|
381
|
+
left: 0em;
|
382
|
+
padding: 0.75em 1em;
|
383
|
+
border-radius: 0.21428571rem 0.21428571rem 0em 0em;
|
384
|
+
}
|
385
|
+
.ui[class*="bottom attached"].label {
|
386
|
+
top: auto;
|
387
|
+
bottom: 0em;
|
388
|
+
border-radius: 0em 0em 0.21428571rem 0.21428571rem;
|
389
|
+
}
|
390
|
+
.ui[class*="top left attached"].label {
|
391
|
+
width: auto;
|
392
|
+
margin-top: 0em !important;
|
393
|
+
border-radius: 0.21428571rem 0em 0.28571429rem 0em;
|
394
|
+
}
|
395
|
+
.ui[class*="top right attached"].label {
|
396
|
+
width: auto;
|
397
|
+
left: auto;
|
398
|
+
right: 0em;
|
399
|
+
border-radius: 0em 0.21428571rem 0em 0.28571429rem;
|
400
|
+
}
|
401
|
+
.ui[class*="bottom left attached"].label {
|
402
|
+
width: auto;
|
403
|
+
top: auto;
|
404
|
+
bottom: 0em;
|
405
|
+
border-radius: 0em 0.28571429rem 0em 0.21428571rem;
|
406
|
+
}
|
407
|
+
.ui[class*="bottom right attached"].label {
|
408
|
+
top: auto;
|
409
|
+
bottom: 0em;
|
410
|
+
left: auto;
|
411
|
+
right: 0em;
|
412
|
+
width: auto;
|
413
|
+
border-radius: 0.28571429rem 0em 0.21428571rem 0em;
|
414
|
+
}
|
415
|
+
|
416
|
+
|
417
|
+
/*******************************
|
418
|
+
States
|
419
|
+
*******************************/
|
420
|
+
|
421
|
+
|
422
|
+
/*-------------------
|
423
|
+
Disabled
|
424
|
+
--------------------*/
|
425
|
+
|
426
|
+
.ui.label.disabled {
|
427
|
+
opacity: 0.5;
|
428
|
+
}
|
429
|
+
|
430
|
+
/*-------------------
|
431
|
+
Hover
|
432
|
+
--------------------*/
|
433
|
+
|
434
|
+
a.ui.labels .label:hover,
|
435
|
+
a.ui.label:hover {
|
436
|
+
background-color: #E0E0E0;
|
437
|
+
border-color: #E0E0E0;
|
438
|
+
background-image: none;
|
439
|
+
color: rgba(0, 0, 0, 0.8);
|
440
|
+
}
|
441
|
+
.ui.labels a.label:hover:before,
|
442
|
+
a.ui.label:hover:before {
|
443
|
+
color: rgba(0, 0, 0, 0.8);
|
444
|
+
}
|
445
|
+
|
446
|
+
/*-------------------
|
447
|
+
Active
|
448
|
+
--------------------*/
|
449
|
+
|
450
|
+
.ui.active.label {
|
451
|
+
background-color: #D0D0D0;
|
452
|
+
border-color: #D0D0D0;
|
453
|
+
background-image: none;
|
454
|
+
color: rgba(0, 0, 0, 0.95);
|
455
|
+
}
|
456
|
+
.ui.active.label:before {
|
457
|
+
background-color: #D0D0D0;
|
458
|
+
background-image: none;
|
459
|
+
color: rgba(0, 0, 0, 0.95);
|
460
|
+
}
|
461
|
+
|
462
|
+
/*-------------------
|
463
|
+
Active Hover
|
464
|
+
--------------------*/
|
465
|
+
|
466
|
+
a.ui.labels .active.label:hover,
|
467
|
+
a.ui.active.label:hover {
|
468
|
+
background-color: #C8C8C8;
|
469
|
+
border-color: #C8C8C8;
|
470
|
+
background-image: none;
|
471
|
+
color: rgba(0, 0, 0, 0.95);
|
472
|
+
}
|
473
|
+
.ui.labels a.active.label:hover:before,
|
474
|
+
a.ui.active.label:hover:before {
|
475
|
+
background-color: #C8C8C8;
|
476
|
+
background-image: none;
|
477
|
+
color: rgba(0, 0, 0, 0.95);
|
478
|
+
}
|
479
|
+
|
480
|
+
/*-------------------
|
481
|
+
Visible
|
482
|
+
--------------------*/
|
483
|
+
|
484
|
+
.ui.labels.visible .label,
|
485
|
+
.ui.label.visible:not(.dropdown) {
|
486
|
+
display: inline-block !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
/*-------------------
|
490
|
+
Hidden
|
491
|
+
--------------------*/
|
492
|
+
|
493
|
+
.ui.labels.hidden .label,
|
494
|
+
.ui.label.hidden {
|
495
|
+
display: none !important;
|
496
|
+
}
|
497
|
+
|
498
|
+
|
499
|
+
/*******************************
|
500
|
+
Variations
|
501
|
+
*******************************/
|
502
|
+
|
503
|
+
|
504
|
+
/*-------------------
|
505
|
+
Colors
|
506
|
+
--------------------*/
|
507
|
+
|
508
|
+
|
509
|
+
/*--- Primary ---*/
|
510
|
+
|
511
|
+
.ui.primary.labels .label,
|
512
|
+
.ui.primary.label {
|
513
|
+
background-color: #2185D0 !important;
|
514
|
+
border-color: #2185D0 !important;
|
515
|
+
color: rgba(255, 255, 255, 0.9) !important;
|
516
|
+
}
|
517
|
+
|
518
|
+
/* Link */
|
519
|
+
.ui.primary.labels .label:hover,
|
520
|
+
a.ui.primary.label:hover {
|
521
|
+
background-color: #1678c2 !important;
|
522
|
+
border-color: #1678c2 !important;
|
523
|
+
color: rgba(255, 255, 255, 0.9) !important;
|
524
|
+
}
|
525
|
+
|
526
|
+
/* Corner */
|
527
|
+
.ui.primary.corner.label,
|
528
|
+
.ui.primary.corner.label:hover {
|
529
|
+
background-color: transparent !important;
|
530
|
+
}
|
531
|
+
|
532
|
+
/* Ribbon */
|
533
|
+
.ui.primary.ribbon.label {
|
534
|
+
border-color: #1a69a4 !important;
|
535
|
+
}
|
536
|
+
|
537
|
+
/* Basic */
|
538
|
+
.ui.basic.primary.label {
|
539
|
+
background: none #FFFFFF !important;
|
540
|
+
color: #2185D0 !important;
|
541
|
+
border-color: #2185D0 !important;
|
542
|
+
}
|
543
|
+
.ui.basic.primary.labels a.label:hover,
|
544
|
+
a.ui.basic.primary.label:hover {
|
545
|
+
background-color: #FFFFFF !important;
|
546
|
+
color: #1678c2 !important;
|
547
|
+
border-color: #1678c2 !important;
|
548
|
+
}
|
549
|
+
|
550
|
+
/*--- Secondary ---*/
|
551
|
+
|
552
|
+
.ui.secondary.labels .label,
|
553
|
+
.ui.secondary.label {
|
554
|
+
background-color: #1B1C1D !important;
|
555
|
+
border-color: #1B1C1D !important;
|
556
|
+
color: rgba(255, 255, 255, 0.9) !important;
|
557
|
+
}
|
558
|
+
|
559
|
+
/* Link */
|
560
|
+
.ui.secondary.labels .label:hover,
|
561
|
+
a.ui.secondary.label:hover {
|
562
|
+
background-color: #27292a !important;
|
563
|
+
border-color: #27292a !important;
|
564
|
+
color: rgba(255, 255, 255, 0.9) !important;
|
565
|
+
}
|
566
|
+
|
567
|
+
/* Corner */
|
568
|
+
.ui.secondary.corner.label,
|
569
|
+
.ui.secondary.corner.label:hover {
|
570
|
+
background-color: transparent !important;
|
571
|
+
}
|
572
|
+
|
573
|
+
/* Ribbon */
|
574
|
+
.ui.secondary.ribbon.label {
|
575
|
+
border-color: #020203 !important;
|
576
|
+
}
|
577
|
+
|
578
|
+
/* Basic */
|
579
|
+
.ui.basic.secondary.label {
|
580
|
+
background: none #FFFFFF !important;
|
581
|
+
color: #1B1C1D !important;
|
582
|
+
border-color: #1B1C1D !important;
|
583
|
+
}
|
584
|
+
.ui.basic.secondary.labels a.label:hover,
|
585
|
+
a.ui.basic.secondary.label:hover {
|
586
|
+
background-color: #FFFFFF !important;
|
587
|
+
color: #27292a !important;
|
588
|
+
border-color: #27292a !important;
|
589
|
+
}
|
590
|
+
|
591
|
+
/*--- Red ---*/
|
592
|
+
|
593
|
+
.ui.red.labels .label,
|
594
|
+
.ui.red.label {
|
595
|
+
background-color: #DB2828 !important;
|
596
|
+
border-color: #DB2828 !important;
|
597
|
+
color: #FFFFFF !important;
|
598
|
+
}
|
599
|
+
|
600
|
+
/* Link */
|
601
|
+
.ui.red.labels .label:hover,
|
602
|
+
a.ui.red.label:hover {
|
603
|
+
background-color: #d01919 !important;
|
604
|
+
border-color: #d01919 !important;
|
605
|
+
color: #FFFFFF !important;
|
606
|
+
}
|
607
|
+
|
608
|
+
/* Corner */
|
609
|
+
.ui.red.corner.label,
|
610
|
+
.ui.red.corner.label:hover {
|
611
|
+
background-color: transparent !important;
|
612
|
+
}
|
613
|
+
|
614
|
+
/* Ribbon */
|
615
|
+
.ui.red.ribbon.label {
|
616
|
+
border-color: #b21e1e !important;
|
617
|
+
}
|
618
|
+
|
619
|
+
/* Basic */
|
620
|
+
.ui.basic.red.label {
|
621
|
+
background: none #FFFFFF !important;
|
622
|
+
color: #DB2828 !important;
|
623
|
+
border-color: #DB2828 !important;
|
624
|
+
}
|
625
|
+
.ui.basic.red.labels a.label:hover,
|
626
|
+
a.ui.basic.red.label:hover {
|
627
|
+
background-color: #FFFFFF !important;
|
628
|
+
color: #d01919 !important;
|
629
|
+
border-color: #d01919 !important;
|
630
|
+
}
|
631
|
+
|
632
|
+
/*--- Orange ---*/
|
633
|
+
|
634
|
+
.ui.orange.labels .label,
|
635
|
+
.ui.orange.label {
|
636
|
+
background-color: #F2711C !important;
|
637
|
+
border-color: #F2711C !important;
|
638
|
+
color: #FFFFFF !important;
|
639
|
+
}
|
640
|
+
|
641
|
+
/* Link */
|
642
|
+
.ui.orange.labels .label:hover,
|
643
|
+
a.ui.orange.label:hover {
|
644
|
+
background-color: #f26202 !important;
|
645
|
+
border-color: #f26202 !important;
|
646
|
+
color: #FFFFFF !important;
|
647
|
+
}
|
648
|
+
|
649
|
+
/* Corner */
|
650
|
+
.ui.orange.corner.label,
|
651
|
+
.ui.orange.corner.label:hover {
|
652
|
+
background-color: transparent !important;
|
653
|
+
}
|
654
|
+
|
655
|
+
/* Ribbon */
|
656
|
+
.ui.orange.ribbon.label {
|
657
|
+
border-color: #cf590c !important;
|
658
|
+
}
|
659
|
+
|
660
|
+
/* Basic */
|
661
|
+
.ui.basic.orange.label {
|
662
|
+
background: none #FFFFFF !important;
|
663
|
+
color: #F2711C !important;
|
664
|
+
border-color: #F2711C !important;
|
665
|
+
}
|
666
|
+
.ui.basic.orange.labels a.label:hover,
|
667
|
+
a.ui.basic.orange.label:hover {
|
668
|
+
background-color: #FFFFFF !important;
|
669
|
+
color: #f26202 !important;
|
670
|
+
border-color: #f26202 !important;
|
671
|
+
}
|
672
|
+
|
673
|
+
/*--- Yellow ---*/
|
674
|
+
|
675
|
+
.ui.yellow.labels .label,
|
676
|
+
.ui.yellow.label {
|
677
|
+
background-color: #FBBD08 !important;
|
678
|
+
border-color: #FBBD08 !important;
|
679
|
+
color: #FFFFFF !important;
|
680
|
+
}
|
681
|
+
|
682
|
+
/* Link */
|
683
|
+
.ui.yellow.labels .label:hover,
|
684
|
+
a.ui.yellow.label:hover {
|
685
|
+
background-color: #eaae00 !important;
|
686
|
+
border-color: #eaae00 !important;
|
687
|
+
color: #FFFFFF !important;
|
688
|
+
}
|
689
|
+
|
690
|
+
/* Corner */
|
691
|
+
.ui.yellow.corner.label,
|
692
|
+
.ui.yellow.corner.label:hover {
|
693
|
+
background-color: transparent !important;
|
694
|
+
}
|
695
|
+
|
696
|
+
/* Ribbon */
|
697
|
+
.ui.yellow.ribbon.label {
|
698
|
+
border-color: #cd9903 !important;
|
699
|
+
}
|
700
|
+
|
701
|
+
/* Basic */
|
702
|
+
.ui.basic.yellow.label {
|
703
|
+
background: none #FFFFFF !important;
|
704
|
+
color: #FBBD08 !important;
|
705
|
+
border-color: #FBBD08 !important;
|
706
|
+
}
|
707
|
+
.ui.basic.yellow.labels a.label:hover,
|
708
|
+
a.ui.basic.yellow.label:hover {
|
709
|
+
background-color: #FFFFFF !important;
|
710
|
+
color: #eaae00 !important;
|
711
|
+
border-color: #eaae00 !important;
|
712
|
+
}
|
713
|
+
|
714
|
+
/*--- Olive ---*/
|
715
|
+
|
716
|
+
.ui.olive.labels .label,
|
717
|
+
.ui.olive.label {
|
718
|
+
background-color: #B5CC18 !important;
|
719
|
+
border-color: #B5CC18 !important;
|
720
|
+
color: #FFFFFF !important;
|
721
|
+
}
|
722
|
+
|
723
|
+
/* Link */
|
724
|
+
.ui.olive.labels .label:hover,
|
725
|
+
a.ui.olive.label:hover {
|
726
|
+
background-color: #a7bd0d !important;
|
727
|
+
border-color: #a7bd0d !important;
|
728
|
+
color: #FFFFFF !important;
|
729
|
+
}
|
730
|
+
|
731
|
+
/* Corner */
|
732
|
+
.ui.olive.corner.label,
|
733
|
+
.ui.olive.corner.label:hover {
|
734
|
+
background-color: transparent !important;
|
735
|
+
}
|
736
|
+
|
737
|
+
/* Ribbon */
|
738
|
+
.ui.olive.ribbon.label {
|
739
|
+
border-color: #8d9e13 !important;
|
740
|
+
}
|
741
|
+
|
742
|
+
/* Basic */
|
743
|
+
.ui.basic.olive.label {
|
744
|
+
background: none #FFFFFF !important;
|
745
|
+
color: #B5CC18 !important;
|
746
|
+
border-color: #B5CC18 !important;
|
747
|
+
}
|
748
|
+
.ui.basic.olive.labels a.label:hover,
|
749
|
+
a.ui.basic.olive.label:hover {
|
750
|
+
background-color: #FFFFFF !important;
|
751
|
+
color: #a7bd0d !important;
|
752
|
+
border-color: #a7bd0d !important;
|
753
|
+
}
|
754
|
+
|
755
|
+
/*--- Green ---*/
|
756
|
+
|
757
|
+
.ui.green.labels .label,
|
758
|
+
.ui.green.label {
|
759
|
+
background-color: #21BA45 !important;
|
760
|
+
border-color: #21BA45 !important;
|
761
|
+
color: #FFFFFF !important;
|
762
|
+
}
|
763
|
+
|
764
|
+
/* Link */
|
765
|
+
.ui.green.labels .label:hover,
|
766
|
+
a.ui.green.label:hover {
|
767
|
+
background-color: #16ab39 !important;
|
768
|
+
border-color: #16ab39 !important;
|
769
|
+
color: #FFFFFF !important;
|
770
|
+
}
|
771
|
+
|
772
|
+
/* Corner */
|
773
|
+
.ui.green.corner.label,
|
774
|
+
.ui.green.corner.label:hover {
|
775
|
+
background-color: transparent !important;
|
776
|
+
}
|
777
|
+
|
778
|
+
/* Ribbon */
|
779
|
+
.ui.green.ribbon.label {
|
780
|
+
border-color: #198f35 !important;
|
781
|
+
}
|
782
|
+
|
783
|
+
/* Basic */
|
784
|
+
.ui.basic.green.label {
|
785
|
+
background: none #FFFFFF !important;
|
786
|
+
color: #21BA45 !important;
|
787
|
+
border-color: #21BA45 !important;
|
788
|
+
}
|
789
|
+
.ui.basic.green.labels a.label:hover,
|
790
|
+
a.ui.basic.green.label:hover {
|
791
|
+
background-color: #FFFFFF !important;
|
792
|
+
color: #16ab39 !important;
|
793
|
+
border-color: #16ab39 !important;
|
794
|
+
}
|
795
|
+
|
796
|
+
/*--- Teal ---*/
|
797
|
+
|
798
|
+
.ui.teal.labels .label,
|
799
|
+
.ui.teal.label {
|
800
|
+
background-color: #00B5AD !important;
|
801
|
+
border-color: #00B5AD !important;
|
802
|
+
color: #FFFFFF !important;
|
803
|
+
}
|
804
|
+
|
805
|
+
/* Link */
|
806
|
+
.ui.teal.labels .label:hover,
|
807
|
+
a.ui.teal.label:hover {
|
808
|
+
background-color: #009c95 !important;
|
809
|
+
border-color: #009c95 !important;
|
810
|
+
color: #FFFFFF !important;
|
811
|
+
}
|
812
|
+
|
813
|
+
/* Corner */
|
814
|
+
.ui.teal.corner.label,
|
815
|
+
.ui.teal.corner.label:hover {
|
816
|
+
background-color: transparent !important;
|
817
|
+
}
|
818
|
+
|
819
|
+
/* Ribbon */
|
820
|
+
.ui.teal.ribbon.label {
|
821
|
+
border-color: #00827c !important;
|
822
|
+
}
|
823
|
+
|
824
|
+
/* Basic */
|
825
|
+
.ui.basic.teal.label {
|
826
|
+
background: none #FFFFFF !important;
|
827
|
+
color: #00B5AD !important;
|
828
|
+
border-color: #00B5AD !important;
|
829
|
+
}
|
830
|
+
.ui.basic.teal.labels a.label:hover,
|
831
|
+
a.ui.basic.teal.label:hover {
|
832
|
+
background-color: #FFFFFF !important;
|
833
|
+
color: #009c95 !important;
|
834
|
+
border-color: #009c95 !important;
|
835
|
+
}
|
836
|
+
|
837
|
+
/*--- Blue ---*/
|
838
|
+
|
839
|
+
.ui.blue.labels .label,
|
840
|
+
.ui.blue.label {
|
841
|
+
background-color: #2185D0 !important;
|
842
|
+
border-color: #2185D0 !important;
|
843
|
+
color: #FFFFFF !important;
|
844
|
+
}
|
845
|
+
|
846
|
+
/* Link */
|
847
|
+
.ui.blue.labels .label:hover,
|
848
|
+
a.ui.blue.label:hover {
|
849
|
+
background-color: #1678c2 !important;
|
850
|
+
border-color: #1678c2 !important;
|
851
|
+
color: #FFFFFF !important;
|
852
|
+
}
|
853
|
+
|
854
|
+
/* Corner */
|
855
|
+
.ui.blue.corner.label,
|
856
|
+
.ui.blue.corner.label:hover {
|
857
|
+
background-color: transparent !important;
|
858
|
+
}
|
859
|
+
|
860
|
+
/* Ribbon */
|
861
|
+
.ui.blue.ribbon.label {
|
862
|
+
border-color: #1a69a4 !important;
|
863
|
+
}
|
864
|
+
|
865
|
+
/* Basic */
|
866
|
+
.ui.basic.blue.label {
|
867
|
+
background: none #FFFFFF !important;
|
868
|
+
color: #2185D0 !important;
|
869
|
+
border-color: #2185D0 !important;
|
870
|
+
}
|
871
|
+
.ui.basic.blue.labels a.label:hover,
|
872
|
+
a.ui.basic.blue.label:hover {
|
873
|
+
background-color: #FFFFFF !important;
|
874
|
+
color: #1678c2 !important;
|
875
|
+
border-color: #1678c2 !important;
|
876
|
+
}
|
877
|
+
|
878
|
+
/*--- Violet ---*/
|
879
|
+
|
880
|
+
.ui.violet.labels .label,
|
881
|
+
.ui.violet.label {
|
882
|
+
background-color: #6435C9 !important;
|
883
|
+
border-color: #6435C9 !important;
|
884
|
+
color: #FFFFFF !important;
|
885
|
+
}
|
886
|
+
|
887
|
+
/* Link */
|
888
|
+
.ui.violet.labels .label:hover,
|
889
|
+
a.ui.violet.label:hover {
|
890
|
+
background-color: #5829bb !important;
|
891
|
+
border-color: #5829bb !important;
|
892
|
+
color: #FFFFFF !important;
|
893
|
+
}
|
894
|
+
|
895
|
+
/* Corner */
|
896
|
+
.ui.violet.corner.label,
|
897
|
+
.ui.violet.corner.label:hover {
|
898
|
+
background-color: transparent !important;
|
899
|
+
}
|
900
|
+
|
901
|
+
/* Ribbon */
|
902
|
+
.ui.violet.ribbon.label {
|
903
|
+
border-color: #502aa1 !important;
|
904
|
+
}
|
905
|
+
|
906
|
+
/* Basic */
|
907
|
+
.ui.basic.violet.label {
|
908
|
+
background: none #FFFFFF !important;
|
909
|
+
color: #6435C9 !important;
|
910
|
+
border-color: #6435C9 !important;
|
911
|
+
}
|
912
|
+
.ui.basic.violet.labels a.label:hover,
|
913
|
+
a.ui.basic.violet.label:hover {
|
914
|
+
background-color: #FFFFFF !important;
|
915
|
+
color: #5829bb !important;
|
916
|
+
border-color: #5829bb !important;
|
917
|
+
}
|
918
|
+
|
919
|
+
/*--- Purple ---*/
|
920
|
+
|
921
|
+
.ui.purple.labels .label,
|
922
|
+
.ui.purple.label {
|
923
|
+
background-color: #A333C8 !important;
|
924
|
+
border-color: #A333C8 !important;
|
925
|
+
color: #FFFFFF !important;
|
926
|
+
}
|
927
|
+
|
928
|
+
/* Link */
|
929
|
+
.ui.purple.labels .label:hover,
|
930
|
+
a.ui.purple.label:hover {
|
931
|
+
background-color: #9627ba !important;
|
932
|
+
border-color: #9627ba !important;
|
933
|
+
color: #FFFFFF !important;
|
934
|
+
}
|
935
|
+
|
936
|
+
/* Corner */
|
937
|
+
.ui.purple.corner.label,
|
938
|
+
.ui.purple.corner.label:hover {
|
939
|
+
background-color: transparent !important;
|
940
|
+
}
|
941
|
+
|
942
|
+
/* Ribbon */
|
943
|
+
.ui.purple.ribbon.label {
|
944
|
+
border-color: #82299f !important;
|
945
|
+
}
|
946
|
+
|
947
|
+
/* Basic */
|
948
|
+
.ui.basic.purple.label {
|
949
|
+
background: none #FFFFFF !important;
|
950
|
+
color: #A333C8 !important;
|
951
|
+
border-color: #A333C8 !important;
|
952
|
+
}
|
953
|
+
.ui.basic.purple.labels a.label:hover,
|
954
|
+
a.ui.basic.purple.label:hover {
|
955
|
+
background-color: #FFFFFF !important;
|
956
|
+
color: #9627ba !important;
|
957
|
+
border-color: #9627ba !important;
|
958
|
+
}
|
959
|
+
|
960
|
+
/*--- Pink ---*/
|
961
|
+
|
962
|
+
.ui.pink.labels .label,
|
963
|
+
.ui.pink.label {
|
964
|
+
background-color: #E03997 !important;
|
965
|
+
border-color: #E03997 !important;
|
966
|
+
color: #FFFFFF !important;
|
967
|
+
}
|
968
|
+
|
969
|
+
/* Link */
|
970
|
+
.ui.pink.labels .label:hover,
|
971
|
+
a.ui.pink.label:hover {
|
972
|
+
background-color: #e61a8d !important;
|
973
|
+
border-color: #e61a8d !important;
|
974
|
+
color: #FFFFFF !important;
|
975
|
+
}
|
976
|
+
|
977
|
+
/* Corner */
|
978
|
+
.ui.pink.corner.label,
|
979
|
+
.ui.pink.corner.label:hover {
|
980
|
+
background-color: transparent !important;
|
981
|
+
}
|
982
|
+
|
983
|
+
/* Ribbon */
|
984
|
+
.ui.pink.ribbon.label {
|
985
|
+
border-color: #c71f7e !important;
|
986
|
+
}
|
987
|
+
|
988
|
+
/* Basic */
|
989
|
+
.ui.basic.pink.label {
|
990
|
+
background: none #FFFFFF !important;
|
991
|
+
color: #E03997 !important;
|
992
|
+
border-color: #E03997 !important;
|
993
|
+
}
|
994
|
+
.ui.basic.pink.labels a.label:hover,
|
995
|
+
a.ui.basic.pink.label:hover {
|
996
|
+
background-color: #FFFFFF !important;
|
997
|
+
color: #e61a8d !important;
|
998
|
+
border-color: #e61a8d !important;
|
999
|
+
}
|
1000
|
+
|
1001
|
+
/*--- Brown ---*/
|
1002
|
+
|
1003
|
+
.ui.brown.labels .label,
|
1004
|
+
.ui.brown.label {
|
1005
|
+
background-color: #A5673F !important;
|
1006
|
+
border-color: #A5673F !important;
|
1007
|
+
color: #FFFFFF !important;
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
/* Link */
|
1011
|
+
.ui.brown.labels .label:hover,
|
1012
|
+
a.ui.brown.label:hover {
|
1013
|
+
background-color: #975b33 !important;
|
1014
|
+
border-color: #975b33 !important;
|
1015
|
+
color: #FFFFFF !important;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
/* Corner */
|
1019
|
+
.ui.brown.corner.label,
|
1020
|
+
.ui.brown.corner.label:hover {
|
1021
|
+
background-color: transparent !important;
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
/* Ribbon */
|
1025
|
+
.ui.brown.ribbon.label {
|
1026
|
+
border-color: #805031 !important;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
/* Basic */
|
1030
|
+
.ui.basic.brown.label {
|
1031
|
+
background: none #FFFFFF !important;
|
1032
|
+
color: #A5673F !important;
|
1033
|
+
border-color: #A5673F !important;
|
1034
|
+
}
|
1035
|
+
.ui.basic.brown.labels a.label:hover,
|
1036
|
+
a.ui.basic.brown.label:hover {
|
1037
|
+
background-color: #FFFFFF !important;
|
1038
|
+
color: #975b33 !important;
|
1039
|
+
border-color: #975b33 !important;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
/*--- Grey ---*/
|
1043
|
+
|
1044
|
+
.ui.grey.labels .label,
|
1045
|
+
.ui.grey.label {
|
1046
|
+
background-color: #767676 !important;
|
1047
|
+
border-color: #767676 !important;
|
1048
|
+
color: #FFFFFF !important;
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
/* Link */
|
1052
|
+
.ui.grey.labels .label:hover,
|
1053
|
+
a.ui.grey.label:hover {
|
1054
|
+
background-color: #838383 !important;
|
1055
|
+
border-color: #838383 !important;
|
1056
|
+
color: #FFFFFF !important;
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
/* Corner */
|
1060
|
+
.ui.grey.corner.label,
|
1061
|
+
.ui.grey.corner.label:hover {
|
1062
|
+
background-color: transparent !important;
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
/* Ribbon */
|
1066
|
+
.ui.grey.ribbon.label {
|
1067
|
+
border-color: #5d5d5d !important;
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
/* Basic */
|
1071
|
+
.ui.basic.grey.label {
|
1072
|
+
background: none #FFFFFF !important;
|
1073
|
+
color: #767676 !important;
|
1074
|
+
border-color: #767676 !important;
|
1075
|
+
}
|
1076
|
+
.ui.basic.grey.labels a.label:hover,
|
1077
|
+
a.ui.basic.grey.label:hover {
|
1078
|
+
background-color: #FFFFFF !important;
|
1079
|
+
color: #838383 !important;
|
1080
|
+
border-color: #838383 !important;
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
/*--- Black ---*/
|
1084
|
+
|
1085
|
+
.ui.black.labels .label,
|
1086
|
+
.ui.black.label {
|
1087
|
+
background-color: #1B1C1D !important;
|
1088
|
+
border-color: #1B1C1D !important;
|
1089
|
+
color: #FFFFFF !important;
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
/* Link */
|
1093
|
+
.ui.black.labels .label:hover,
|
1094
|
+
a.ui.black.label:hover {
|
1095
|
+
background-color: #27292a !important;
|
1096
|
+
border-color: #27292a !important;
|
1097
|
+
color: #FFFFFF !important;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
/* Corner */
|
1101
|
+
.ui.black.corner.label,
|
1102
|
+
.ui.black.corner.label:hover {
|
1103
|
+
background-color: transparent !important;
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
/* Ribbon */
|
1107
|
+
.ui.black.ribbon.label {
|
1108
|
+
border-color: #020203 !important;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
/* Basic */
|
1112
|
+
.ui.basic.black.label {
|
1113
|
+
background: none #FFFFFF !important;
|
1114
|
+
color: #1B1C1D !important;
|
1115
|
+
border-color: #1B1C1D !important;
|
1116
|
+
}
|
1117
|
+
.ui.basic.black.labels a.label:hover,
|
1118
|
+
a.ui.basic.black.label:hover {
|
1119
|
+
background-color: #FFFFFF !important;
|
1120
|
+
color: #27292a !important;
|
1121
|
+
border-color: #27292a !important;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
/*-------------------
|
1125
|
+
Basic
|
1126
|
+
--------------------*/
|
1127
|
+
|
1128
|
+
.ui.basic.label {
|
1129
|
+
background: none #FFFFFF;
|
1130
|
+
border: 1px solid rgba(34, 36, 38, 0.15);
|
1131
|
+
color: rgba(0, 0, 0, 0.87);
|
1132
|
+
-webkit-box-shadow: none;
|
1133
|
+
box-shadow: none;
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
/* Link */
|
1137
|
+
a.ui.basic.label:hover {
|
1138
|
+
text-decoration: none;
|
1139
|
+
background: none #FFFFFF;
|
1140
|
+
color: #1e70bf;
|
1141
|
+
-webkit-box-shadow: 1px solid rgba(34, 36, 38, 0.15);
|
1142
|
+
box-shadow: 1px solid rgba(34, 36, 38, 0.15);
|
1143
|
+
-webkit-box-shadow: none;
|
1144
|
+
box-shadow: none;
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
/* Pointing */
|
1148
|
+
.ui.basic.pointing.label:before {
|
1149
|
+
border-color: inherit;
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
/*-------------------
|
1153
|
+
Fluid
|
1154
|
+
--------------------*/
|
1155
|
+
|
1156
|
+
.ui.label.fluid,
|
1157
|
+
.ui.fluid.labels > .label {
|
1158
|
+
width: 100%;
|
1159
|
+
-webkit-box-sizing: border-box;
|
1160
|
+
box-sizing: border-box;
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
/*-------------------
|
1164
|
+
Inverted
|
1165
|
+
--------------------*/
|
1166
|
+
|
1167
|
+
.ui.inverted.labels .label,
|
1168
|
+
.ui.inverted.label {
|
1169
|
+
color: rgba(255, 255, 255, 0.9) !important;
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
/*-------------------
|
1173
|
+
Horizontal
|
1174
|
+
--------------------*/
|
1175
|
+
|
1176
|
+
.ui.horizontal.labels .label,
|
1177
|
+
.ui.horizontal.label {
|
1178
|
+
margin: 0em 0.5em 0em 0em;
|
1179
|
+
padding: 0.4em 0.833em;
|
1180
|
+
min-width: 3em;
|
1181
|
+
text-align: center;
|
1182
|
+
}
|
1183
|
+
|
1184
|
+
/*-------------------
|
1185
|
+
Circular
|
1186
|
+
--------------------*/
|
1187
|
+
|
1188
|
+
.ui.circular.labels .label,
|
1189
|
+
.ui.circular.label {
|
1190
|
+
min-width: 2em;
|
1191
|
+
min-height: 2em;
|
1192
|
+
padding: 0.5em !important;
|
1193
|
+
line-height: 1em;
|
1194
|
+
text-align: center;
|
1195
|
+
border-radius: 500rem;
|
1196
|
+
}
|
1197
|
+
.ui.empty.circular.labels .label,
|
1198
|
+
.ui.empty.circular.label {
|
1199
|
+
min-width: 0em;
|
1200
|
+
min-height: 0em;
|
1201
|
+
overflow: hidden;
|
1202
|
+
width: 0.5em;
|
1203
|
+
height: 0.5em;
|
1204
|
+
vertical-align: baseline;
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
/*-------------------
|
1208
|
+
Pointing
|
1209
|
+
--------------------*/
|
1210
|
+
|
1211
|
+
.ui.pointing.label {
|
1212
|
+
position: relative;
|
1213
|
+
}
|
1214
|
+
.ui.attached.pointing.label {
|
1215
|
+
position: absolute;
|
1216
|
+
}
|
1217
|
+
.ui.pointing.label:before {
|
1218
|
+
background-color: inherit;
|
1219
|
+
background-image: inherit;
|
1220
|
+
border-width: none;
|
1221
|
+
border-style: solid;
|
1222
|
+
border-color: inherit;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
/* Arrow */
|
1226
|
+
.ui.pointing.label:before {
|
1227
|
+
position: absolute;
|
1228
|
+
content: '';
|
1229
|
+
-webkit-transform: rotate(45deg);
|
1230
|
+
transform: rotate(45deg);
|
1231
|
+
background-image: none;
|
1232
|
+
z-index: 2;
|
1233
|
+
width: 0.6666em;
|
1234
|
+
height: 0.6666em;
|
1235
|
+
-webkit-transition: background 0.1s ease;
|
1236
|
+
transition: background 0.1s ease;
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
/*--- Above ---*/
|
1240
|
+
|
1241
|
+
.ui.pointing.label,
|
1242
|
+
.ui[class*="pointing above"].label {
|
1243
|
+
margin-top: 1em;
|
1244
|
+
}
|
1245
|
+
.ui.pointing.label:before,
|
1246
|
+
.ui[class*="pointing above"].label:before {
|
1247
|
+
border-width: 1px 0px 0px 1px;
|
1248
|
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1249
|
+
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1250
|
+
top: 0%;
|
1251
|
+
left: 50%;
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
/*--- Below ---*/
|
1255
|
+
|
1256
|
+
.ui[class*="bottom pointing"].label,
|
1257
|
+
.ui[class*="pointing below"].label {
|
1258
|
+
margin-top: 0em;
|
1259
|
+
margin-bottom: 1em;
|
1260
|
+
}
|
1261
|
+
.ui[class*="bottom pointing"].label:before,
|
1262
|
+
.ui[class*="pointing below"].label:before {
|
1263
|
+
border-width: 0px 1px 1px 0px;
|
1264
|
+
top: auto;
|
1265
|
+
right: auto;
|
1266
|
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1267
|
+
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1268
|
+
top: 100%;
|
1269
|
+
left: 50%;
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
/*--- Left ---*/
|
1273
|
+
|
1274
|
+
.ui[class*="left pointing"].label {
|
1275
|
+
margin-top: 0em;
|
1276
|
+
margin-left: 0.6666em;
|
1277
|
+
}
|
1278
|
+
.ui[class*="left pointing"].label:before {
|
1279
|
+
border-width: 0px 0px 1px 1px;
|
1280
|
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1281
|
+
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
1282
|
+
bottom: auto;
|
1283
|
+
right: auto;
|
1284
|
+
top: 50%;
|
1285
|
+
left: 0em;
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
/*--- Right ---*/
|
1289
|
+
|
1290
|
+
.ui[class*="right pointing"].label {
|
1291
|
+
margin-top: 0em;
|
1292
|
+
margin-right: 0.6666em;
|
1293
|
+
}
|
1294
|
+
.ui[class*="right pointing"].label:before {
|
1295
|
+
border-width: 1px 1px 0px 0px;
|
1296
|
+
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
1297
|
+
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
1298
|
+
top: 50%;
|
1299
|
+
right: 0%;
|
1300
|
+
bottom: auto;
|
1301
|
+
left: auto;
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
/* Basic Pointing */
|
1305
|
+
|
1306
|
+
/*--- Above ---*/
|
1307
|
+
|
1308
|
+
.ui.basic.pointing.label:before,
|
1309
|
+
.ui.basic[class*="pointing above"].label:before {
|
1310
|
+
margin-top: -1px;
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
/*--- Below ---*/
|
1314
|
+
|
1315
|
+
.ui.basic[class*="bottom pointing"].label:before,
|
1316
|
+
.ui.basic[class*="pointing below"].label:before {
|
1317
|
+
bottom: auto;
|
1318
|
+
top: 100%;
|
1319
|
+
margin-top: 1px;
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
/*--- Left ---*/
|
1323
|
+
|
1324
|
+
.ui.basic[class*="left pointing"].label:before {
|
1325
|
+
top: 50%;
|
1326
|
+
left: -1px;
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
/*--- Right ---*/
|
1330
|
+
|
1331
|
+
.ui.basic[class*="right pointing"].label:before {
|
1332
|
+
top: 50%;
|
1333
|
+
right: -1px;
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
/*------------------
|
1337
|
+
Floating Label
|
1338
|
+
-------------------*/
|
1339
|
+
|
1340
|
+
.ui.floating.label {
|
1341
|
+
position: absolute;
|
1342
|
+
z-index: 100;
|
1343
|
+
top: -1em;
|
1344
|
+
left: 100%;
|
1345
|
+
margin: 0em 0em 0em -1.5em !important;
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
/*-------------------
|
1349
|
+
Sizes
|
1350
|
+
--------------------*/
|
1351
|
+
|
1352
|
+
.ui.mini.labels .label,
|
1353
|
+
.ui.mini.label {
|
1354
|
+
font-size: 0.64285714rem;
|
1355
|
+
}
|
1356
|
+
.ui.tiny.labels .label,
|
1357
|
+
.ui.tiny.label {
|
1358
|
+
font-size: 0.71428571rem;
|
1359
|
+
}
|
1360
|
+
.ui.small.labels .label,
|
1361
|
+
.ui.small.label {
|
1362
|
+
font-size: 0.78571429rem;
|
1363
|
+
}
|
1364
|
+
.ui.labels .label,
|
1365
|
+
.ui.label {
|
1366
|
+
font-size: 0.85714286rem;
|
1367
|
+
}
|
1368
|
+
.ui.large.labels .label,
|
1369
|
+
.ui.large.label {
|
1370
|
+
font-size: 1rem;
|
1371
|
+
}
|
1372
|
+
.ui.big.labels .label,
|
1373
|
+
.ui.big.label {
|
1374
|
+
font-size: 1.28571429rem;
|
1375
|
+
}
|
1376
|
+
.ui.huge.labels .label,
|
1377
|
+
.ui.huge.label {
|
1378
|
+
font-size: 1.42857143rem;
|
1379
|
+
}
|
1380
|
+
.ui.massive.labels .label,
|
1381
|
+
.ui.massive.label {
|
1382
|
+
font-size: 1.71428571rem;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
|
1386
|
+
/*******************************
|
1387
|
+
Theme Overrides
|
1388
|
+
*******************************/
|
1389
|
+
|
1390
|
+
|
1391
|
+
|
1392
|
+
/*******************************
|
1393
|
+
Site Overrides
|
1394
|
+
*******************************/
|
1395
|
+
|