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 - Step
2
+ * # Semantic UI 2.7.0 - Step
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -24,7 +24,7 @@
24
24
  -webkit-box-align: stretch;
25
25
  -ms-flex-align: stretch;
26
26
  align-items: stretch;
27
- margin: 1em 0em;
27
+ margin: 1em 0;
28
28
  background: '';
29
29
  -webkit-box-shadow: none;
30
30
  box-shadow: none;
@@ -35,12 +35,12 @@
35
35
 
36
36
  /* First Steps */
37
37
  .ui.steps:first-child {
38
- margin-top: 0em;
38
+ margin-top: 0;
39
39
  }
40
40
 
41
41
  /* Last Steps */
42
42
  .ui.steps:last-child {
43
- margin-bottom: 0em;
43
+ margin-bottom: 0;
44
44
  }
45
45
 
46
46
 
@@ -69,13 +69,13 @@
69
69
  -webkit-box-pack: center;
70
70
  -ms-flex-pack: center;
71
71
  justify-content: center;
72
- margin: 0em 0em;
72
+ margin: 0 0;
73
73
  padding: 1.14285714em 2em;
74
74
  background: #FFFFFF;
75
75
  color: rgba(0, 0, 0, 0.87);
76
76
  -webkit-box-shadow: none;
77
77
  box-shadow: none;
78
- border-radius: 0em;
78
+ border-radius: 0;
79
79
  border: none;
80
80
  border-right: 1px solid rgba(34, 36, 38, 0.15);
81
81
  -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
@@ -91,14 +91,14 @@
91
91
  z-index: 2;
92
92
  content: '';
93
93
  top: 50%;
94
- right: 0%;
94
+ right: 0;
95
95
  border: medium none;
96
96
  background-color: #FFFFFF;
97
97
  width: 1.14285714em;
98
98
  height: 1.14285714em;
99
99
  border-style: solid;
100
100
  border-color: rgba(34, 36, 38, 0.15);
101
- border-width: 0px 1px 1px 0px;
101
+ border-width: 0 1px 1px 0;
102
102
  -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
103
103
  transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
104
104
  transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
@@ -110,14 +110,14 @@
110
110
  /* First Step */
111
111
  .ui.steps .step:first-child {
112
112
  padding-left: 2em;
113
- border-radius: 0.28571429rem 0em 0em 0.28571429rem;
113
+ border-radius: 0.28571429rem 0 0 0.28571429rem;
114
114
  }
115
115
 
116
116
  /* Last Step */
117
117
  .ui.steps .step:last-child {
118
- border-radius: 0em 0.28571429rem 0.28571429rem 0em;
118
+ border-radius: 0 0.28571429rem 0.28571429rem 0;
119
119
  border-right: none;
120
- margin-right: 0em;
120
+ margin-right: 0;
121
121
  }
122
122
 
123
123
  /* Only Step */
@@ -158,7 +158,7 @@
158
158
  .ui.steps .step > .icon {
159
159
  line-height: 1;
160
160
  font-size: 2.5em;
161
- margin: 0em 1rem 0em 0em;
161
+ margin: 0 1rem 0 0;
162
162
  }
163
163
  .ui.steps .step > .icon,
164
164
  .ui.steps .step > .icon ~ .content {
@@ -169,11 +169,6 @@
169
169
  -ms-flex-item-align: middle;
170
170
  align-self: middle;
171
171
  }
172
- .ui.steps .step > .icon ~ .content {
173
- -webkit-box-flex: 1 0 auto;
174
- -ms-flex-positive: 1 0 auto;
175
- flex-grow: 1 0 auto;
176
- }
177
172
 
178
173
  /* Horizontal Icon */
179
174
  .ui.steps:not(.vertical) .step > .icon {
@@ -236,18 +231,18 @@
236
231
  -webkit-box-pack: start;
237
232
  -ms-flex-pack: start;
238
233
  justify-content: flex-start;
239
- border-radius: 0em;
234
+ border-radius: 0;
240
235
  padding: 1.14285714em 2em;
241
236
  border-right: none;
242
237
  border-bottom: 1px solid rgba(34, 36, 38, 0.15);
243
238
  }
244
239
  .ui.vertical.steps .step:first-child {
245
240
  padding: 1.14285714em 2em;
246
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
241
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
247
242
  }
248
243
  .ui.vertical.steps .step:last-child {
249
244
  border-bottom: none;
250
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
245
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
251
246
  }
