fomantic-ui-sass 2.6.4 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +1 -0
  4. data/.rubocop_todo.yml +102 -0
  5. data/.travis.yml +9 -3
  6. data/README.md +4 -2
  7. data/Rakefile +25 -3
  8. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  9. data/app/assets/fonts/semantic-ui/brand-icons.svg +178 -11
  10. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  14. data/app/assets/fonts/semantic-ui/icons.svg +1138 -92
  15. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  19. data/app/assets/fonts/semantic-ui/outline-icons.svg +127 -26
  20. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  23. data/app/assets/javascripts/semantic-ui.js +1 -1
  24. data/app/assets/javascripts/semantic-ui/accordion.js +5 -1
  25. data/app/assets/javascripts/semantic-ui/api.js +9 -2
  26. data/app/assets/javascripts/semantic-ui/calendar.js +25 -12
  27. data/app/assets/javascripts/semantic-ui/checkbox.js +39 -2
  28. data/app/assets/javascripts/semantic-ui/dimmer.js +25 -5
  29. data/app/assets/javascripts/semantic-ui/dropdown.js +130 -47
  30. data/app/assets/javascripts/semantic-ui/embed.js +5 -1
  31. data/app/assets/javascripts/semantic-ui/form.js +24 -19
  32. data/app/assets/javascripts/semantic-ui/modal.js +33 -17
  33. data/app/assets/javascripts/semantic-ui/nag.js +5 -1
  34. data/app/assets/javascripts/semantic-ui/popup.js +10 -5
  35. data/app/assets/javascripts/semantic-ui/progress.js +5 -1
  36. data/app/assets/javascripts/semantic-ui/rating.js +21 -6
  37. data/app/assets/javascripts/semantic-ui/search.js +43 -27
  38. data/app/assets/javascripts/semantic-ui/shape.js +5 -1
  39. data/app/assets/javascripts/semantic-ui/sidebar.js +7 -3
  40. data/app/assets/javascripts/semantic-ui/site.js +6 -2
  41. data/app/assets/javascripts/semantic-ui/slider.js +1216 -0
  42. data/app/assets/javascripts/semantic-ui/state.js +5 -1
  43. data/app/assets/javascripts/semantic-ui/sticky.js +5 -1
  44. data/app/assets/javascripts/semantic-ui/tab.js +10 -3
  45. data/app/assets/javascripts/semantic-ui/toast.js +6 -2
  46. data/app/assets/javascripts/semantic-ui/transition.js +6 -2
  47. data/app/assets/javascripts/semantic-ui/visibility.js +6 -2
  48. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +7 -7
  49. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +59 -83
  50. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +110 -124
  51. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +262 -237
  52. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +155 -118
  53. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +332 -145
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2281 -2415
  55. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  56. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +10 -10
  57. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +81 -81
  58. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +178 -191
  59. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +71 -103
  60. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +8 -8
  61. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +61 -40
  62. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1087 -444
  63. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +69 -69
  64. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +510 -155
  65. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +20 -14
  66. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +26 -26
  67. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +8 -8
  68. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +180 -216
  69. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +34 -39
  70. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +114 -0
  71. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  72. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +11 -20
  73. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +16 -16
  74. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +1 -1
  75. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +23 -23
  77. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +32 -32
  78. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +128 -155
  79. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +13 -13
  80. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +50 -48
  81. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +15 -15
  82. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +50 -50
  83. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +30 -44
  84. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +137 -111
  85. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +24 -28
  86. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +6 -6
  87. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +29 -29
  88. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +768 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +3 -3
  90. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +10 -14
  91. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +27 -16
  92. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  93. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +6 -6
  94. data/app/assets/stylesheets/semantic-ui/views/_card.scss +103 -133
  95. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +26 -26
  96. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +27 -27
  97. data/app/assets/stylesheets/semantic-ui/views/_item.scss +54 -54
  98. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +138 -108
  99. data/app/helpers/semantic_breadcrumbs_helper.rb +1 -1
  100. data/app/helpers/semantic_flash_helper.rb +4 -2
  101. data/app/helpers/semantic_icon_helper.rb +1 -1
  102. data/fomantic-ui-sass.gemspec +20 -19
  103. data/gemfiles/rails_5.0.gemfile +5 -0
  104. data/gemfiles/rails_5.1.gemfile +5 -0
  105. data/gemfiles/rails_5.2.gemfile +5 -0
  106. data/lib/fomantic-ui-sass.rb +3 -4
  107. data/lib/fomantic/ui/sass/breadcrumbs.rb +2 -4
  108. data/lib/fomantic/ui/sass/engine.rb +3 -3
  109. data/lib/fomantic/ui/sass/version.rb +2 -2
  110. data/spec/dummy/Rakefile +1 -1
  111. data/spec/dummy/bin/bundle +1 -1
  112. data/spec/dummy/bin/rails +1 -1
  113. data/spec/dummy/bin/rake +0 -0
  114. data/spec/dummy/config.ru +1 -1
  115. data/spec/dummy/config/application.rb +5 -6
  116. data/spec/dummy/config/boot.rb +3 -3
  117. data/spec/dummy/config/environment.rb +1 -1
  118. data/spec/dummy/config/environments/test.rb +1 -1
  119. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +30 -32
  120. data/spec/helpers/semantic_flash_helper_spec.rb +15 -16
  121. data/spec/helpers/semantic_icon_helper_spec.rb +10 -10
  122. data/spec/spec_helper.rb +4 -6
  123. data/tasks/converter.rb +61 -73
  124. data/templates/project/manifest.rb +1 -2
  125. metadata +45 -23
  126. data/app/assets/javascripts/semantic-ui/range.js +0 -278
  127. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +0 -192
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Header
2
+ * # Semantic UI 2.7.0 - Header
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -17,8 +17,8 @@
17
17
  /* Standard */
