semantic-ui 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/lib/semantic-ui.rb +8 -0
  3. data/lib/semantic-ui/version.rb +5 -0
  4. data/vendor/assets/fonts/icons.eot +0 -0
  5. data/vendor/assets/fonts/icons.svg +450 -0
  6. data/vendor/assets/fonts/icons.ttf +0 -0
  7. data/vendor/assets/fonts/icons.woff +0 -0
  8. data/vendor/assets/images/loader-large-inverted.gif +0 -0
  9. data/vendor/assets/images/loader-large.gif +0 -0
  10. data/vendor/assets/images/loader-medium-inverted.gif +0 -0
  11. data/vendor/assets/images/loader-medium.gif +0 -0
  12. data/vendor/assets/images/loader-mini-inverted.gif +0 -0
  13. data/vendor/assets/images/loader-mini.gif +0 -0
  14. data/vendor/assets/images/loader-small-inverted.gif +0 -0
  15. data/vendor/assets/images/loader-small.gif +0 -0
  16. data/vendor/assets/javascripts/modules/accordion.js +411 -0
  17. data/vendor/assets/javascripts/modules/behavior/api.js +666 -0
  18. data/vendor/assets/javascripts/modules/behavior/colorize.js +271 -0
  19. data/vendor/assets/javascripts/modules/behavior/form.js +703 -0
  20. data/vendor/assets/javascripts/modules/behavior/state.js +752 -0
  21. data/vendor/assets/javascripts/modules/chatroom.js +766 -0
  22. data/vendor/assets/javascripts/modules/checkbox.js +348 -0
  23. data/vendor/assets/javascripts/modules/dimmer.js +524 -0
  24. data/vendor/assets/javascripts/modules/dropdown.js +707 -0
  25. data/vendor/assets/javascripts/modules/modal.js +478 -0
  26. data/vendor/assets/javascripts/modules/nag.js +542 -0
  27. data/vendor/assets/javascripts/modules/popup.js +721 -0
  28. data/vendor/assets/javascripts/modules/rating.js +358 -0
  29. data/vendor/assets/javascripts/modules/search.js +769 -0
  30. data/vendor/assets/javascripts/modules/shape.js +776 -0
  31. data/vendor/assets/javascripts/modules/sidebar.js +489 -0
  32. data/vendor/assets/javascripts/modules/tab.js +674 -0
  33. data/vendor/assets/javascripts/modules/transition.js +650 -0
  34. data/vendor/assets/javascripts/modules/video.js +459 -0
  35. data/vendor/assets/javascripts/semantic-ui.js +1 -0
  36. data/vendor/assets/stylesheets/collections/breadcrumb.less +79 -0
  37. data/vendor/assets/stylesheets/collections/form.less +536 -0
  38. data/vendor/assets/stylesheets/collections/grid.less +655 -0
  39. data/vendor/assets/stylesheets/collections/menu.less +1765 -0
  40. data/vendor/assets/stylesheets/collections/message.less +337 -0
  41. data/vendor/assets/stylesheets/collections/table.less +532 -0
  42. data/vendor/assets/stylesheets/elements/button.less +1190 -0
  43. data/vendor/assets/stylesheets/elements/divider.less +200 -0
  44. data/vendor/assets/stylesheets/elements/header.less +325 -0
  45. data/vendor/assets/stylesheets/elements/icon.less +484 -0
  46. data/vendor/assets/stylesheets/elements/image.less +170 -0
  47. data/vendor/assets/stylesheets/elements/input.less +300 -0
  48. data/vendor/assets/stylesheets/elements/label.less +824 -0
  49. data/vendor/assets/stylesheets/elements/loader.less +178 -0
  50. data/vendor/assets/stylesheets/elements/progress.less +353 -0
  51. data/vendor/assets/stylesheets/elements/segment.less +465 -0
  52. data/vendor/assets/stylesheets/elements/step.less +294 -0
  53. data/vendor/assets/stylesheets/modules/accordion.less +135 -0
  54. data/vendor/assets/stylesheets/modules/chatroom.less +271 -0
  55. data/vendor/assets/stylesheets/modules/checkbox.less +380 -0
  56. data/vendor/assets/stylesheets/modules/dimmer.less +230 -0
  57. data/vendor/assets/stylesheets/modules/dropdown.less +506 -0
  58. data/vendor/assets/stylesheets/modules/modal.less +160 -0
  59. data/vendor/assets/stylesheets/modules/nag.less +175 -0
  60. data/vendor/assets/stylesheets/modules/popup.less +238 -0
  61. data/vendor/assets/stylesheets/modules/rating.less +151 -0
  62. data/vendor/assets/stylesheets/modules/reveal.less +367 -0
  63. data/vendor/assets/stylesheets/modules/search.less +275 -0
  64. data/vendor/assets/stylesheets/modules/shape.less +115 -0
  65. data/vendor/assets/stylesheets/modules/sidebar.less +147 -0
  66. data/vendor/assets/stylesheets/modules/tab.less +59 -0
  67. data/vendor/assets/stylesheets/modules/transition.less +839 -0
  68. data/vendor/assets/stylesheets/modules/video.less +99 -0
  69. data/vendor/assets/stylesheets/semantic-ui.less +1 -0
  70. data/vendor/assets/stylesheets/views/comment.less +221 -0
  71. data/vendor/assets/stylesheets/views/feed.less +151 -0
  72. data/vendor/assets/stylesheets/views/item.less +641 -0
  73. data/vendor/assets/stylesheets/views/list.less +508 -0
  74. data/vendor/assets/stylesheets/views/statistic.css +27 -0
  75. metadata +187 -0