252
247
  .ui.vertical.steps .step:only-child {
253
248
  border-radius: 0.28571429rem;
@@ -256,8 +251,8 @@
256
251
  /* Arrow */
257
252
  .ui.vertical.steps .step:after {
258
253
  top: 50%;
259
- right: 0%;
260
- border-width: 0px 1px 1px 0px;
254
+ right: 0;
255
+ border-width: 0 1px 1px 0;
261
256
  display: none;
262
257
  }
263
258
  .ui.vertical.steps .active.step:after {
@@ -293,15 +288,15 @@
293
288
  -webkit-box-direction: normal;
294
289
  -ms-flex-direction: column;
295
290
  flex-direction: column;
296
- border-radius: 0em;
291
+ border-radius: 0;
297
292
  padding: 1.14285714em 2em;
298
293
  }
299
294
  .ui.steps:not(.unstackable) .step:first-child {
300
295
  padding: 1.14285714em 2em;
301
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
296
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
302
297
  }
303
298
  .ui.steps:not(.unstackable) .step:last-child {
304
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
299
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
305
300
  }
306
301
 
307
302
  /* Arrow */
@@ -317,7 +312,7 @@
317
312
  /* Icon */
318
313
  .ui.steps:not(.unstackable) .step > .icon,
319
314
  .ui.ordered.steps:not(.unstackable) .step:before {
320
- margin: 0em 0em 1rem 0em;
315
+ margin: 0 0 1rem 0;
321
316
  }
322
317
  }
323
318
 
@@ -433,15 +428,15 @@
433
428
  -webkit-box-direction: normal;
434
429
  -ms-flex-direction: column;
435
430
  flex-direction: column;
436
- border-radius: 0em;
431
+ border-radius: 0;
437
432
  padding: 1.14285714em 2em;
438
433
  }
439
434
  .ui[class*="tablet stackable"].steps .step:first-child {
440
435
  padding: 1.14285714em 2em;
441
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
436
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
442
437
  }
443
438
  .ui[class*="tablet stackable"].steps .step:last-child {
444
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
439
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
445
440
  }
446
441
 
447
442
  /* Arrow */
@@ -457,7 +452,7 @@
457
452
  /* Icon */
458
453
  .ui[class*="tablet stackable"].steps .step > .icon,
459
454
  .ui[class*="tablet stackable"].ordered.steps .step:before {
460
- margin: 0em 0em 1rem 0em;
455
+ margin: 0 0 1rem 0;
461
456
  }
462
457
  }
463
458
 
@@ -482,27 +477,27 @@
482
477
  /* Top */
483
478
  .ui.attached.steps {
484
479
  width: calc(100% + 2px) !important;
485
- margin: 0em -1px 0;
480
+ margin: 0 -1px 0;
486
481
  max-width: calc(100% + 2px);
487
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
482
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
488
483
  }
489
484
  .ui.attached.steps .step:first-child {
490
- border-radius: 0.28571429rem 0em 0em 0em;
485
+ border-radius: 0.28571429rem 0 0 0;
491
486
  }
492
487
  .ui.attached.steps .step:last-child {
493
- border-radius: 0em 0.28571429rem 0em 0em;
488
+ border-radius: 0 0.28571429rem 0 0;
494
489
  }
495
490
 
496
491
  /* Bottom */
497
492
  .ui.bottom.attached.steps {
498
- margin: 0 -1px 0em;
499
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
493
+ margin: 0 -1px 0;
494
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
500
495
  }
501
496
  .ui.bottom.attached.steps .step:first-child {
502
- border-radius: 0em 0em 0em 0.28571429rem;
497
+ border-radius: 0 0 0 0.28571429rem;
503
498
  }
504
499
  .ui.bottom.attached.steps .step:last-child {
505
- border-radius: 0em 0em 0.28571429rem 0em;
500
+ border-radius: 0 0 0.28571429rem 0;
506
501
  }
507
502
 