18
18
  .ui.header {
19
19
  border: none;
20
- margin: calc(2rem - 0.1428571428571429em) 0em 1rem;
21
- padding: 0em 0em;
20
+ margin: calc(2rem - 0.1428571428571429em) 0 1rem;
21
+ padding: 0 0;
22
22
  font-family: $font-family;
23
23
  font-weight: bold;
24
24
  line-height: 1.28571429em;
@@ -29,7 +29,7 @@
29
29
  margin-top: -0.14285714em;
30
30
  }
31
31
  .ui.header:last-child {
32
- margin-bottom: 0em;
32
+ margin-bottom: 0;
33
33
  }
34
34
 
35
35
  /*--------------
@@ -39,8 +39,8 @@
39
39
  .ui.header .sub.header {
40
40
  display: block;
41
41
  font-weight: normal;
42
- padding: 0em;
43
- margin: 0em;
42
+ padding: 0;
43
+ margin: 0;
44
44
  font-size: 1rem;
45
45
  line-height: 1.2em;
46
46
  color: rgba(0, 0, 0, 0.6);
@@ -54,14 +54,14 @@
54
54
  display: table-cell;
55
55
  opacity: 1;
56
56
  font-size: 1.5em;
57
- padding-top: 0em;
57
+ padding-top: 0;
58
58
  vertical-align: middle;
59
59
  }
60
60
 
61
61
  /* With Text Node */
62
62
  .ui.header .icon:only-child {
63
63
  display: inline-block;
64
- padding: 0em;
64
+ padding: 0;
65
65
  margin-right: 0.75rem;
66
66
  }
67
67
 
@@ -117,7 +117,7 @@
117
117
 
118
118
  /* Positioning */
119
119
  .ui.header + p {
120
- margin-top: 0em;
120
+ margin-top: 0;
121
121
  }
122
122
 
123
123
 
