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,523 @@
|
|
1
|
+
/*!
|
2
|
+
* # Semantic UI 2.6.4 - Progress Bar
|
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
|
+
Progress
|
14
|
+
*******************************/
|
15
|
+
|
16
|
+
.ui.progress {
|
17
|
+
position: relative;
|
18
|
+
display: block;
|
19
|
+
max-width: 100%;
|
20
|
+
border: none;
|
21
|
+
margin: 1em 0em 2.5em;
|
22
|
+
-webkit-box-shadow: none;
|
23
|
+
box-shadow: none;
|
24
|
+
background: rgba(0, 0, 0, 0.1);
|
25
|
+
padding: 0em;
|
26
|
+
border-radius: 0.28571429rem;
|
27
|
+
}
|
28
|
+
.ui.progress:first-child {
|
29
|
+
margin: 0em 0em 2.5em;
|
30
|
+
}
|
31
|
+
.ui.progress:last-child {
|
32
|
+
margin: 0em 0em 1.5em;
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
/*******************************
|
37
|
+
Content
|
38
|
+
*******************************/
|
39
|
+
|
40
|
+
|
41
|
+
/* Activity Bar */
|
42
|
+
.ui.progress .bar {
|
43
|
+
display: block;
|
44
|
+
line-height: 1;
|
45
|
+
position: relative;
|
46
|
+
width: 0%;
|
47
|
+
min-width: 2em;
|
48
|
+
background: #888888;
|
49
|
+
border-radius: 0.28571429rem;
|
50
|
+
-webkit-transition: width 0.1s ease, background-color 0.1s ease;
|
51
|
+
transition: width 0.1s ease, background-color 0.1s ease;
|
52
|
+
}
|
53
|
+
|
54
|
+
/* Percent Complete */
|
55
|
+
.ui.progress .bar > .progress {
|
56
|
+
white-space: nowrap;
|
57
|
+
position: absolute;
|
58
|
+
width: auto;
|
59
|
+
font-size: 0.92857143em;
|
60
|
+
top: 50%;
|
61
|
+
right: 0.5em;
|
62
|
+
left: auto;
|
63
|
+
bottom: auto;
|
64
|
+
color: rgba(255, 255, 255, 0.7);
|
65
|
+
text-shadow: none;
|
66
|
+
margin-top: -0.5em;
|
67
|
+
font-weight: bold;
|
68
|
+
text-align: left;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Label */
|
72
|
+
.ui.progress > .label {
|
73
|
+
position: absolute;
|
74
|
+
width: 100%;
|
75
|
+
font-size: 1em;
|
76
|
+
top: 100%;
|
77
|
+
right: auto;
|
78
|
+
left: 0%;
|
79
|
+
bottom: auto;
|
80
|
+
color: rgba(0, 0, 0, 0.87);
|
81
|
+
font-weight: bold;
|
82
|
+
text-shadow: none;
|
83
|
+
margin-top: 0.2em;
|
84
|
+
text-align: center;
|
85
|
+
-webkit-transition: color 0.4s ease;
|
86
|
+
transition: color 0.4s ease;
|
87
|
+
}
|
88
|
+
|
89
|
+
|
90
|
+
/*******************************
|
91
|
+
Types
|
92
|
+
*******************************/
|
93
|
+
|
94
|
+
|
95
|
+
/* Indicating */
|
96
|
+
.ui.indicating.progress[data-percent^="1"] .bar,
|
97
|
+
.ui.indicating.progress[data-percent^="2"] .bar {
|
98
|
+
background-color: #D95C5C;
|
99
|
+
}
|
100
|
+
.ui.indicating.progress[data-percent^="3"] .bar {
|
101
|
+
background-color: #EFBC72;
|
102
|
+
}
|
103
|
+
.ui.indicating.progress[data-percent^="4"] .bar,
|
104
|
+
.ui.indicating.progress[data-percent^="5"] .bar {
|
105
|
+
background-color: #E6BB48;
|
106
|
+
}
|
107
|
+
.ui.indicating.progress[data-percent^="6"] .bar {
|
108
|
+
background-color: #DDC928;
|
109
|
+
}
|
110
|
+
.ui.indicating.progress[data-percent^="7"] .bar,
|
111
|
+
.ui.indicating.progress[data-percent^="8"] .bar {
|
112
|
+
background-color: #B4D95C;
|
113
|
+
}
|
114
|
+
.ui.indicating.progress[data-percent^="9"] .bar,
|
115
|
+
.ui.indicating.progress[data-percent^="100"] .bar {
|
116
|
+
background-color: #66DA81;
|
117
|
+
}
|
118
|
+
|
119
|
+
/* Indicating Label */
|
120
|
+
.ui.indicating.progress[data-percent^="1"] .label,
|
121
|
+
.ui.indicating.progress[data-percent^="2"] .label {
|
122
|
+
color: rgba(0, 0, 0, 0.87);
|
123
|
+
}
|
124
|
+
.ui.indicating.progress[data-percent^="3"] .label {
|
125
|
+
color: rgba(0, 0, 0, 0.87);
|
126
|
+
}
|
127
|
+
.ui.indicating.progress[data-percent^="4"] .label,
|
128
|
+
.ui.indicating.progress[data-percent^="5"] .label {
|
129
|
+
color: rgba(0, 0, 0, 0.87);
|
130
|
+
}
|
131
|
+
.ui.indicating.progress[data-percent^="6"] .label {
|
132
|
+
color: rgba(0, 0, 0, 0.87);
|
133
|
+
}
|
134
|
+
.ui.indicating.progress[data-percent^="7"] .label,
|
135
|
+
.ui.indicating.progress[data-percent^="8"] .label {
|
136
|
+
color: rgba(0, 0, 0, 0.87);
|
137
|
+
}
|
138
|
+
.ui.indicating.progress[data-percent^="9"] .label,
|
139
|
+
.ui.indicating.progress[data-percent^="100"] .label {
|
140
|
+
color: rgba(0, 0, 0, 0.87);
|
141
|
+
}
|
142
|
+
|
143
|
+
/* Single Digits */
|
144
|
+
.ui.indicating.progress[data-percent="1"] .bar,
|
145
|
+
.ui.indicating.progress[data-percent="2"] .bar,
|
146
|
+
.ui.indicating.progress[data-percent="3"] .bar,
|
147
|
+
.ui.indicating.progress[data-percent="4"] .bar,
|
148
|
+
.ui.indicating.progress[data-percent="5"] .bar,
|
149
|
+
.ui.indicating.progress[data-percent="6"] .bar,
|
150
|
+
.ui.indicating.progress[data-percent="7"] .bar,
|
151
|
+
.ui.indicating.progress[data-percent="8"] .bar,
|
152
|
+
.ui.indicating.progress[data-percent="9"] .bar {
|
153
|
+
background-color: #D95C5C;
|
154
|
+
}
|
155
|
+
.ui.indicating.progress[data-percent="1"] .label,
|
156
|
+
.ui.indicating.progress[data-percent="2"] .label,
|
157
|
+
.ui.indicating.progress[data-percent="3"] .label,
|
158
|
+
.ui.indicating.progress[data-percent="4"] .label,
|
159
|
+
.ui.indicating.progress[data-percent="5"] .label,
|
160
|
+
.ui.indicating.progress[data-percent="6"] .label,
|
161
|
+
.ui.indicating.progress[data-percent="7"] .label,
|
162
|
+
.ui.indicating.progress[data-percent="8"] .label,
|
163
|
+
.ui.indicating.progress[data-percent="9"] .label {
|
164
|
+
color: rgba(0, 0, 0, 0.87);
|
165
|
+
}
|
166
|
+
|
167
|
+
/* Indicating Success */
|
168
|
+
.ui.indicating.progress.success .label {
|
169
|
+
color: #1A531B;
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
/*******************************
|
174
|
+
States
|
175
|
+
*******************************/
|
176
|
+
|
177
|
+
|
178
|
+
/*--------------
|
179
|
+
Success
|
180
|
+
---------------*/
|
181
|
+
|
182
|
+
.ui.progress.success .bar {
|
183
|
+
background-color: #21BA45 !important;
|
184
|
+
}
|
185
|
+
.ui.progress.success .bar,
|
186
|
+
.ui.progress.success .bar::after {
|
187
|
+
-webkit-animation: none !important;
|
188
|
+
animation: none !important;
|
189
|
+
}
|
190
|
+
.ui.progress.success > .label {
|
191
|
+
color: #1A531B;
|
192
|
+
}
|
193
|
+
|
194
|
+
/*--------------
|
195
|
+
Warning
|
196
|
+
---------------*/
|
197
|
+
|
198
|
+
.ui.progress.warning .bar {
|
199
|
+
background-color: #F2C037 !important;
|
200
|
+
}
|
201
|
+
.ui.progress.warning .bar,
|
202
|
+
.ui.progress.warning .bar::after {
|
203
|
+
-webkit-animation: none !important;
|
204
|
+
animation: none !important;
|
205
|
+
}
|
206
|
+
.ui.progress.warning > .label {
|
207
|
+
color: #794B02;
|
208
|
+
}
|
209
|
+
|
210
|
+
/*--------------
|
211
|
+
Error
|
212
|
+
---------------*/
|
213
|
+
|
214
|
+
.ui.progress.error .bar {
|
215
|
+
background-color: #DB2828 !important;
|
216
|
+
}
|
217
|
+
.ui.progress.error .bar,
|
218
|
+
.ui.progress.error .bar::after {
|
219
|
+
-webkit-animation: none !important;
|
220
|
+
animation: none !important;
|
221
|
+
}
|
222
|
+
.ui.progress.error > .label {
|
223
|
+
color: #912D2B;
|
224
|
+
}
|
225
|
+
|
226
|
+
/*--------------
|
227
|
+
Active
|
228
|
+
---------------*/
|
229
|
+
|
230
|
+
.ui.active.progress .bar {
|
231
|
+
position: relative;
|
232
|
+
min-width: 2em;
|
233
|
+
}
|
234
|
+
.ui.active.progress .bar::after {
|
235
|
+
content: '';
|
236
|
+
opacity: 0;
|
237
|
+
position: absolute;
|
238
|
+
top: 0px;
|
239
|
+
left: 0px;
|
240
|
+
right: 0px;
|
241
|
+
bottom: 0px;
|
242
|
+
background: #FFFFFF;
|
243
|
+
border-radius: 0.28571429rem;
|
244
|
+
-webkit-animation: progress-active 2s ease infinite;
|
245
|
+
animation: progress-active 2s ease infinite;
|
246
|
+
-webkit-transform-origin: left;
|
247
|
+
transform-origin: left;
|
248
|
+
}
|
249
|
+
@-webkit-keyframes progress-active {
|
250
|
+
0% {
|
251
|
+
opacity: 0.3;
|
252
|
+
-webkit-transform: scale(0, 1);
|
253
|
+
transform: scale(0, 1);
|
254
|
+
}
|
255
|
+
100% {
|
256
|
+
opacity: 0;
|
257
|
+
-webkit-transform: scale(1);
|
258
|
+
transform: scale(1);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
@keyframes progress-active {
|
262
|
+
0% {
|
263
|
+
opacity: 0.3;
|
264
|
+
-webkit-transform: scale(0, 1);
|
265
|
+
transform: scale(0, 1);
|
266
|
+
}
|
267
|
+
100% {
|
268
|
+
opacity: 0;
|
269
|
+
-webkit-transform: scale(1);
|
270
|
+
transform: scale(1);
|
271
|
+
}
|
272
|
+
}
|
273
|
+
|
274
|
+
/*--------------
|
275
|
+
Disabled
|
276
|
+
---------------*/
|
277
|
+
|
278
|
+
.ui.disabled.progress {
|
279
|
+
opacity: 0.35;
|
280
|
+
}
|
281
|
+
.ui.disabled.progress .bar,
|
282
|
+
.ui.disabled.progress .bar::after {
|
283
|
+
-webkit-animation: none !important;
|
284
|
+
animation: none !important;
|
285
|
+
}
|
286
|
+
|
287
|
+
|
288
|
+
/*******************************
|
289
|
+
Variations
|
290
|
+
*******************************/
|
291
|
+
|
292
|
+
|
293
|
+
/*--------------
|
294
|
+
Inverted
|
295
|
+
---------------*/
|
296
|
+
|
297
|
+
.ui.inverted.progress {
|
298
|
+
background: rgba(255, 255, 255, 0.08);
|
299
|
+
border: none;
|
300
|
+
}
|
301
|
+
.ui.inverted.progress .bar {
|
302
|
+
background: #888888;
|
303
|
+
}
|
304
|
+
.ui.inverted.progress .bar > .progress {
|
305
|
+
color: #1B1C1D;
|
306
|
+
}
|
307
|
+
.ui.inverted.progress > .label {
|
308
|
+
color: #FFFFFF;
|
309
|
+
}
|
310
|
+
.ui.inverted.progress.success > .label {
|
311
|
+
color: #21BA45;
|
312
|
+
}
|
313
|
+
.ui.inverted.progress.warning > .label {
|
314
|
+
color: #F2C037;
|
315
|
+
}
|
316
|
+
.ui.inverted.progress.error > .label {
|
317
|
+
color: #DB2828;
|
318
|
+
}
|
319
|
+
|
320
|
+
/*--------------
|
321
|
+
Attached
|
322
|
+
---------------*/
|
323
|
+
|
324
|
+
|
325
|
+
/* bottom attached */
|
326
|
+
.ui.progress.attached {
|
327
|
+
background: transparent;
|
328
|
+
position: relative;
|
329
|
+
border: none;
|
330
|
+
margin: 0em;
|
331
|
+
}
|
332
|
+
.ui.progress.attached,
|
333
|
+
.ui.progress.attached .bar {
|
334
|
+
display: block;
|
335
|
+
height: 0.2rem;
|
336
|
+
padding: 0px;
|
337
|
+
overflow: hidden;
|
338
|
+
border-radius: 0em 0em 0.28571429rem 0.28571429rem;
|
339
|
+
}
|
340
|
+
.ui.progress.attached .bar {
|
341
|
+
border-radius: 0em;
|
342
|
+
}
|
343
|
+
|
344
|
+
/* top attached */
|
345
|
+
.ui.progress.top.attached,
|
346
|
+
.ui.progress.top.attached .bar {
|
347
|
+
top: 0px;
|
348
|
+
border-radius: 0.28571429rem 0.28571429rem 0em 0em;
|
349
|
+
}
|
350
|
+
.ui.progress.top.attached .bar {
|
351
|
+
border-radius: 0em;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* Coupling */
|
355
|
+
.ui.segment > .ui.attached.progress,
|
356
|
+
.ui.card > .ui.attached.progress {
|
357
|
+
position: absolute;
|
358
|
+
top: auto;
|
359
|
+
left: 0;
|
360
|
+
bottom: 100%;
|
361
|
+
width: 100%;
|
362
|
+
}
|
363
|
+
.ui.segment > .ui.bottom.attached.progress,
|
364
|
+
.ui.card > .ui.bottom.attached.progress {
|
365
|
+
top: 100%;
|
366
|
+
bottom: auto;
|
367
|
+
}
|
368
|
+
|
369
|
+
/*--------------
|
370
|
+
Colors
|
371
|
+
---------------*/
|
372
|
+
|
373
|
+
|
374
|
+
/* Red */
|
375
|
+
.ui.red.progress .bar {
|
376
|
+
background-color: #DB2828;
|
377
|
+
}
|
378
|
+
.ui.red.inverted.progress .bar {
|
379
|
+
background-color: #FF695E;
|
380
|
+
}
|
381
|
+
|
382
|
+
/* Orange */
|
383
|
+
.ui.orange.progress .bar {
|
384
|
+
background-color: #F2711C;
|
385
|
+
}
|
386
|
+
.ui.orange.inverted.progress .bar {
|
387
|
+
background-color: #FF851B;
|
388
|
+
}
|
389
|
+
|
390
|
+
/* Yellow */
|
391
|
+
.ui.yellow.progress .bar {
|
392
|
+
background-color: #FBBD08;
|
393
|
+
}
|
394
|
+
.ui.yellow.inverted.progress .bar {
|
395
|
+
background-color: #FFE21F;
|
396
|
+
}
|
397
|
+
|
398
|
+
/* Olive */
|
399
|
+
.ui.olive.progress .bar {
|
400
|
+
background-color: #B5CC18;
|
401
|
+
}
|
402
|
+
.ui.olive.inverted.progress .bar {
|
403
|
+
background-color: #D9E778;
|
404
|
+
}
|
405
|
+
|
406
|
+
/* Green */
|
407
|
+
.ui.green.progress .bar {
|
408
|
+
background-color: #21BA45;
|
409
|
+
}
|
410
|
+
.ui.green.inverted.progress .bar {
|
411
|
+
background-color: #2ECC40;
|
412
|
+
}
|
413
|
+
|
414
|
+
/* Teal */
|
415
|
+
.ui.teal.progress .bar {
|
416
|
+
background-color: #00B5AD;
|
417
|
+
}
|
418
|
+
.ui.teal.inverted.progress .bar {
|
419
|
+
background-color: #6DFFFF;
|
420
|
+
}
|
421
|
+
|
422
|
+
/* Blue */
|
423
|
+
.ui.blue.progress .bar {
|
424
|
+
background-color: #2185D0;
|
425
|
+
}
|
426
|
+
.ui.blue.inverted.progress .bar {
|
427
|
+
background-color: #54C8FF;
|
428
|
+
}
|
429
|
+
|
430
|
+
/* Violet */
|
431
|
+
.ui.violet.progress .bar {
|
432
|
+
background-color: #6435C9;
|
433
|
+
}
|
434
|
+
.ui.violet.inverted.progress .bar {
|
435
|
+
background-color: #A291FB;
|
436
|
+
}
|
437
|
+
|
438
|
+
/* Purple */
|
439
|
+
.ui.purple.progress .bar {
|
440
|
+
background-color: #A333C8;
|
441
|
+
}
|
442
|
+
.ui.purple.inverted.progress .bar {
|
443
|
+
background-color: #DC73FF;
|
444
|
+
}
|
445
|
+
|
446
|
+
/* Pink */
|
447
|
+
.ui.pink.progress .bar {
|
448
|
+
background-color: #E03997;
|
449
|
+
}
|
450
|
+
.ui.pink.inverted.progress .bar {
|
451
|
+
background-color: #FF8EDF;
|
452
|
+
}
|
453
|
+
|
454
|
+
/* Brown */
|
455
|
+
.ui.brown.progress .bar {
|
456
|
+
background-color: #A5673F;
|
457
|
+
}
|
458
|
+
.ui.brown.inverted.progress .bar {
|
459
|
+
background-color: #D67C1C;
|
460
|
+
}
|
461
|
+
|
462
|
+
/* Grey */
|
463
|
+
.ui.grey.progress .bar {
|
464
|
+
background-color: #767676;
|
465
|
+
}
|
466
|
+
.ui.grey.inverted.progress .bar {
|
467
|
+
background-color: #DCDDDE;
|
468
|
+
}
|
469
|
+
|
470
|
+
/* Black */
|
471
|
+
.ui.black.progress .bar {
|
472
|
+
background-color: #1B1C1D;
|
473
|
+
}
|
474
|
+
.ui.black.inverted.progress .bar {
|
475
|
+
background-color: #545454;
|
476
|
+
}
|
477
|
+
|
478
|
+
/*--------------
|
479
|
+
Sizes
|
480
|
+
---------------*/
|
481
|
+
|
482
|
+
.ui.tiny.progress {
|
483
|
+
font-size: 0.85714286rem;
|
484
|
+
}
|
485
|
+
.ui.tiny.progress .bar {
|
486
|
+
height: 0.5em;
|
487
|
+
}
|
488
|
+
.ui.small.progress {
|
489
|
+
font-size: 0.92857143rem;
|
490
|
+
}
|
491
|
+
.ui.small.progress .bar {
|
492
|
+
height: 1em;
|
493
|
+
}
|
494
|
+
.ui.progress {
|
495
|
+
font-size: 1rem;
|
496
|
+
}
|
497
|
+
.ui.progress .bar {
|
498
|
+
height: 1.75em;
|
499
|
+
}
|
500
|
+
.ui.large.progress {
|
501
|
+
font-size: 1.14285714rem;
|
502
|
+
}
|
503
|
+
.ui.large.progress .bar {
|
504
|
+
height: 2.5em;
|
505
|
+
}
|
506
|
+
.ui.big.progress {
|
507
|
+
font-size: 1.28571429rem;
|
508
|
+
}
|
509
|
+
.ui.big.progress .bar {
|
510
|
+
height: 3.5em;
|
511
|
+
}
|
512
|
+
|
513
|
+
|
514
|
+
/*******************************
|
515
|
+
Progress
|
516
|
+
*******************************/
|
517
|
+
|
518
|
+
|
519
|
+
|
520
|
+
/*******************************
|
521
|
+
Site Overrides
|
522
|
+
*******************************/
|
523
|
+
|