508
503
  /*-------------------
@@ -552,7 +547,7 @@
552
547
  width: 14.285%;
553
548
  }
554
549
  .ui.eight.steps > .step {
555
- width: 12.500%;
550
+ width: 12.5%;
556
551
  }
557
552
 
558
553
  /*-------------------
@@ -0,0 +1,114 @@
1
+ /*!
2
+ * # Fomantic UI - Text
3
+ * http://github.com/fomantic/Fomantic-UI/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Text
14
+ *******************************/
15
+
16
+ span.ui.primary.text {
17
+ color: #2185D0;
18
+ }
19
+ span.ui.inverted.primary.text {
20
+ color: #54C8FF;
21
+ }
22
+ span.ui.secondary.text {
23
+ color: #1B1C1D;
24
+ }
25
+ span.ui.inverted.secondary.text {
26
+ color: #545454;
27
+ }
28
+ span.ui.red.text {
29
+ color: #DB2828;
30
+ }
31
+ span.ui.inverted.red.text {
32
+ color: #FF695E;
33
+ }
34
+ span.ui.orange.text {
35
+ color: #F2711C;
36
+ }
37
+ span.ui.inverted.orange.text {
38
+ color: #FF851B;
39
+ }
40
+ span.ui.yellow.text {
41
+ color: #FBBD08;
42
+ }
43
+ span.ui.inverted.yellow.text {
44
+ color: #FFE21F;
45
+ }
46
+ span.ui.olive.text {
47
+ color: #B5CC18;
48
+ }
49
+ span.ui.inverted.olive.text {
50
+ color: #D9E778;
51
+ }
52
+ span.ui.green.text {
53
+ color: #21BA45;
54
+ }
55
+ span.ui.inverted.green.text {
56
+ color: #2ECC40;
57
+ }
58
+ span.ui.teal.text {
59
+ color: #00B5AD;
60
+ }
61
+ span.ui.inverted.teal.text {
62
+ color: #6DFFFF;
63
+ }
64
+ span.ui.blue.text {
65
+ color: #2185D0;
66
+ }
67
+ span.ui.inverted.blue.text {
68
+ color: #54C8FF;
69
+ }
70
+ span.ui.violet.text {
71
+ color: #6435C9;
72
+ }
73
+ span.ui.inverted.violet.text {
74
+ color: #A291FB;
75
+ }
76
+ span.ui.purple.text {
77
+ color: #A333C8;
78
+ }
79
+ span.ui.inverted.purple.text {
80
+ color: #DC73FF;
81
+ }
82
+ span.ui.pink.text {
83
+ color: #E03997;
84
+ }
85
+ span.ui.inverted.pink.text {
86
+ color: #FF8EDF;
87
+ }
88
+ span.ui.brown.text {
89
+ color: #A5673F;
90
+ }
91
+ span.ui.inverted.brown.text {
92
+ color: #D67C1C;
93
+ }
94
+ span.ui.grey.text {
95
+ color: #767676;
96
+ }
97
+ span.ui.inverted.grey.text {
98
+ color: #DCDDDE;
99
+ }
100
+ span.ui.black.text {
101
+ color: #1B1C1D;
102
+ }
103
+ span.ui.inverted.black.text {
104
+ color: #545454;
105
+ }
106
+ span.ui.disabled.text {
107
+ opacity: 0.45;
108
+ }
109
+
110
+
111
+ /*******************************
112
+ Theme Overrides
113
+ *******************************/
114
+
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Reset
2
+ * # Semantic UI 2.7.0 - Reset
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Site
2
+ * # Semantic UI 2.7.0 - Site
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -24,8 +24,8 @@ html {
24
24
  font-size: 14px;
25
25
  }