@@ -0,0 +1,1190 @@
1
+ /*
2
+ * # Semantic Button
3
+ * http://github.com/quirkyinc/semantic
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ * Released: April 17 2013
11
+ */
12
+
13
+
14
+ /*******************************
15
+ Button
16
+ *******************************/
17
+
18
+ /* Prototype */
19
+ .ui.button {
20
+ cursor: pointer;
21
+ display: inline-block;
22
+ vertical-align: middle;
23
+
24
+ min-height: 1em;
25
+
26
+ outline: none;
27
+ border: none;
28
+ background-color: #EBEBEB;
29
+ color: #999999;
30
+
31
+ padding: 0.8em 1.5em;
32
+
33
+ font-size: 1rem;
34
+ text-transform: uppercase;
35
+ line-height: 1;
36
+ font-weight: bold;
37
+ font-style: normal;
38
+ text-align: center;
39
+ text-decoration: none;
40
+
41
+ -webkit-border-radius: 0.2em;
42
+ -moz-border-radius: 0.2em;
43
+ border-radius: 0.2em;
44
+
45
+ -webkit-box-shadow:
46
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
47
+ ;
48
+ -moz-box-shadow:
49
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
50
+ ;
51
+ box-shadow:
52
+ 0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
53
+ ;
54
+
55
+ -webkit-user-select: none;
56
+ -moz-user-select: none;
57
+ -ms-user-select: none;
58
+ user-select: none;
59
+
60
+ -webkit-box-sizing: border-box;
61
+ -moz-box-sizing: border-box;
62
+ -ms-box-sizing: border-box;
63
+ box-sizing: border-box;
64
+
65
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
66
+
67
+ -webkit-transition:
68
+ opacity 0.25s ease,
69
+ background-color 0.25s ease,
70
+ color 0.25s ease,
71
+ background 0.25s ease,
72
+ text-shadow 0.25s ease,
73
+ box-shadow 0.25s ease
74
+ ;
75
+ -moz-transition:
76
+ opacity 0.25s ease,
77
+ background-color 0.25s ease,
78
+ color 0.25s ease,
79
+ background 0.25s ease,
80
+ text-shadow 0.25s ease,
81
+ box-shadow 0.25s ease
82
+ ;
83
+ -o-transition:
84
+ opacity 0.25s ease,
85
+ background-color 0.25s ease,
86
+ color 0.25s ease,
87
+ background 0.25s ease,
88
+ text-shadow 0.25s ease,
89
+ box-shadow 0.25s ease
90
+ ;
91
+ -ms-transition:
92
+ opacity 0.25s ease,
93
+ background-color 0.25s ease,
94
+ color 0.25s ease,
95
+ background 0.25s ease,
96
+ text-shadow 0.25s ease,
97
+ box-shadow 0.25s ease
98
+ ;
99
+ transition:
100
+ opacity 0.25s ease,
101
+ background-color 0.25s ease,
102
+ color 0.25s ease,
103
+ background 0.25s ease,
104
+ text-shadow 0.25s ease,
105
+ box-shadow 0.25s ease
106
+ ;
107
+ }
108
+
109
+ /*--------------
110
+ Count
111
+ ---------------*/
112
+
113
+ .ui.count.button {
114
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
115
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
116
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
117
+ }
118
+
119
+ .ui.count.button > .count {
120
+ position: absolute;
121
+ background-color: #FFFFFF;
122
+ border: 1px solid #F0F0F0;
123
+ margin: -0.8em -1.5em;
124
+ padding: 0.8em 1.5em;
125
+ }
126
+
127
+ /*-------------------
128
+ Primary
129
+ --------------------*/
130
+
131
+ .ui.primary.buttons .button,
132
+ .ui.primary.button {
133
+ background-color: #D95C5C;
134
+ color: #FFFFFF;
135
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
136
+ }
137
+ .ui.primary.buttons .button:hover,
138
+ .ui.primary.button:hover,
139
+ .ui.primary.buttons .active.button,
140
+ .ui.primary.button.active {
141
+ background-color: #E75859;
142
+ color: #FFFFFF;
143
+ }
144
+ .ui.primary.buttons .button:active,
145
+ .ui.primary.button:active {
146
+ background-color: #D24B4C;
147
+ color: #FFFFFF;
148
+ }
149
+
150
+ /*-------------------
151
+ Secondary
152
+ --------------------*/
153
+
154
+ .ui.secondary.buttons .button,
155
+ .ui.secondary.button {
156
+ background-color: #00B5AD;
157
+ color: #FFFFFF;
158
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
159
+ }
160
+ .ui.secondary.buttons .button:hover,
161
+ .ui.secondary.button:hover,
162
+ .ui.secondary.buttons .active.button,
163
+ .ui.secondary.button.active {
164
+ background-color: #009A93;
165
+ color: #FFFFFF;
166
+ }
167
+ .ui.secondary.buttons .button:active,
168
+ .ui.secondary.button:active {
169
+ background-color: #00847E;
170
+ color: #FFFFFF;
171
+ }
172
+
173
+ /*-------------------
174
+ Social
175
+ --------------------*/
176
+
177
+ /* Facebook */
178
+ .ui.facebook.button {
179
+ background-color: #3B579D;
180
+ color: #FFFFFF;
181
+ }
182
+ .ui.facebook.button:hover {
183
+ background-color: #3A59A9;
184
+ }
185
+ .ui.facebook.button:active {
186
+ background-color: #334F95;
187
+ }
188
+
189
+ /* Twitter */
190
+ .ui.twitter.button {
191
+ background-color: #00ACED;
192
+ color: #FFFFFF;
193
+ }
194
+ .ui.twitter.button:hover {
195
+ background-color: #00B9FF;
196
+ }
197
+ .ui.twitter.button:active {
198
+ background-color: #009EDA;
199
+ }
200
+
201
+ /*--------------
202
+ Icon
203
+ ---------------*/
204
+
205
+ .ui.button > .icon {
206
+ margin-right: 0.5em;
207
+
208
+ line-height: 1;
209
+
210
+ -webkit-transition:
211
+ opacity 0.1s ease
212
+ ;
213
+ -moz-transition:
214
+ opacity 0.1s ease
215
+ ;
216
+ -o-transition:
217
+ opacity 0.1s ease
218
+ ;
219
+ -ms-transition:
220
+ opacity 0.1s ease
221
+ ;
222
+ transition:
223
+ opacity 0.1s ease
224
+ ;
225
+ }
226
+
227
+
228
+
229
+ /*******************************
230
+ States
231
+ *******************************/
232
+
233
+
234
+ /*--------------
235
+ Active
236
+ ---------------*/
237
+
238
+ .ui.buttons .active.button,
239
+ .ui.active.button {
240
+ opacity: 1 !important;
241
+ background-color: #B0B0B0;
242
+
243
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0.1)));
244
+ background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
245
+ background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
246
+ background-image: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
247
+ background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
248
+
249
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
250
+ color: #FFFFFF;
251
+
252
+ -webkit-box-shadow:
253
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
254
+ ;
255
+ -moz-box-shadow:
256
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
257
+ ;
258
+ box-shadow:
259
+ 0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
260
+ ;
261
+ }
262
+
263
+
264
+ /*--------------
265
+ Hover
266
+ ---------------*/
267
+
268
+ .ui.button:hover,
269
+ .ui.active.button:hover {
270
+ opacity: 1 !important;
271
+ background-color: #A4A4A4;
272
+
273
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
274
+ color: #FFFFFF;
275
+ }
276
+ .ui.button:hover .icon,
277
+ .ui.button.hover .icon {
278
+ opacity: 0.85;
279
+ }
280
+
281
+ /*--------------
282
+ Down
283
+ ---------------*/
284
+
285
+ .ui.button:active,
286
+ .ui.active.button:active {
287
+ opacity: 1 !important;
288
+ background-color: #8C8C8C;
289
+
290
+ color: #FFFFFF;
291
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
292
+
293
+ -webkit-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
294
+ -moz-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
295
+ box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
296
+ }
297
+
298
+ /*--------------
299
+ Loading
300
+ ---------------*/
301
+
302
+ .ui.loading.button {
303
+ position: relative;
304
+ cursor: default;
305
+
306
+ background-color: #F3F3F3 !important;
307
+ color: transparent !important;
308
+ text-shadow: none !important;
309
+ background-image: none !important;
310
+
311
+ -webkit-box-shadow: none !important;
312
+ -moz-box-shadow: none !important;
313
+ box-shadow: none !important;
314
+
315
+ -webkit-transition: all 0s linear;
316
+ -moz-transition: all 0s linear;
317
+ -o-transition: all 0s linear;
318
+ -ms-transition: all 0s linear;
319
+ transition: all 0s linear;
320
+ }
321
+ .ui.loading.button:after {
322
+ position: absolute;
323
+ top: 0em;
324
+ left: 0em;
325
+ width: 100%;
326
+ height: 100%;
327
+ content: '';
328
+ background: transparent url(../images/loader-mini.gif) no-repeat 50% 50%;
329
+ }
330
+
331
+ .ui.labeled.icon.loading.button .icon {
332
+ background-color: transparent;
333
+ -webkit-box-shadow: none;
334
+ -moz-box-shadow: none;
335
+ box-shadow: none;
336
+ }
337
+
338
+ /*-------------------
339
+ Disabled
340
+ --------------------*/
341
+
342
+ .ui.disabled.button {
343
+ cursor: default;
344
+ color: #DDDDDD !important;
345
+ background-color: rgba(50, 50, 50, 0.05) !important;
346
+ background-image: none !important;
347
+
348
+ text-shadow: none !important;
349
+
350
+ -webkit-box-shadow: none !important;
351
+ -moz-box-shadow: none !important;
352
+ box-shadow: none !important;
353
+ }
354
+
355
+
356
+ /*******************************
357
+ Variations
358
+ *******************************/
359
+
360
+ /*-------------------
361
+ Floated
362
+ --------------------*/
363
+
364
+ .ui.left.floated.buttons,
365
+ .ui.left.floated.button {
366
+ float: left;
367
+ margin-right: 0.25em;
368
+ }
369
+ .ui.right.floated.buttons,
370
+ .ui.right.floated.button {
371
+ float: right;
372
+ margin-left: 0.25em;
373
+ }
374
+
375
+
376
+
377
+ /*-------------------
378
+ Sizes
379
+ --------------------*/
380
+
381
+ .ui.buttons .button,
382
+ .ui.button {
383
+ font-size: 1rem;
384
+ }
385
+
386
+ .ui.buttons.mini .button,
387
+ .ui.mini.button {
388
+ font-size: 0.8125rem;
389
+ padding: 0.6em 0.8em;
390
+ }
391
+ .ui.tiny.buttons .button,
392
+ .ui.tiny.button {
393
+ font-size: 0.875rem;
394
+ padding: 0.6em 0.8em;
395
+ }
396
+ .ui.small.buttons .button,
397
+ .ui.small.button {
398
+ font-size: 0.875rem;
399
+ }
400
+ .ui.large.buttons .button,
401
+ .ui.large.button {
402
+ font-size: 1.125rem;
403
+ }
404
+ .ui.big.buttons .button,
405
+ .ui.big.button {
406
+ font-size: 1.25rem;
407
+ }
408
+ .ui.huge.buttons .button,
409
+ .ui.huge.button {
410
+ font-size: 1.375rem;
411
+ }
412
+ .ui.massive.buttons .button,
413
+ .ui.massive.button {
414
+ font-size: 1.5rem;
415
+ font-weight: bold;
416
+ }
417
+
418
+ /* loading */
419
+ .ui.huge.loading.button:after {
420
+ background-image: url(../images/loader-small.gif);
421
+ }
422
+ .ui.massive.buttons .loading.button:after,
423
+ .ui.gigantic.buttons .loading.button:after,
424
+ .ui.massive.loading.button:after,
425
+ .ui.gigantic.loading.button:after {
426
+ background-image: url(../images/loader-medium.gif);
427
+ }
428
+
429
+ .ui.huge.loading.button:after,
430
+ .ui.huge.loading.button.active:after {
431
+ background-image: url(../images/loader-small.gif);
432
+ }
433
+ .ui.massive.buttons .loading.button:after,
434
+ .ui.gigantic.buttons .loading.button:after,
435
+ .ui.massive.loading.button:after,
436
+ .ui.gigantic.loading.button:after,
437
+ .ui.massive.buttons .loading.button.active:after,
438
+ .ui.gigantic.buttons .loading.button.active:after,
439
+ .ui.massive.loading.button.active:after,
440
+ .ui.gigantic.loading.button.active:after {
441
+ background-image: url(../images/loader-medium.gif);
442
+ }
443
+
444
+ /*--------------
445
+ Icon Only
446
+ ---------------*/
447
+ .ui.icon.buttons .button,
448
+ .ui.icon.button {
449
+ padding: 0.8em;
450
+ }
451
+ .ui.icon.buttons .button > .icon,
452
+ .ui.icon.button > .icon {
453
+ opacity: 1;
454
+ margin: 0em;
455
+ vertical-align: top;
456
+ }
457
+
458
+
459
+
460
+ /*-------------------
461
+ Basic
462
+ --------------------*/
463
+
464
+ .ui.basic.buttons .button,
465
+ .ui.basic.button {
466
+ background-color: transparent !important;
467
+ background-image: none;
468
+ color: #999999 !important;
469
+ font-weight: normal;
470
+ text-transform: none;
471
+ text-shadow: none !important;
472
+
473
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
474
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
475
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
476
+ }
477
+ .ui.basic.buttons {
478
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
479
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
480
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
481
+
482
+ -webkit-border-radius: 0.2em;
483
+ -moz-border-radius: 0.2em;
484
+ border-radius: 0.2em;
485
+ }
486
+
487
+ .ui.basic.buttons .button:hover,
488
+ .ui.basic.button:hover {
489
+ color: #7F7F7F !important;
490
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
491
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
492
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
493
+ }
494
+ .ui.basic.buttons .button:active,
495
+ .ui.basic.button:active {
496
+ background-color: rgba(0, 0, 0, 0.02) !important;
497
+ color: #7F7F7F !important;
498
+
499
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
500
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
501
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
502
+ }
503
+ .ui.basic.buttons .button.active,
504
+ .ui.basic.button.active {
505
+ background-color: rgba(0, 0, 0, 0.05);
506
+ color: #7F7F7F;
507
+
508
+ -webkit-box-shadow: 0px 0px 0px 1px #BDBDBD inset;
509
+ -moz-box-shadow: 0px 0px 0px 1px #BDBDBD inset;
510
+ box-shadow: 0px 0px 0px 1px #BDBDBD inset;
511
+ }
512
+ .ui.basic.buttons .button.active:hover,
513
+ .ui.basic.button.active:hover {
514
+ background-color: rgba(0, 0, 0, 0.1);
515
+ }
516
+
517
+ /* Basic Group */
518
+ .ui.basic.buttons .button {
519
+ border: none;
520
+
521
+ -webkit-box-shadow: none;
522
+ -moz-box-shadow: none;
523
+ box-shadow: none;
524
+ }
525
+ .ui.basic.buttons .button:hover,
526
+ .ui.basic.buttons .button:active {
527
+ -webkit-box-shadow: none;
528
+ -moz-box-shadow: none;
529
+ box-shadow: none;
530
+ }
531
+ .ui.basic.buttons .button.active {
532
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
533
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
534
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
535
+ }
536
+
537
+
538
+
539
+ /*--------------
540
+ Labeled Icon
541
+ ---------------*/
542
+
543
+ .ui.labeled.icon.buttons .button,
544
+ .ui.labeled.icon.button {
545
+ position: relative;
546
+ padding-left: 4em !important;
547
+ padding-right: 1.4em !important;
548
+ }
549
+
550
+ .ui.labeled.icon.buttons > .button > .icon,
551
+ .ui.labeled.icon.button > .icon {
552
+ position: absolute;
553
+ top: 0em;
554
+ left: 0em;
555
+
556
+ -webkit-box-sizing: border-box;
557
+ -moz-box-sizing: border-box;
558
+ -ms-box-sizing: border-box;
559
+ box-sizing: border-box;
560
+
561
+ width: 2.75em;
562
+ height: 100%;
563
+ padding-top: 0.8em;
564
+ background-color: rgba(0, 0, 0, 0.05);
565
+ text-align: center;
566
+
567
+ -webkit-border-radius: 0.2em 0px 0px 0.2em;
568
+ -moz-border-radius: 0.2em 0px 0px 0.2em;
569
+ border-radius: 0.2em 0px 0px 0.2em;
570
+
571
+ line-height: 1;
572
+
573
+ -webkit-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
574
+ -moz-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
575
+ box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
576
+ }
577
+
578
+ .ui.labeled.icon.buttons .button > .icon {
579
+ -webkit-border-radius: 0em;
580
+ -moz-border-radius: 0em;
581
+ border-radius: 0em;
582
+ }
583
+ .ui.labeled.icon.buttons .button:first-child > .icon {
584
+ border-top-left-radius: 0.2em;
585
+ border-bottom-left-radius: 0.2em;
586
+ }
587
+ .ui.labeled.icon.buttons .button:last-child > .icon {
588
+ border-top-right-radius: 0.2em;
589
+ border-bottom-right-radius: 0.2em;
590
+ }
591
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
592
+ -webkit-border-radius: 0em;
593
+ -moz-border-radius: 0em;
594
+ border-radius: 0em;
595
+ border-top-left-radius: 0.2em;
596
+ }
597
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
598
+ -webkit-border-radius: 0em;
599
+ -moz-border-radius: 0em;
600
+ border-radius: 0em;
601
+ border-bottom-left-radius: 0.2em;
602
+ }
603
+
604
+ .ui.right.labeled.icon.button {
605
+ padding-left: 1.4em !important;
606
+ padding-right: 4em !important;
607
+ }
608
+ .ui.left.fluid.labeled.icon.button,
609
+ .ui.right.fluid.labeled.icon.button {
610
+ padding-left: 1.4em !important;
611
+ padding-right: 1.4em !important;
612
+ }
613
+
614
+ .ui.right.labeled.icon.button .icon {
615
+ left: auto;
616
+ right: 0em;
617
+
618
+ -webkit-border-radius: 0em 0.2em 0.2em 0em;
619
+ -moz-border-radius: 0em 0.2em 0.2em 0em;
620
+ border-radius: 0em 0.2em 0.2em 0em;
621
+
622
+ -webkit-box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
623
+ -moz-box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
624
+ box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
625
+ }
626
+
627
+
628
+ /*--------------
629
+ Toggle
630
+ ---------------*/
631
+
632
+ /* Toggle (Modifies active state to give affordances) */
633
+ .ui.toggle.buttons .active.button,
634
+ .ui.buttons .button.toggle.active,
635
+ .ui.button.toggle.active {
636
+ background-color: #5BBD72 !important;
637
+ color: #FFFFFF !important;
638
+ }
639
+ .ui.button.toggle.active:hover {
640
+ background-color: #58CB73 !important;
641
+ color: #FFFFFF !important;
642
+ }
643
+
644
+ /*--------------
645
+ Bubbly
646
+ ---------------*/
647
+
648
+ .ui.circular.button {
649
+ -webkit-border-radius: 10em;
650
+ -moz-border-radius: 10em;
651
+ border-radius: 10em;
652
+ }
653
+
654
+
655
+ /*--------------
656
+ Attached
657
+ ---------------*/
658
+
659
+ .ui.attached.button {
660
+ display: block;
661
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
662
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
663
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
664
+ }
665
+ .ui.attached.top.button {
666
+
667
+ -webkit-border-radius: 0.2em 0.2em 0em 0em;
668
+ -moz-border-radius: 0.2em 0.2em 0em 0em;
669
+ border-radius: 0.2em 0.2em 0em 0em;
670
+ }
671
+ .ui.attached.bottom.button {
672
+ -webkit-border-radius: 0em 0em 0.2em 0.2em;
673
+ -moz-border-radius: 0em 0em 0.2em 0.2em;
674
+ border-radius: 0em 0em 0.2em 0.2em;
675
+ }
676
+ .ui.attached.left.button {
677
+ display: inline-block;
678
+ border-left: none;
679
+
680
+ padding-right: 0.75em;
681
+ text-align: right;
682
+
683
+ -webkit-border-radius: 0.2em 0em 0em 0.2em;
684
+ -moz-border-radius: 0.2em 0em 0em 0.2em;
685
+ border-radius: 0.2em 0em 0em 0.2em;
686
+ }
687
+ .ui.attached.right.button {
688
+ display: inline-block;
689
+
690
+ padding-left: 0.75em;
691
+ text-align: left;
692
+
693
+ -webkit-border-radius: 0em 0.2em 0.2em 0em;
694
+ -moz-border-radius: 0em 0.2em 0.2em 0em;
695
+ border-radius: 0em 0.2em 0.2em 0em;
696
+ }
697
+
698
+
699
+
700
+ /*-------------------
701
+ Or Buttons
702
+ --------------------*/
703
+
704
+ .ui.buttons .or {
705
+ position: relative;
706
+ float: left;
707
+ width: 0.3em;
708
+ height: 1em;
709
+ z-index: 3;
710
+ }
711
+ .ui.buttons .or:before {
712
+ position: absolute;
713
+ top: 50%;
714
+ left: 50%;
715
+ content: 'or';
716
+ background-color: #FFFFFF;
717
+
718
+ margin-top: -0.15em;
719
+ margin-left: -0.9em;
720
+
721
+ width: 1.8em;
722
+ height: 1.8em;
723
+
724
+ line-height: 1.66;
725
+ color: #AAAAAA;
726
+ font-style: normal;
727
+ font-weight: normal;
728
+ text-align: center;
729
+
730
+ -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
731
+ -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
732
+ box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
733
+
734
+ -moz-border-radius: 500px;
735
+ -webkit-border-radius: 500px;
736
+ border-radius: 500px;
737
+
738
+ -webkit-box-sizing: border-box;
739
+ -moz-box-sizing: border-box;
740
+ -ms-box-sizing: border-box;
741
+ box-sizing: border-box;
742
+ }
743
+ .ui.buttons .or:after {
744
+ position: absolute;
745
+ top: 0em;
746
+ left: 0em;
747
+ content: ' ';
748
+
749
+ width: 0.3em;
750
+ height: 1.8em;
751
+
752
+ background-color: transparent;
753
+ border-top: 0.6em solid #FFFFFF;
754
+ border-bottom: 0.6em solid #FFFFFF;
755
+ }
756
+
757
+ /* Fluid Or */
758
+ .ui.fluid.buttons .or {
759
+ width: 0em !important;
760
+ }
761
+ .ui.fluid.buttons .or:after{
762
+ display: none;
763
+ }
764
+
765
+
766
+ /*-------------------
767
+ Attached
768
+ --------------------*/
769
+
770
+ /* Plural Attached */
771
+ .attached.ui.buttons {
772
+ margin: 0px;
773
+ -webkit-border-radius: 4px 4px 0px 0px;
774
+ -moz-border-radius: 4px 4px 0px 0px;
775
+ border-radius: 4px 4px 0px 0px;
776
+ }
777
+ .attached.ui.buttons .button:first-child {
778
+ -webkit-border-radius: 4px 0px 0px 0px;
779
+ -moz-border-radius: 4px 0px 0px 0px;
780
+ border-radius: 4px 0px 0px 0px;
781
+ }
782
+ .attached.ui.buttons .button:last-child {
783
+ -webkit-border-radius: 0px 4px 0px 0px;
784
+ -moz-border-radius: 0px 4px 0px 0px;
785
+ border-radius: 0px 4px 0px 0px;
786
+ }
787
+
788
+ /* Bottom Side */
789
+ .bottom.attached.ui.buttons {
790
+ margin-top: -1px;
791
+ -webkit-border-radius: 0px 0px 4px 4px;
792
+ -moz-border-radius: 0px 0px 4px 4px;
793
+ border-radius: 0px 0px 4px 4px;
794
+ }
795
+ .bottom.attached.ui.buttons .button:first-child {
796
+ -webkit-border-radius: 0px 0px 0px 4px;
797
+ -moz-border-radius: 0px 0px 0px 4px;
798
+ border-radius: 0px 0px 0px 4px;
799
+ }
800
+ .bottom.attached.ui.buttons .button:last-child {
801
+ -webkit-border-radius: 0px 0px 4px 0px;
802
+ -moz-border-radius: 0px 0px 4px 0px;
803
+ border-radius: 0px 0px 4px 0px;
804
+ }
805
+
806
+ /* Left Side */
807
+ .left.attached.ui.buttons {
808
+ margin-left: -1px;
809
+ -webkit-border-radius: 0px 4px 4px 0px;
810
+ -moz-border-radius: 0px 4px 4px 0px;
811
+ border-radius: 0px 4px 4px 0px;
812
+ }
813
+ .left.attached.ui.buttons .button:first-child {
814
+ margin-left: -1px;
815
+ -webkit-border-radius: 0px 4px 0px 0px;
816
+ -moz-border-radius: 0px 4px 0px 0px;
817
+ border-radius: 0px 4px 0px 0px;
818
+ }
819
+ .left.attached.ui.buttons .button:last-child {
820
+ margin-left: -1px;
821
+ -webkit-border-radius: 0px 0px 4px 0px;
822
+ -moz-border-radius: 0px 0px 4px 0px;
823
+ border-radius: 0px 0px 4px 0px;
824
+ }
825
+ /* Right Side */
826
+ .right.attached.ui.buttons,
827
+ .right.attached.ui.buttons .button {
828
+ margin-right: -1px;
829
+ -webkit-border-radius: 4px 0px 0px 4px;
830
+ -moz-border-radius: 4px 0px 0px 4px;
831
+ border-radius: 4px 0px 0px 4px;
832
+ }
833
+ .right.attached.ui.buttons .button:first-child {
834
+ margin-left: -1px;
835
+ -webkit-border-radius: 4px 0px 0px 0px;
836
+ -moz-border-radius: 4px 0px 0px 0px;
837
+ border-radius: 4px 0px 0px 0px;
838
+ }
839
+ .right.attached.ui.buttons .button:last-child {
840
+ margin-left: -1px;
841
+ -webkit-border-radius: 0px 0px 0px 4px;
842
+ -moz-border-radius: 0px 0px 0px 4px;
843
+ border-radius: 0px 0px 0px 4px;
844
+ }
845
+
846
+
847
+
848
+ /* Fluid */
849
+ .ui.fluid.buttons,
850
+ .ui.button.fluid,
851
+ .ui.fluid.buttons > .button {
852
+ display: block;
853
+ width: 100%;
854
+ }
855
+ .ui.two.buttons > .button {
856
+ width: 50%;
857
+ }
858
+ .ui.three.buttons > .button {
859
+ width: 33.333%;
860
+ }
861
+ .ui.four.buttons > .button {
862
+ width: 25%;
863
+ }
864
+ .ui.five.buttons > .button {
865
+ width: 20%;
866
+ }
867
+ .ui.six.buttons > .button {
868
+ width: 16.666%;
869
+ }
870
+ .ui.seven.buttons > .button {
871
+ width: 14.285%;
872
+ }
873
+ .ui.eight.buttons > .button {
874
+ width: 12.500%;
875
+ }
876
+ .ui.nine.buttons > .button {
877
+ width: 11.11%;
878
+ }
879
+ .ui.ten.buttons > .button {
880
+ width: 10%;
881
+ }
882
+ .ui.eleven.buttons > .button {
883
+ width: 9.09%;
884
+ }
885
+ .ui.twelve.buttons > .button {
886
+ width: 8.3333%;
887
+ }
888
+
889
+ /* Fluid Vertical Buttons */
890
+ .ui.fluid.vertical.buttons,
891
+ .ui.fluid.vertical.buttons > .button {
892
+ width: auto;
893
+ -webkit-box-sizing: border-box;
894
+ -moz-box-sizing: border-box;
895
+ -ms-box-sizing: border-box;
896
+ box-sizing: border-box;
897
+ }
898
+ .ui.two.vertical.buttons > .button {
899
+ height: 50%;
900
+ }
901
+ .ui.three.vertical.buttons > .button {
902
+ height: 33.333%;
903
+ }
904
+ .ui.four.vertical.buttons > .button {
905
+ height: 25%;
906
+ }
907
+ .ui.five.vertical.buttons > .button {
908
+ height: 20%;
909
+ }
910
+ .ui.six.vertical.buttons > .button {
911
+ height: 16.666%;
912
+ }
913
+ .ui.seven.vertical.buttons > .button {
914
+ height: 14.285%;
915
+ }
916
+ .ui.eight.vertical.buttons > .button {
917
+ height: 12.500%;
918
+ }
919
+ .ui.nine.vertical.buttons > .button {
920
+ height: 11.11%;
921
+ }
922
+ .ui.ten.vertical.buttons > .button {
923
+ height: 10%;
924
+ }
925
+ .ui.eleven.vertical.buttons > .button {
926
+ height: 9.09%;
927
+ }
928
+ .ui.twelve.vertical.buttons > .button {
929
+ height: 8.3333%;
930
+ }
931
+
932
+
933
+ /*-------------------
934
+ Colors
935
+ --------------------*/
936
+
937
+ /*--- Black ---*/
938
+ .ui.black.buttons .button,
939
+ .ui.black.button {
940
+ background-color: #5C6166;
941
+ color: #FFFFFF;
942
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
943
+ }
944
+ .ui.black.buttons .button:hover,
945
+ .ui.black.button:hover {
946
+ background-color: #4C4C4C;
947
+ color: #FFFFFF;
948
+ }
949
+ .ui.black.buttons .button:active,
950
+ .ui.black.button:active {
951
+ background-color: #333333;
952
+ color: #FFFFFF;
953
+ }
954
+
955
+ /*--- Green ---*/
956
+ .ui.green.buttons .button,
957
+ .ui.green.button {
958
+ background-color: #5BBD72;
959
+ color: #FFFFFF;
960
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
961
+ }
962
+ .ui.green.buttons .button:hover,
963
+ .ui.green.button:hover,
964
+ .ui.green.buttons .active.button,
965
+ .ui.green.button.active {
966
+ background-color: #58cb73;
967
+ color: #FFFFFF;
968
+ }
969
+ .ui.green.buttons .button:active,
970
+ .ui.green.button:active {
971
+ background-color: #4CB164;
972
+ color: #FFFFFF;
973
+ }
974
+
975
+ /*--- Red ---*/
976
+ .ui.red.buttons .button,
977
+ .ui.red.button {
978
+ background-color: #D95C5C;
979
+ color: #FFFFFF;
980
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
981
+ }
982
+ .ui.red.buttons .button:hover,
983
+ .ui.red.button:hover,
984
+ .ui.red.buttons .active.button,
985
+ .ui.red.button.active {
986
+ background-color: #E75859;
987
+ color: #FFFFFF;
988
+ }
989
+ .ui.red.buttons .button:active,
990
+ .ui.red.button:active {
991
+ background-color: #D24B4C;
992
+ color: #FFFFFF;
993
+ }
994
+
995
+ /*--- Orange ---*/
996
+ .ui.orange.buttons .button,
997
+ .ui.orange.button {
998
+ background-color: #E96633;
999
+ color: #FFFFFF;
1000
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1001
+ }
1002
+ .ui.orange.buttons .button:hover,
1003
+ .ui.orange.button:hover,
1004
+ .ui.orange.buttons .active.button,
1005
+ .ui.orange.button.active {
1006
+ background-color: #FF7038;
1007
+ color: #FFFFFF;
1008
+ }
1009
+ .ui.orange.buttons .button:active,
1010
+ .ui.orange.button:active {
1011
+ background-color: #DA683B;
1012
+ color: #FFFFFF;
1013
+ }
1014
+
1015
+ /*--- Blue ---*/
1016
+ .ui.blue.buttons .button,
1017
+ .ui.blue.button {
1018
+ background-color: #6ECFF5;
1019
+ color: #FFFFFF;
1020
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1021
+ }
1022
+ .ui.blue.buttons .button:hover,
1023
+ .ui.blue.button:hover,
1024
+ .ui.blue.buttons .active.button,
1025
+ .ui.blue.button.active {
1026
+ background-color: #1AB8F3;
1027
+ color: #FFFFFF;
1028
+ }
1029
+ .ui.blue.buttons .button:active,
1030
+ .ui.blue.button:active {
1031
+ background-color: #0AA5DF;
1032
+ color: #FFFFFF;
1033
+ }
1034
+
1035
+ /*--- Purple ---*/
1036
+ .ui.purple.buttons .button,
1037
+ .ui.purple.button {
1038
+ background-color: #564F8A;
1039
+ color: #FFFFFF;
1040
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1041
+ }
1042
+ .ui.purple.buttons .button:hover,
1043
+ .ui.purple.button:hover,
1044
+ .ui.purple.buttons .active.button,
1045
+ .ui.purple.button.active {
1046
+ background-color: #3E3773;
1047
+ color: #FFFFFF;
1048
+ }
1049
+ .ui.purple.buttons .button:active,
1050
+ .ui.purple.button:active {
1051
+ background-color: #2E2860;
1052
+ color: #FFFFFF;
1053
+ }
1054
+
1055
+ /*--- Teal ---*/
1056
+ .ui.teal.buttons .button,
1057
+ .ui.teal.button {
1058
+ background-color: #00B5AD;
1059
+ color: #FFFFFF;
1060
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1061
+ }
1062
+ .ui.teal.buttons .button:hover,
1063
+ .ui.teal.button:hover,
1064
+ .ui.teal.buttons .active.button,
1065
+ .ui.teal.button.active {
1066
+ background-color: #009A93;
1067
+ color: #FFFFFF;
1068
+ }
1069
+ .ui.teal.buttons .button:active,
1070
+ .ui.teal.button:active {
1071
+ background-color: #00847E;
1072
+ color: #FFFFFF;
1073
+ }
1074
+
1075
+ /*---------------
1076
+ Positive
1077
+ ----------------*/
1078
+
1079
+ .ui.positive.buttons .button,
1080
+ .ui.positive.button {
1081
+ background-color: #5BBD72 !important;
1082
+ color: #FFFFFF;
1083
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1084
+ }
1085
+ .ui.positive.buttons .button:hover,
1086
+ .ui.positive.button:hover,
1087
+ .ui.positive.buttons .active.button,
1088
+ .ui.positive.button.active {
1089
+ background-color: #58CB73 !important;
1090
+ color: #FFFFFF;
1091
+ }
1092
+ .ui.positive.buttons .button:active,
1093
+ .ui.positive.button:active {
1094
+ background-color: #4CB164 !important;
1095
+ color: #FFFFFF;
1096
+ }
1097
+
1098
+
1099
+ /*---------------
1100
+ Negative
1101
+ ----------------*/
1102
+ .ui.negative.buttons .button,
1103
+ .ui.negative.button {
1104
+ background-color: #D95C5C !important;
1105
+ color: #FFFFFF;
1106
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
1107
+ }
1108
+ .ui.negative.buttons .button:hover,
1109
+ .ui.negative.button:hover,
1110
+ .ui.negative.buttons .active.button,
1111
+ .ui.negative.button.active {
1112
+ background-color: #E75859 !important;
1113
+ color: #FFFFFF;
1114
+ }
1115
+ .ui.negative.buttons .button:active,
1116
+ .ui.negative.button:active {
1117
+ background-color: #D24B4C !important;
1118
+ color: #FFFFFF;
1119
+ }
1120
+
1121
+
1122
+ /*******************************
1123
+ Groups
1124
+ *******************************/
1125
+
1126
+ .ui.buttons {
1127
+ display: inline-block;
1128
+ vertical-align: middle;
1129
+ }
1130
+ .ui.buttons:after {
1131
+ content: ".";
1132
+ display: block;
1133
+ height: 0;
1134
+ clear: both;
1135
+ visibility: hidden;
1136
+ }
1137
+ .ui.buttons .button:first-child {
1138
+ border-left: none;
1139
+ }
1140
+
1141
+ .ui.buttons .button {
1142
+ float: left;
1143
+ -webkit-border-radius: 0em;
1144
+ -moz-border-radius: 0em;
1145
+ border-radius: 0em;
1146
+ border-left: 1px solid rgba(0, 0, 0, 0.05);
1147
+ }
1148
+ .ui.buttons .button:first-child {
1149
+ margin-left: 0em;
1150
+ border-top-left-radius: 0.2em;
1151
+ border-bottom-left-radius: 0.2em;
1152
+ }
1153
+ .ui.buttons .button:last-child {
1154
+ border-top-right-radius: 0.2em;
1155
+ border-bottom-right-radius: 0.2em;
1156
+ }
1157
+
1158
+ /* Vertical Style */
1159
+ .ui.vertical.buttons {
1160
+ display: inline-block;
1161
+ }
1162
+ .ui.vertical.buttons .button {
1163
+ display: block;
1164
+ float: none;
1165
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
1166
+ border-left: none;
1167
+ box-shadow: none;
1168
+ }
1169
+ .ui.vertical.buttons .button:first-child,
1170
+ .ui.vertical.buttons .mini.button:first-child,
1171
+ .ui.vertical.buttons .tiny.button:first-child,
1172
+ .ui.vertical.buttons .small.button:first-child,
1173
+ .ui.vertical.buttons .massive.button:first-child,
1174
+ .ui.vertical.buttons .huge.button:first-child {
1175
+ margin-top: 0px;
1176
+ -moz-border-radius: 0.2em 0.2em 0px 0px;
1177
+ -webkit-border-radius: 0.2em 0.2em 0px 0px;
1178
+ border-radius: 0.2em 0.2em 0px 0px;
1179
+ }
1180
+ .ui.vertical.buttons .button:last-child,
1181
+ .ui.vertical.buttons .mini.button:last-child,
1182
+ .ui.vertical.buttons .tiny.button:last-child,
1183
+ .ui.vertical.buttons .small.button:last-child,
1184
+ .ui.vertical.buttons .massive.button:last-child,
1185
+ .ui.vertical.buttons .huge.button:last-child,
1186
+ .ui.vertical.buttons .gigantic.button:last-child {
1187
+ -moz-border-radius: 0px 0px 0.2em 0.2em;
1188
+ -webkit-border-radius: 0px 0px 0.2em 0.2em;
1189
+ border-radius: 0px 0px 0.2em 0.2em;
1190
+ }