@@ -206,7 +206,7 @@ h5.ui.header .sub.header {
206
206
  ---------------*/
207
207
 
208
208
  .ui.sub.header {
209
- padding: 0em;
209
+ padding: 0;
210
210
  margin-bottom: 0.14285714rem;
211
211
  font-weight: bold;
212
212
  font-size: 0.85714286em;
@@ -230,17 +230,17 @@ h5.ui.header .sub.header {
230
230
  .ui.icon.header {
231
231
  display: inline-block;
232
232
  text-align: center;
233
- margin: 2rem 0em 1rem;
233
+ margin: 2rem 0 1rem;
234
234
  }
235
235
  .ui.icon.header:after {
236
236
  content: '';
237
237
  display: block;
238
- height: 0px;
238
+ height: 0;
239
239
  clear: both;
240
240
  visibility: hidden;
241
241
  }
242
242
  .ui.icon.header:first-child {
243
- margin-top: 0em;
243
+ margin-top: 0;
244
244
  }
245
245
  .ui.icon.header .icon {
246
246
  float: none;
@@ -248,17 +248,17 @@ h5.ui.header .sub.header {
248
248
  width: auto;
249
249
  height: auto;
250
250
  line-height: 1;
251
- padding: 0em;
251
+ padding: 0;
252
252
  font-size: 3em;
253
- margin: 0em auto 0.5rem;
253
+ margin: 0 auto 0.5rem;
254
254
  opacity: 1;
255
255
  }
256
256
  .ui.icon.header .corner.icon {
257
- font-size: calc(1.35em);
257
+ font-size: calc(3em * 0.45);
258
258
  }
259
259
  .ui.icon.header .content {
260
260
  display: block;
261
- padding: 0em;
261
+ padding: 0;
262
262
  }
263
263
  .ui.icon.header .circular.icon {
264
264
  font-size: 2em;
@@ -267,7 +267,7 @@ h5.ui.header .sub.header {
267
267
  font-size: 2em;
268
268
  }
269
269
  .ui.block.icon.header .icon {
270
- margin-bottom: 0em;
270
+ margin-bottom: 0;
271
271
  }
272
272
  .ui.icon.header.aligned {
273
273
  margin-left: auto;
@@ -321,285 +321,275 @@ h5.ui.header .sub.header {
321
321
  Colors
322
322
  --------------------*/
323
323
 
324
-
325
- /*--- Primary ---*/
326
-
327
324
  .ui.primary.header {
328
- color: #2185D0 !important;
325
+ color: #2185D0;
329
326
  }
330
327
  a.ui.primary.header:hover {
331
- color: #2185D0 !important;
328
+ color: #1678c2;
332
329
  }
333
330
  .ui.primary.dividing.header {
334
331
  border-bottom: 2px solid #2185D0;
335
332
  }
336
-
337
- /* Inverted */
338
- .ui.inverted.primary.header {
339
- color: #54C8FF !important;
333
+ .ui.inverted.primary.header.header.header {
334
+ color: #54C8FF;
340
335
  }
341
- a.ui.inverted.primary.header:hover {
342
- color: #54C8FF !important;
336
+ a.ui.inverted.primary.header.header.header:hover {
337
+ color: #21b8ff;
338
+ }
339
+ .ui.inverted.primary.dividing.header {
340
+ border-bottom: 2px solid #54C8FF;
343
341
  }
344
-
345
- /*--- Secondary ---*/
346
-
347
342
  .ui.secondary.header {
348
- color: #1B1C1D !important;
343
+ color: #1B1C1D;
349
344
  }
350
345
  a.ui.secondary.header:hover {
351
- color: #1B1C1D !important;
346
+ color: #27292a;
352
347
  }
353
348
  .ui.secondary.dividing.header {
354
349
  border-bottom: 2px solid #1B1C1D;
355
350
  }
356
-
357
- /* Inverted */
358
- .ui.inverted.secondary.header {
359
- color: #545454 !important;
351
+ .ui.inverted.secondary.header.header.header {
352
+ color: #545454;
360
353
  }
361
- a.ui.inverted.secondary.header:hover {
362
- color: #545454 !important;
354
+ a.ui.inverted.secondary.header.header.header:hover {
355
+ color: #6e6e6e;
356
+ }
357
+ .ui.inverted.secondary.dividing.header {
358
+ border-bottom: 2px solid #545454;
363
359
  }
364
-
365
- /*--- Red ---*/
366
-
367
360
  .ui.red.header {
368
- color: #DB2828 !important;
361
+ color: #DB2828;
369
362
  }
370
363
  a.ui.red.header:hover {
371
- color: #d01919 !important;
364
+ color: #d01919;
372
365
  }
373
366
  .ui.red.dividing.header {
374
367
  border-bottom: 2px solid #DB2828;
375
368
  }
376
-
377
- /* Inverted */
378
- .ui.inverted.red.header {
379
- color: #FF695E !important;
369
+ .ui.inverted.red.header.header.header {
370
+ color: #FF695E;
380
371
  }
381
- a.ui.inverted.red.header:hover {
382
- color: #ff5144 !important;
372
+ a.ui.inverted.red.header.header.header:hover {
373
+ color: #ff392b;
374
+ }
375
+ .ui.inverted.red.dividing.header {
376
+ border-bottom: 2px solid #FF695E;
383
377
  }
384
-
385
- /*--- Orange ---*/
386
-
387
378
  .ui.orange.header {
388
- color: #F2711C !important;
379
+ color: #F2711C;
389
380
  }
390
381
  a.ui.orange.header:hover {
391
- color: #f26202 !important;
382
+ color: #f26202;
392
383
  }
393
384
  .ui.orange.dividing.header {
394
385
  border-bottom: 2px solid #F2711C;
395
386
  }
396
-
397
- /* Inverted */
398
- .ui.inverted.orange.header {
399
- color: #FF851B !important;
400
- }
401
- a.ui.inverted.orange.header:hover {
402
- color: #ff7701 !important;
403
- }
404
-
405
- /*--- Olive ---*/
406
-
407
- .ui.olive.header {
408
- color: #B5CC18 !important;
409
- }
410
- a.ui.olive.header:hover {
411
- color: #a7bd0d !important;
412
- }
413
- .ui.olive.dividing.header {
414
- border-bottom: 2px solid #B5CC18;
387
+ .ui.inverted.orange.header.header.header {
388
+ color: #FF851B;
415
389
  }
416
-
417
- /* Inverted */
418
- .ui.inverted.olive.header {
419
- color: #D9E778 !important;
390
+ a.ui.inverted.orange.header.header.header:hover {
391
+ color: #e76b00;
420
392
  }
421
- a.ui.inverted.olive.header:hover {
422
- color: #d8ea5c !important;
393
+ .ui.inverted.orange.dividing.header {
394
+ border-bottom: 2px solid #FF851B;
423
395
  }
424
-
425
- /*--- Yellow ---*/
426
-
427
396
  .ui.yellow.header {
428
- color: #FBBD08 !important;
397
+ color: #FBBD08;
429
398
  }
430
399
  a.ui.yellow.header:hover {
431
- color: #eaae00 !important;
400
+ color: #eaae00;
432
401
  }
433
402
  .ui.yellow.dividing.header {
434
403
  border-bottom: 2px solid #FBBD08;
435
404
  }
436
-
437
- /* Inverted */
438
- .ui.inverted.yellow.header {
439
- color: #FFE21F !important;
405
+ .ui.inverted.yellow.header.header.header {
406
+ color: #FFE21F;
440
407
  }
441
- a.ui.inverted.yellow.header:hover {
442
- color: #ffdf05 !important;
408
+ a.ui.inverted.yellow.header.header.header:hover {
409
+ color: #ebcd00;
410
+ }
411
+ .ui.inverted.yellow.dividing.header {
412
+ border-bottom: 2px solid #FFE21F;
413
+ }
414
+ .ui.olive.header {
415
+ color: #B5CC18;
416
+ }
417
+ a.ui.olive.header:hover {
418
+ color: #a7bd0d;
419
+ }
420
+ .ui.olive.dividing.header {
421
+ border-bottom: 2px solid #B5CC18;
422
+ }
423
+ .ui.inverted.olive.header.header.header {
424
+ color: #D9E778;
425
+ }
426
+ a.ui.inverted.olive.header.header.header:hover {
427
+ color: #d2e745;
428
+ }
429
+ .ui.inverted.olive.dividing.header {
430
+ border-bottom: 2px solid #D9E778;
443
431
  }
444
-
445
- /*--- Green ---*/
446
-
447
432
  .ui.green.header {
448
- color: #21BA45 !important;
433
+ color: #21BA45;
449
434
  }
450
435
  a.ui.green.header:hover {
451
- color: #16ab39 !important;
436
+ color: #16ab39;
452
437
  }
453
438
  .ui.green.dividing.header {
454
439
  border-bottom: 2px solid #21BA45;
455
440
  }
456
-
457
- /* Inverted */
458
- .ui.inverted.green.header {
459
- color: #2ECC40 !important;
441
+ .ui.inverted.green.header.header.header {
442
+ color: #2ECC40;
460
443
  }
461
- a.ui.inverted.green.header:hover {
462
- color: #22be34 !important;
444
+ a.ui.inverted.green.header.header.header:hover {
445
+ color: #1ea92e;
446
+ }
447
+ .ui.inverted.green.dividing.header {
448
+ border-bottom: 2px solid #2ECC40;
463
449
  }
464
-
465
- /*--- Teal ---*/
466
-
467
450
  .ui.teal.header {
468
- color: #00B5AD !important;
451
+ color: #00B5AD;
469
452
  }
470
453
  a.ui.teal.header:hover {
471
- color: #009c95 !important;
454
+ color: #009c95;
472
455
  }
473
456
  .ui.teal.dividing.header {
474
457
  border-bottom: 2px solid #00B5AD;
475
458
  }
476
-
477
- /* Inverted */
478
- .ui.inverted.teal.header {
479
- color: #6DFFFF !important;
459
+ .ui.inverted.teal.header.header.header {
460
+ color: #6DFFFF;
480
461
  }
481
- a.ui.inverted.teal.header:hover {
482
- color: #54ffff !important;
462
+ a.ui.inverted.teal.header.header.header:hover {
463
+ color: #3affff;
464
+ }
465
+ .ui.inverted.teal.dividing.header {
466
+ border-bottom: 2px solid #6DFFFF;
483
467
  }
484
-
485
- /*--- Blue ---*/
486
-
487
468
  .ui.blue.header {
488
- color: #2185D0 !important;
469
+ color: #2185D0;
489
470
  }
490
471
  a.ui.blue.header:hover {
491
- color: #1678c2 !important;
472
+ color: #1678c2;
492
473
  }
493
474
  .ui.blue.dividing.header {
494
475
  border-bottom: 2px solid #2185D0;
495
476
  }
496
-
497
- /* Inverted */
498
- .ui.inverted.blue.header {
499
- color: #54C8FF !important;
477
+ .ui.inverted.blue.header.header.header {
478
+ color: #54C8FF;
500
479
  }
501
- a.ui.inverted.blue.header:hover {
502
- color: #3ac0ff !important;
480
+ a.ui.inverted.blue.header.header.header:hover {
481
+ color: #21b8ff;
482
+ }
483
+ .ui.inverted.blue.dividing.header {
484
+ border-bottom: 2px solid #54C8FF;
503
485
  }
504
-
505
- /*--- Violet ---*/
506
-
507
486
  .ui.violet.header {
508
- color: #6435C9 !important;
487
+ color: #6435C9;
509
488
  }
510
489
  a.ui.violet.header:hover {
511
- color: #5829bb !important;
490
+ color: #5829bb;
512
491
  }
513
492
  .ui.violet.dividing.header {
514
493
  border-bottom: 2px solid #6435C9;
515
494
  }
516
-
517
- /* Inverted */
518
- .ui.inverted.violet.header {
519
- color: #A291FB !important;
495
+ .ui.inverted.violet.header.header.header {
496
+ color: #A291FB;
520
497
  }
521
- a.ui.inverted.violet.header:hover {
522
- color: #8a73ff !important;
498
+ a.ui.inverted.violet.header.header.header:hover {
499
+ color: #745aff;
500
+ }
501
+ .ui.inverted.violet.dividing.header {
502
+ border-bottom: 2px solid #A291FB;
523
503
  }
524
-
525
- /*--- Purple ---*/
526
-
527
504
  .ui.purple.header {
528
- color: #A333C8 !important;
505
+ color: #A333C8;
529
506
  }
530
507
  a.ui.purple.header:hover {
531
- color: #9627ba !important;
508
+ color: #9627ba;
532
509
  }
533
510
  .ui.purple.dividing.header {
534
511
  border-bottom: 2px solid #A333C8;
535
512
  }
536
-
537
- /* Inverted */
538
- .ui.inverted.purple.header {
539
- color: #DC73FF !important;
513
+ .ui.inverted.purple.header.header.header {
514
+ color: #DC73FF;
540
515
  }
541
- a.ui.inverted.purple.header:hover {
542
- color: #d65aff !important;
516
+ a.ui.inverted.purple.header.header.header:hover {
517
+ color: #cf40ff;
518
+ }
519
+ .ui.inverted.purple.dividing.header {
520
+ border-bottom: 2px solid #DC73FF;
543
521
  }
544
-
545
- /*--- Pink ---*/
546
-
547
522
  .ui.pink.header {
548
- color: #E03997 !important;
523
+ color: #E03997;
549
524
  }
550
525
  a.ui.pink.header:hover {
551
- color: #e61a8d !important;
526
+ color: #e61a8d;
552
527
  }
553
528
  .ui.pink.dividing.header {
554
529
  border-bottom: 2px solid #E03997;
555
530
  }
556
-
557
- /* Inverted */
558
- .ui.inverted.pink.header {
559
- color: #FF8EDF !important;
531
+ .ui.inverted.pink.header.header.header {
532
+ color: #FF8EDF;
560
533
  }
561
- a.ui.inverted.pink.header:hover {
562
- color: #ff74d8 !important;
534
+ a.ui.inverted.pink.header.header.header:hover {
535
+ color: #ff5bd1;
536
+ }
537
+ .ui.inverted.pink.dividing.header {
538
+ border-bottom: 2px solid #FF8EDF;
563
539
  }
564
-
565
- /*--- Brown ---*/
566
-
567
540
  .ui.brown.header {
568
- color: #A5673F !important;
541
+ color: #A5673F;
569
542
  }
570
543
  a.ui.brown.header:hover {
571
- color: #975b33 !important;
544
+ color: #975b33;
572
545
  }
573
546
  .ui.brown.dividing.header {
574
547
  border-bottom: 2px solid #A5673F;
575
548
  }
576
-
577
- /* Inverted */
578
- .ui.inverted.brown.header {
579
- color: #D67C1C !important;
549
+ .ui.inverted.brown.header.header.header {
550
+ color: #D67C1C;
580
551
  }
581
- a.ui.inverted.brown.header:hover {
582
- color: #c86f11 !important;
552
+ a.ui.inverted.brown.header.header.header:hover {
553
+ color: #b0620f;
554
+ }
555
+ .ui.inverted.brown.dividing.header {
556
+ border-bottom: 2px solid #D67C1C;
583
557
  }
584
-
585
- /*--- Grey ---*/
586
-
587
558
  .ui.grey.header {
588
- color: #767676 !important;
559
+ color: #767676;
589
560
  }
590
561
  a.ui.grey.header:hover {
591
- color: #838383 !important;
562
+ color: #838383;
592
563
  }
593
564
  .ui.grey.dividing.header {
594
565
  border-bottom: 2px solid #767676;
595
566
  }
596
-
597
- /* Inverted */
598
- .ui.inverted.grey.header {
599
- color: #DCDDDE !important;
567
+ .ui.inverted.grey.header.header.header {
568
+ color: #DCDDDE;
569
+ }
570
+ a.ui.inverted.grey.header.header.header:hover {
571
+ color: #c2c4c5;
572
+ }
573
+ .ui.inverted.grey.dividing.header {
574
+ border-bottom: 2px solid #DCDDDE;
575
+ }
576
+ .ui.black.header {
577
+ color: #1B1C1D;
578
+ }
579
+ a.ui.black.header:hover {
580
+ color: #27292a;
581
+ }
582
+ .ui.black.dividing.header {
583
+ border-bottom: 2px solid #1B1C1D;
584
+ }
585
+ .ui.inverted.black.header.header.header {
586
+ color: #545454;
587
+ }
588
+ a.ui.inverted.black.header.header.header:hover {
589
+ color: #000000;
600
590
  }
601
- a.ui.inverted.grey.header:hover {
602
- color: #cfd0d2 !important;
591
+ .ui.inverted.black.dividing.header {
592
+ border-bottom: 2px solid #545454;
603
593
  }
604
594
 
605
595
  /*-------------------
@@ -632,12 +622,12 @@ a.ui.inverted.grey.header:hover {
632
622
  .ui.floated.header,
633
623
  .ui[class*="left floated"].header {
634
624
  float: left;
635
- margin-top: 0em;
625
+ margin-top: 0;
636
626
  margin-right: 0.5em;
637
627
  }
638
628
  .ui[class*="right floated"].header {
639
629
  float: right;
640
- margin-top: 0em;
630
+ margin-top: 0;
641
631
  margin-left: 0.5em;
642
632
  }
643
633
 
@@ -646,7 +636,7 @@ a.ui.inverted.grey.header:hover {
646
636
  --------------------*/
647
637
 
648
638
  .ui.fitted.header {
649
- padding: 0em;
639
+ padding: 0;
650
640
  }
651
641
 
652
642
  /*-------------------
@@ -661,7 +651,7 @@ a.ui.inverted.grey.header:hover {
661
651
  padding-bottom: 0.21428571rem;
662
652
  }
663
653
  .ui.dividing.header .icon {
664
- margin-bottom: 0em;
654
+ margin-bottom: 0;
665
655
  }
666
656
  .ui.inverted.dividing.header {
667
657
  border-bottom-color: rgba(255, 255, 255, 0.1);
@@ -702,14 +692,11 @@ a.ui.inverted.grey.header:hover {
702
692
  .ui.attached.header {
703
693
  background: #FFFFFF;
704
694
  padding: 0.78571429rem 1rem;
705
- margin-top: 0em;
706
- margin-bottom: 0em;
707
- margin-left: -1px;
708
- margin-right: -1px;
695
+ margin: 0 -1px 0 -1px;
709
696
  -webkit-box-shadow: none;
710
697
  box-shadow: none;
711
698
  border: 1px solid #D4D4D5;
712
- border-radius: 0em;
699
+ border-radius: 0;
713
700
  }
714
701
  .ui.attached.block.header {
715
702
  background: #F3F4F5;
@@ -718,10 +705,10 @@ a.ui.inverted.grey.header:hover {
718
705
  border-top: none;
719
706
  }
720
707
  .ui.top.attached.header {
721
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
708
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
722
709
  }
723
710
  .ui.bottom.attached.header {
724
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
711
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
725
712
  }
726
713
 
727
714
  /* Attached Sizes */