26
26
  body {
27
- margin: 0px;
28
- padding: 0px;
27
+ margin: 0;
28
+ padding: 0;
29
29
  overflow-x: hidden;
30
30
  min-width: 320px;
31
31
  background: #FFFFFF;
@@ -48,9 +48,9 @@ h4,
48
48
  h5 {
49
49
  font-family: $font-family;
50
50
  line-height: 1.28571429em;
51
- margin: calc(2rem - 0.1428571428571429em) 0em 1rem;
51
+ margin: calc(2rem - 0.1428571428571429em) 0 1rem;
52
52
  font-weight: bold;
53
- padding: 0em;
53
+ padding: 0;
54
54
  }
55
55
  h1 {
56
56
  min-height: 1rem;
@@ -73,14 +73,14 @@ h2:first-child,
73
73
  h3:first-child,
74
74
  h4:first-child,
75
75
  h5:first-child {
76
- margin-top: 0em;
76
+ margin-top: 0;
77
77
  }
78
78
  h1:last-child,
79
79
  h2:last-child,
80
80
  h3:last-child,
81
81
  h4:last-child,
82
82
  h5:last-child {
83
- margin-bottom: 0em;
83
+ margin-bottom: 0;
84
84
  }
85
85
 
86
86
 
@@ -89,14 +89,14 @@ h5:last-child {
89
89
  *******************************/
90
90
 
91
91
  p {
92
- margin: 0em 0em 1em;
92
+ margin: 0 0 1em;
93
93
  line-height: 1.4285em;
94
94
  }
95
95
  p:first-child {
96
- margin-top: 0em;
96
+ margin-top: 0;
97
97
  }
98
98
  p:last-child {
99
- margin-bottom: 0em;
99
+ margin-bottom: 0;
100
100
  }
101
101
 
102
102
  /*-------------------
@@ -129,10 +129,6 @@ a:hover {
129
129
  background-color: #CCE2FF;
130
130
  color: rgba(0, 0, 0, 0.87);
131
131
  }
132
- ::-moz-selection {
133
- background-color: #CCE2FF;
134
- color: rgba(0, 0, 0, 0.87);
135
- }
136
132
  ::selection {
137
133
  background-color: #CCE2FF;
138
134
  color: rgba(0, 0, 0, 0.87);
@@ -144,11 +140,6 @@ input::-webkit-selection {
144
140
  background-color: rgba(100, 100, 100, 0.4);
145
141
  color: rgba(0, 0, 0, 0.87);
146
142
  }
147
- textarea::-moz-selection,
148
- input::-moz-selection {
149
- background-color: rgba(100, 100, 100, 0.4);
150
- color: rgba(0, 0, 0, 0.87);
151
- }
152
143
  textarea::selection,
153
144
  input::selection {
154
145
  background-color: rgba(100, 100, 100, 0.4);
@@ -163,7 +154,7 @@ body ::-webkit-scrollbar {
163
154
  }
164
155
  body ::-webkit-scrollbar-track {
165
156
  background: rgba(0, 0, 0, 0.1);
166
- border-radius: 0px;
157
+ border-radius: 0;
167
158
  }
168
159
  body ::-webkit-scrollbar-thumb {
169
160
  cursor: pointer;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Accordion
2
+ * # Semantic UI 2.7.0 - Accordion
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -18,8 +18,8 @@
18
18
  max-width: 100%;
19
19
  }
20
20
  .ui.accordion .accordion {
21
- margin: 1em 0em 0em;
22
- padding: 0em;
21
+ margin: 1em 0 0;
22
+ padding: 0;
23
23
  }
24
24
 
25
25
  /* Title */
@@ -30,7 +30,7 @@
30
30
 
31
31
  /* Default Styling */
32
32
  .ui.accordion .title:not(.ui) {
33
- padding: 0.5em 0em;
33
+ padding: 0.5em 0;
34
34
  font-family: $font-family;
35
35
  font-size: 1em;
36
36
  color: rgba(0, 0, 0, 0.87);
@@ -40,10 +40,10 @@
40
40
  .ui.accordion:not(.styled) .title ~ .content:not(.ui),
41
41
  .ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) {
42
42
  margin: '';
43
- padding: 0.5em 0em 1em;
43
+ padding: 0.5em 0 1em;
44
44
  }
45
45
  .ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child {
46
- padding-bottom: 0em;
46
+ padding-bottom: 0;
47
47
  }
48
48
 
49
49
  /* Arrow */
@@ -54,8 +54,8 @@
54
54
  opacity: 1;
55
55
  width: 1.25em;
56
56
  height: 1em;
57
- margin: 0em 0.25rem 0em 0rem;
58
- padding: 0em;
57
+ margin: 0 0.25rem 0 0;
58
+ padding: 0;
59
59
  font-size: 1em;
60
60
  -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
61
61
  transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
@@ -74,11 +74,11 @@
74
74
  /* Menu */
75
75
  .ui.accordion.menu .item .title {
76
76
  display: block;
77
- padding: 0em;
77
+ padding: 0;
78
78
  }
79
79
  .ui.accordion.menu .item .title > .dropdown.icon {
80
80
  float: right;
81
- margin: 0.21425em 0em 0em 1em;
81
+ margin: 0.21425em 0 0 1em;
82
82
  -webkit-transform: rotate(180deg);
83
83
  transform: rotate(180deg);
84
84
  }
@@ -86,7 +86,7 @@
86
86
  /* Header */
87
87
  .ui.accordion .ui.header .dropdown.icon {
88
88
  font-size: 1em;
89
- margin: 0em 0.25rem 0em 0rem;
89
+ margin: 0 0.25rem 0 0;
90
90
  }
91
91
 
92
92
 
@@ -121,12 +121,12 @@
121
121
  .ui.styled.accordion .accordion {
122
122
  border-radius: 0.28571429rem;
123
123
  background: #FFFFFF;
124
- -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15);
125
- box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15);
124
+ -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15);
125
+ box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15);
126
126
  }
127
127
  .ui.styled.accordion .title,
128
128
  .ui.styled.accordion .accordion .title {
129
- margin: 0em;
129
+ margin: 0;
130
130
  padding: 0.75em 1em;
131
131
  color: rgba(0, 0, 0, 0.4);
132
132
  font-weight: bold;
@@ -142,11 +142,11 @@
142
142
  /* Content */
143
143
  .ui.styled.accordion .content,
144
144
  .ui.styled.accordion .accordion .content {
145
- margin: 0em;
145
+ margin: 0;
146
146
  padding: 0.5em 1em 1.5em;
147
147
  }
148
148
  .ui.styled.accordion .accordion .content {
149
- padding: 0em;
149
+ margin: 0;
150
150
  padding: 0.5em 1em 1.5em;
151
151
  }
152
152