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,458 @@
|
|
1
|
+
/*!
|
2
|
+
* # Semantic UI 2.6.4 - Loader
|
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
|
+
Loader
|
14
|
+
*******************************/
|
15
|
+
|
16
|
+
|
17
|
+
/* Standard Size */
|
18
|
+
.ui.loader {
|
19
|
+
display: none;
|
20
|
+
position: absolute;
|
21
|
+
top: 50%;
|
22
|
+
left: 50%;
|
23
|
+
margin: 0px;
|
24
|
+
text-align: center;
|
25
|
+
z-index: 1000;
|
26
|
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
27
|
+
transform: translateX(-50%) translateY(-50%);
|
28
|
+
}
|
29
|
+
|
30
|
+
/* Static Shape */
|
31
|
+
.ui.loader:before {
|
32
|
+
position: absolute;
|
33
|
+
content: '';
|
34
|
+
top: 0%;
|
35
|
+
left: 50%;
|
36
|
+
width: 100%;
|
37
|
+
height: 100%;
|
38
|
+
border-radius: 500rem;
|
39
|
+
border: 0.2em solid rgba(0, 0, 0, 0.1);
|
40
|
+
}
|
41
|
+
|
42
|
+
/* Active Shape */
|
43
|
+
.ui.loader:after {
|
44
|
+
position: absolute;
|
45
|
+
content: '';
|
46
|
+
top: 0%;
|
47
|
+
left: 50%;
|
48
|
+
width: 100%;
|
49
|
+
height: 100%;
|
50
|
+
-webkit-animation: loader 0.6s linear;
|
51
|
+
animation: loader 0.6s linear;
|
52
|
+
-webkit-animation-iteration-count: infinite;
|
53
|
+
animation-iteration-count: infinite;
|
54
|
+
border-radius: 500rem;
|
55
|
+
border-color: #767676 transparent transparent;
|
56
|
+
border-style: solid;
|
57
|
+
border-width: 0.2em;
|
58
|
+
-webkit-box-shadow: 0px 0px 0px 1px transparent;
|
59
|
+
box-shadow: 0px 0px 0px 1px transparent;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Speeds */
|
63
|
+
.ui.fast.loader:after {
|
64
|
+
-webkit-animation: loader 0.3s linear;
|
65
|
+
animation: loader 0.3s linear;
|
66
|
+
-webkit-animation-iteration-count: infinite;
|
67
|
+
animation-iteration-count: infinite;
|
68
|
+
}
|
69
|
+
.ui.slow.loader:after {
|
70
|
+
-webkit-animation: loader 0.9s linear;
|
71
|
+
animation: loader 0.9s linear;
|
72
|
+
-webkit-animation-iteration-count: infinite;
|
73
|
+
animation-iteration-count: infinite;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Active Animation */
|
77
|
+
@-webkit-keyframes loader {
|
78
|
+
from {
|
79
|
+
-webkit-transform: rotate(0deg);
|
80
|
+
transform: rotate(0deg);
|
81
|
+
}
|
82
|
+
to {
|
83
|
+
-webkit-transform: rotate(360deg);
|
84
|
+
transform: rotate(360deg);
|
85
|
+
}
|
86
|
+
}
|
87
|
+
@keyframes loader {
|
88
|
+
from {
|
89
|
+
-webkit-transform: rotate(0deg);
|
90
|
+
transform: rotate(0deg);
|
91
|
+
}
|
92
|
+
to {
|
93
|
+
-webkit-transform: rotate(360deg);
|
94
|
+
transform: rotate(360deg);
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
/* Sizes */
|
99
|
+
.ui.mini.loader:before,
|
100
|
+
.ui.mini.loader:after {
|
101
|
+
width: 1rem;
|
102
|
+
height: 1rem;
|
103
|
+
margin: 0em 0em 0em -0.5rem;
|
104
|
+
}
|
105
|
+
.ui.tiny.loader:before,
|
106
|
+
.ui.tiny.loader:after {
|
107
|
+
width: 1.14285714rem;
|
108
|
+
height: 1.14285714rem;
|
109
|
+
margin: 0em 0em 0em -0.57142857rem;
|
110
|
+
}
|
111
|
+
.ui.small.loader:before,
|
112
|
+
.ui.small.loader:after {
|
113
|
+
width: 1.71428571rem;
|
114
|
+
height: 1.71428571rem;
|
115
|
+
margin: 0em 0em 0em -0.85714286rem;
|
116
|
+
}
|
117
|
+
.ui.loader:before,
|
118
|
+
.ui.loader:after {
|
119
|
+
width: 2.28571429rem;
|
120
|
+
height: 2.28571429rem;
|
121
|
+
margin: 0em 0em 0em -1.14285714rem;
|
122
|
+
}
|
123
|
+
.ui.large.loader:before,
|
124
|
+
.ui.large.loader:after {
|
125
|
+
width: 3.42857143rem;
|
126
|
+
height: 3.42857143rem;
|
127
|
+
margin: 0em 0em 0em -1.71428571rem;
|
128
|
+
}
|
129
|
+
.ui.big.loader:before,
|
130
|
+
.ui.big.loader:after {
|
131
|
+
width: 3.71428571rem;
|
132
|
+
height: 3.71428571rem;
|
133
|
+
margin: 0em 0em 0em -1.85714286rem;
|
134
|
+
}
|
135
|
+
.ui.huge.loader:before,
|
136
|
+
.ui.huge.loader:after {
|
137
|
+
width: 4.14285714rem;
|
138
|
+
height: 4.14285714rem;
|
139
|
+
margin: 0em 0em 0em -2.07142857rem;
|
140
|
+
}
|
141
|
+
.ui.massive.loader:before,
|
142
|
+
.ui.massive.loader:after {
|
143
|
+
width: 4.57142857rem;
|
144
|
+
height: 4.57142857rem;
|
145
|
+
margin: 0em 0em 0em -2.28571429rem;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*-------------------
|
149
|
+
Coupling
|
150
|
+
--------------------*/
|
151
|
+
|
152
|
+
|
153
|
+
/* Show inside active dimmer */
|
154
|
+
.ui.dimmer .loader {
|
155
|
+
display: block;
|
156
|
+
}
|
157
|
+
|
158
|
+
/* Black Dimmer */
|
159
|
+
.ui.dimmer .ui.loader {
|
160
|
+
color: rgba(255, 255, 255, 0.9);
|
161
|
+
}
|
162
|
+
.ui.dimmer .ui.loader:before {
|
163
|
+
border-color: rgba(255, 255, 255, 0.15);
|
164
|
+
}
|
165
|
+
.ui.dimmer .ui.loader:after {
|
166
|
+
border-color: #FFFFFF transparent transparent;
|
167
|
+
}
|
168
|
+
|
169
|
+
/* White Dimmer (Inverted) */
|
170
|
+
.ui.inverted.dimmer .ui.loader {
|
171
|
+
color: rgba(0, 0, 0, 0.87);
|
172
|
+
}
|
173
|
+
.ui.inverted.dimmer .ui.loader:before {
|
174
|
+
border-color: rgba(0, 0, 0, 0.1);
|
175
|
+
}
|
176
|
+
.ui.inverted.dimmer .ui.loader:after {
|
177
|
+
border-color: #767676 transparent transparent;
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
/*******************************
|
182
|
+
Types
|
183
|
+
*******************************/
|
184
|
+
|
185
|
+
|
186
|
+
/*-------------------
|
187
|
+
Text
|
188
|
+
--------------------*/
|
189
|
+
|
190
|
+
.ui.text.loader {
|
191
|
+
width: auto !important;
|
192
|
+
height: auto !important;
|
193
|
+
text-align: center;
|
194
|
+
font-style: normal;
|
195
|
+
}
|
196
|
+
|
197
|
+
|
198
|
+
/*******************************
|
199
|
+
States
|
200
|
+
*******************************/
|
201
|
+
|
202
|
+
.ui.indeterminate.loader:after {
|
203
|
+
animation-direction: reverse;
|
204
|
+
-webkit-animation-duration: 1.2s;
|
205
|
+
animation-duration: 1.2s;
|
206
|
+
}
|
207
|
+
.ui.loader.active,
|
208
|
+
.ui.loader.visible {
|
209
|
+
display: block;
|
210
|
+
}
|
211
|
+
.ui.loader.disabled,
|
212
|
+
.ui.loader.hidden {
|
213
|
+
display: none;
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
/*******************************
|
218
|
+
Variations
|
219
|
+
*******************************/
|
220
|
+
|
221
|
+
|
222
|
+
/*-------------------
|
223
|
+
Sizes
|
224
|
+
--------------------*/
|
225
|
+
|
226
|
+
|
227
|
+
/* Loader */
|
228
|
+
.ui.inverted.dimmer .ui.mini.loader,
|
229
|
+
.ui.mini.loader {
|
230
|
+
width: 1rem;
|
231
|
+
height: 1rem;
|
232
|
+
font-size: 0.78571429em;
|
233
|
+
}
|
234
|
+
.ui.inverted.dimmer .ui.tiny.loader,
|
235
|
+
.ui.tiny.loader {
|
236
|
+
width: 1.14285714rem;
|
237
|
+
height: 1.14285714rem;
|
238
|
+
font-size: 0.85714286em;
|
239
|
+
}
|
240
|
+
.ui.inverted.dimmer .ui.small.loader,
|
241
|
+
.ui.small.loader {
|
242
|
+
width: 1.71428571rem;
|
243
|
+
height: 1.71428571rem;
|
244
|
+
font-size: 0.92857143em;
|
245
|
+
}
|
246
|
+
.ui.inverted.dimmer .ui.loader,
|
247
|
+
.ui.loader {
|
248
|
+
width: 2.28571429rem;
|
249
|
+
height: 2.28571429rem;
|
250
|
+
font-size: 1em;
|
251
|
+
}
|
252
|
+
.ui.inverted.dimmer .ui.large.loader,
|
253
|
+
.ui.large.loader {
|
254
|
+
width: 3.42857143rem;
|
255
|
+
height: 3.42857143rem;
|
256
|
+
font-size: 1.14285714em;
|
257
|
+
}
|
258
|
+
.ui.inverted.dimmer .ui.big.loader,
|
259
|
+
.ui.big.loader {
|
260
|
+
width: 3.71428571rem;
|
261
|
+
height: 3.71428571rem;
|
262
|
+
font-size: 1.28571429em;
|
263
|
+
}
|
264
|
+
.ui.inverted.dimmer .ui.huge.loader,
|
265
|
+
.ui.huge.loader {
|
266
|
+
width: 4.14285714rem;
|
267
|
+
height: 4.14285714rem;
|
268
|
+
font-size: 1.42857143em;
|
269
|
+
}
|
270
|
+
.ui.inverted.dimmer .ui.massive.loader,
|
271
|
+
.ui.massive.loader {
|
272
|
+
width: 4.57142857rem;
|
273
|
+
height: 4.57142857rem;
|
274
|
+
font-size: 1.71428571em;
|
275
|
+
}
|
276
|
+
|
277
|
+
/* Text Loader */
|
278
|
+
.ui.mini.text.loader {
|
279
|
+
min-width: 1rem;
|
280
|
+
padding-top: 1.78571429rem;
|
281
|
+
}
|
282
|
+
.ui.tiny.text.loader {
|
283
|
+
min-width: 1.14285714rem;
|
284
|
+
padding-top: 1.92857143rem;
|
285
|
+
}
|
286
|
+
.ui.small.text.loader {
|
287
|
+
min-width: 1.71428571rem;
|
288
|
+
padding-top: 2.5rem;
|
289
|
+
}
|
290
|
+
.ui.text.loader {
|
291
|
+
min-width: 2.28571429rem;
|
292
|
+
padding-top: 3.07142857rem;
|
293
|
+
}
|
294
|
+
.ui.large.text.loader {
|
295
|
+
min-width: 3.42857143rem;
|
296
|
+
padding-top: 4.21428571rem;
|
297
|
+
}
|
298
|
+
.ui.big.text.loader {
|
299
|
+
min-width: 3.71428571rem;
|
300
|
+
padding-top: 4.5rem;
|
301
|
+
}
|
302
|
+
.ui.huge.text.loader {
|
303
|
+
min-width: 4.14285714rem;
|
304
|
+
padding-top: 4.92857143rem;
|
305
|
+
}
|
306
|
+
.ui.massive.text.loader {
|
307
|
+
min-width: 4.57142857rem;
|
308
|
+
padding-top: 5.35714286rem;
|
309
|
+
}
|
310
|
+
|
311
|
+
/*-------------------
|
312
|
+
Colors
|
313
|
+
--------------------*/
|
314
|
+
|
315
|
+
.ui.primary.loader:after {
|
316
|
+
border-color: #2185D0 transparent transparent;
|
317
|
+
}
|
318
|
+
.ui.secondary.loader:after {
|
319
|
+
border-color: #1B1C1D transparent transparent;
|
320
|
+
}
|
321
|
+
.ui.red.loader:after {
|
322
|
+
border-color: #DB2828 transparent transparent;
|
323
|
+
}
|
324
|
+
.ui.orange.loader:after {
|
325
|
+
border-color: #F2711C transparent transparent;
|
326
|
+
}
|
327
|
+
.ui.yellow.loader:after {
|
328
|
+
border-color: #FBBD08 transparent transparent;
|
329
|
+
}
|
330
|
+
.ui.olive.loader:after {
|
331
|
+
border-color: #B5CC18 transparent transparent;
|
332
|
+
}
|
333
|
+
.ui.green.loader:after {
|
334
|
+
border-color: #21BA45 transparent transparent;
|
335
|
+
}
|
336
|
+
.ui.teal.loader:after {
|
337
|
+
border-color: #00B5AD transparent transparent;
|
338
|
+
}
|
339
|
+
.ui.blue.loader:after {
|
340
|
+
border-color: #2185D0 transparent transparent;
|
341
|
+
}
|
342
|
+
.ui.violet.loader:after {
|
343
|
+
border-color: #6435C9 transparent transparent;
|
344
|
+
}
|
345
|
+
.ui.purple.loader:after {
|
346
|
+
border-color: #A333C8 transparent transparent;
|
347
|
+
}
|
348
|
+
.ui.pink.loader:after {
|
349
|
+
border-color: #E03997 transparent transparent;
|
350
|
+
}
|
351
|
+
.ui.brown.loader:after {
|
352
|
+
border-color: #A5673F transparent transparent;
|
353
|
+
}
|
354
|
+
.ui.grey.loader:after {
|
355
|
+
border-color: #767676 transparent transparent;
|
356
|
+
}
|
357
|
+
.ui.black.loader:after {
|
358
|
+
border-color: #1B1C1D transparent transparent;
|
359
|
+
}
|
360
|
+
|
361
|
+
/*-------------------
|
362
|
+
Inverted
|
363
|
+
--------------------*/
|
364
|
+
|
365
|
+
.ui.inverted.loader {
|
366
|
+
color: rgba(255, 255, 255, 0.9);
|
367
|
+
}
|
368
|
+
.ui.inverted.loader:before {
|
369
|
+
border-color: rgba(255, 255, 255, 0.15);
|
370
|
+
}
|
371
|
+
.ui.inverted.loader:after {
|
372
|
+
border-top-color: #FFFFFF;
|
373
|
+
}
|
374
|
+
|
375
|
+
/* Colors */
|
376
|
+
.ui.inverted.primary.loader:after {
|
377
|
+
border-color: #54C8FF transparent transparent;
|
378
|
+
}
|
379
|
+
.ui.inverted.secondary.loader:after {
|
380
|
+
border-color: #545454 transparent transparent;
|
381
|
+
}
|
382
|
+
.ui.inverted.red.loader:after {
|
383
|
+
border-color: #FF695E transparent transparent;
|
384
|
+
}
|
385
|
+
.ui.inverted.orange.loader:after {
|
386
|
+
border-color: #FF851B transparent transparent;
|
387
|
+
}
|
388
|
+
.ui.inverted.yellow.loader:after {
|
389
|
+
border-color: #FFE21F transparent transparent;
|
390
|
+
}
|
391
|
+
.ui.inverted.olive.loader:after {
|
392
|
+
border-color: #D9E778 transparent transparent;
|
393
|
+
}
|
394
|
+
.ui.inverted.green.loader:after {
|
395
|
+
border-color: #2ECC40 transparent transparent;
|
396
|
+
}
|
397
|
+
.ui.inverted.teal.loader:after {
|
398
|
+
border-color: #6DFFFF transparent transparent;
|
399
|
+
}
|
400
|
+
.ui.inverted.blue.loader:after {
|
401
|
+
border-color: #54C8FF transparent transparent;
|
402
|
+
}
|
403
|
+
.ui.inverted.violet.loader:after {
|
404
|
+
border-color: #A291FB transparent transparent;
|
405
|
+
}
|
406
|
+
.ui.inverted.purple.loader:after {
|
407
|
+
border-color: #DC73FF transparent transparent;
|
408
|
+
}
|
409
|
+
.ui.inverted.pink.loader:after {
|
410
|
+
border-color: #FF8EDF transparent transparent;
|
411
|
+
}
|
412
|
+
.ui.inverted.brown.loader:after {
|
413
|
+
border-color: #D67C1C transparent transparent;
|
414
|
+
}
|
415
|
+
.ui.inverted.grey.loader:after {
|
416
|
+
border-color: #DCDDDE transparent transparent;
|
417
|
+
}
|
418
|
+
.ui.inverted.black.loader:after {
|
419
|
+
border-color: #545454 transparent transparent;
|
420
|
+
}
|
421
|
+
|
422
|
+
/*-------------------
|
423
|
+
Inline
|
424
|
+
--------------------*/
|
425
|
+
|
426
|
+
.ui.inline.loader {
|
427
|
+
position: relative;
|
428
|
+
vertical-align: middle;
|
429
|
+
margin: 0em;
|
430
|
+
left: 0em;
|
431
|
+
top: 0em;
|
432
|
+
-webkit-transform: none;
|
433
|
+
transform: none;
|
434
|
+
}
|
435
|
+
.ui.inline.loader.active,
|
436
|
+
.ui.inline.loader.visible {
|
437
|
+
display: inline-block;
|
438
|
+
}
|
439
|
+
|
440
|
+
/* Centered Inline */
|
441
|
+
.ui.centered.inline.loader.active,
|
442
|
+
.ui.centered.inline.loader.visible {
|
443
|
+
display: block;
|
444
|
+
margin-left: auto;
|
445
|
+
margin-right: auto;
|
446
|
+
}
|
447
|
+
|
448
|
+
|
449
|
+
/*******************************
|
450
|
+
Theme Overrides
|
451
|
+
*******************************/
|
452
|
+
|
453
|
+
|
454
|
+
|
455
|
+
/*******************************
|
456
|
+
Site Overrides
|
457
|
+
*******************************/
|
458
|
+
|