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
@@ -12,6 +12,10 @@
12
12
 
13
13
  "use strict";
14
14
 
15
+ $.isFunction = $.isFunction || function(obj) {
16
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
17
+ };
18
+
15
19
  window = (typeof window != 'undefined' && window.Math == Math)
16
20
  ? window
17
21
  : (typeof self != 'undefined' && self.Math == Math)
@@ -559,7 +563,7 @@ $.fn.state = function(parameters) {
559
563
  else if(found !== undefined) {
560
564
  response = found;
561
565
  }
562
- if($.isArray(returnedValue)) {
566
+ if(Array.isArray(returnedValue)) {
563
567
  returnedValue.push(response);
564
568
  }
565
569
  else if(returnedValue !== undefined) {
@@ -12,6 +12,10 @@
12
12
 
13
13
  'use strict';
14
14
 
15
+ $.isFunction = $.isFunction || function(obj) {
16
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
17
+ };
18
+
15
19
  window = (typeof window != 'undefined' && window.Math == Math)
16
20
  ? window
17
21
  : (typeof self != 'undefined' && self.Math == Math)
@@ -852,7 +856,7 @@ $.fn.sticky = function(parameters) {
852
856
  else if(found !== undefined) {
853
857
  response = found;
854
858
  }
855
- if($.isArray(returnedValue)) {
859
+ if(Array.isArray(returnedValue)) {
856
860
  returnedValue.push(response);
857
861
  }
858
862
  else if(returnedValue !== undefined) {
@@ -12,6 +12,13 @@
12
12
 
13
13
  'use strict';
14
14
 
15
+ $.isWindow = $.isWindow || function(obj) {
16
+ return obj != null && obj === obj.window;
17
+ };
18
+ $.isFunction = $.isFunction || function(obj) {
19
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
20
+ };
21
+
15
22
  window = (typeof window != 'undefined' && window.Math == Math)
16
23
  ? window
17
24
  : (typeof self != 'undefined' && self.Math == Math)
@@ -670,7 +677,7 @@ $.fn.tab = function(parameters) {
670
677
  });
671
678
  },
672
679
  last: function(array) {
673
- return $.isArray(array)
680
+ return Array.isArray(array)
674
681
  ? array[ array.length - 1]
675
682
  : false
676
683
  ;
@@ -685,7 +692,7 @@ $.fn.tab = function(parameters) {
685
692
  ;
686
693
  },
687
694
  arrayToPath: function(pathArray) {
688
- return $.isArray(pathArray)
695
+ return Array.isArray(pathArray)
689
696
  ? pathArray.join('/')
690
697
  : false
691
698
  ;
@@ -842,7 +849,7 @@ $.fn.tab = function(parameters) {
842
849
  else if(found !== undefined) {
843
850
  response = found;
844
851
  }
845
- if($.isArray(returnedValue)) {
852
+ if(Array.isArray(returnedValue)) {
846
853
  returnedValue.push(response);
847
854
  }
848
855
  else if(returnedValue !== undefined) {
@@ -12,6 +12,10 @@
12
12
 
13
13
  'use strict';
14
14
 
15
+ $.isFunction = $.isFunction || function(obj) {
16
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
17
+ };
18
+
15
19
  window = (typeof window != 'undefined' && window.Math == Math)
16
20
  ? window
17
21
  : (typeof self != 'undefined' && self.Math == Math)
@@ -467,7 +471,7 @@ $.fn.toast = function(parameters) {
467
471
  else if(found !== undefined) {
468
472
  response = found;
469
473
  }
470
- if($.isArray(returnedValue)) {
474
+ if(Array.isArray(returnedValue)) {
471
475
  returnedValue.push(response);
472
476
  }
473
477
  else if(returnedValue !== undefined) {
@@ -549,7 +553,7 @@ $.fn.toast.settings = {
549
553
  icon : 'icon',
550
554
  visible : 'visible',
551
555
  content : 'content',
552
- title : 'title'
556
+ title : 'header'
553
557
  },
554
558
 
555
559
  icons : {
@@ -12,6 +12,10 @@
12
12
 
13
13
  'use strict';
14
14
 
15
+ $.isFunction = $.isFunction || function(obj) {
16
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
17
+ };
18
+
15
19
  window = (typeof window != 'undefined' && window.Math == Math)
16
20
  ? window
17
21
  : (typeof self != 'undefined' && self.Math == Math)
@@ -301,7 +305,7 @@ $.fn.transition = function() {
301
305
  var
302
306
  style = $module.attr('style') || ''
303
307
  ;
304
- return $.isArray(style.match(/display.*?;/, ''));
308
+ return Array.isArray(style.match(/display.*?;/, ''));
305
309
  }
306
310
  },
307
311
 
@@ -998,7 +1002,7 @@ $.fn.transition = function() {
998
1002
  response = found;
999
1003
  }
1000
1004
 
1001
- if($.isArray(returnedValue)) {
1005
+ if(Array.isArray(returnedValue)) {
1002
1006
  returnedValue.push(response);
1003
1007
  }
1004
1008
  else if(returnedValue !== undefined) {
@@ -12,6 +12,10 @@
12
12
 
13
13
  'use strict';
14
14
 
15
+ $.isFunction = $.isFunction || function(obj) {
16
+ return typeof obj === "function" && typeof obj.nodeType !== "number";
17
+ };
18
+
15
19
  window = (typeof window != 'undefined' && window.Math == Math)
16
20
  ? window
17
21
  : (typeof self != 'undefined' && self.Math == Math)
@@ -1172,7 +1176,7 @@ $.fn.visibility = function(parameters) {
1172
1176
  else if(found !== undefined) {
1173
1177
  response = found;
1174
1178
  }
1175
- if($.isArray(returnedValue)) {
1179
+ if(Array.isArray(returnedValue)) {
1176
1180
  returnedValue.push(response);
1177
1181
  }
1178
1182
  else if(returnedValue !== undefined) {
@@ -1297,7 +1301,7 @@ $.fn.visibility.settings = {
1297
1301
 
1298
1302
  className: {
1299
1303
  fixed : 'fixed',
1300
- placeholder : 'placeholder',
1304
+ placeholder : 'constraint',
1301
1305
  visible : 'visible'
1302
1306
  },
1303
1307
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Breadcrumb
2
+ * # Semantic UI 2.7.0 - Breadcrumb
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -16,14 +16,14 @@
16
16
  .ui.breadcrumb {
17
17
  line-height: 1;
18
18
  display: inline-block;
19
- margin: 0em 0em;
19
+ margin: 0 0;
20
20
  vertical-align: middle;
21
21
  }
22
22
  .ui.breadcrumb:first-child {
23
- margin-top: 0em;
23
+ margin-top: 0;
24
24
  }
25
25
  .ui.breadcrumb:last-child {
26
- margin-bottom: 0em;
26
+ margin-bottom: 0;
27
27
  }
28
28
 
29
29
 
@@ -36,7 +36,7 @@
36
36
  .ui.breadcrumb .divider {
37
37
  display: inline-block;
38
38
  opacity: 0.7;
39
- margin: 0em 0.21428571rem 0em;
39
+ margin: 0 0.21428571rem 0;
40
40
  font-size: 0.92857143em;
41
41
  color: rgba(0, 0, 0, 0.4);
42
42
  vertical-align: baseline;
@@ -62,8 +62,8 @@
62
62
  }
63
63
  .ui.breadcrumb .section {
64
64
  display: inline-block;
65
- margin: 0em;
66
- padding: 0em;
65
+ margin: 0;
66
+ padding: 0;
67
67
  }
68
68
 
69
69
  /* Loose Coupling */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Form
2
+ * # Semantic UI 2.7.0 - Form
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -28,7 +28,7 @@
28
28
  ---------------------*/
29
29
 
30
30
  .ui.form > p {
31
- margin: 1em 0em;
31
+ margin: 1em 0;
32
32
  }
33
33
 
34
34
  /*--------------------
@@ -37,15 +37,15 @@
37
37
 
38
38
  .ui.form .field {
39
39
  clear: both;
40
- margin: 0em 0em 1em;
40
+ margin: 0 0 1em;
41
41
  }
42
42
  .ui.form .field:last-child,
43
43
  .ui.form .fields:last-child .field {
44
- margin-bottom: 0em;
44
+ margin-bottom: 0;
45
45
  }
46
46
  .ui.form .fields .field {
47
47
  clear: both;
48
- margin: 0em;
48
+ margin: 0;
49
49
  }
50
50
 
51
51
  /*--------------------
@@ -54,7 +54,7 @@
54
54
 
55
55
  .ui.form .field > label {
56
56
  display: block;
57
- margin: 0em 0em 0.28571429rem 0em;
57
+ margin: 0 0 0.28571429rem 0;
58
58
  color: rgba(0, 0, 0, 0.87);
59
59
  font-size: 0.92857143em;
60
60
  font-weight: bold;
@@ -100,10 +100,10 @@
100
100
  .ui.form input[type="file"],
101
101
  .ui.form input[type="url"] {
102
102
  font-family: $font-family;
103
- margin: 0em;
103
+ margin: 0;
104
104
  outline: none;
105
105
  -webkit-appearance: none;
106
- tap-highlight-color: rgba(255, 255, 255, 0);
106
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
107
107
  line-height: 1.21428571em;
108
108
  padding: 0.67857143em 1em;
109
109
  font-size: 1em;
@@ -111,25 +111,25 @@
111
111
  border: 1px solid rgba(34, 36, 38, 0.15);
112
112
  color: rgba(0, 0, 0, 0.87);
113
113
  border-radius: 0.28571429rem;
114
- -webkit-box-shadow: 0em 0em 0em 0em transparent inset;
115
- box-shadow: 0em 0em 0em 0em transparent inset;
114
+ -webkit-box-shadow: 0 0 0 0 transparent inset;
115
+ box-shadow: 0 0 0 0 transparent inset;
116
116
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
117
117
  transition: color 0.1s ease, border-color 0.1s ease;
118
118
  }
119
119
 
120
120
  /* Text Area */
121
121
  .ui.form textarea {
122
- margin: 0em;
122
+ margin: 0;
123
123
  -webkit-appearance: none;
124
- tap-highlight-color: rgba(255, 255, 255, 0);
124
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
125
125
  padding: 0.78571429em 1em;
126
126
  background: #FFFFFF;
127
127
  border: 1px solid rgba(34, 36, 38, 0.15);
128
128
  outline: none;
129
129
  color: rgba(0, 0, 0, 0.87);
130
130
  border-radius: 0.28571429rem;
131
- -webkit-box-shadow: 0em 0em 0em 0em transparent inset;
132
- box-shadow: 0em 0em 0em 0em transparent inset;
131
+ -webkit-box-shadow: 0 0 0 0 transparent inset;
132
+ box-shadow: 0 0 0 0 transparent inset;
133
133
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
134
134
  transition: color 0.1s ease, border-color 0.1s ease;
135
135
  font-size: 1em;
@@ -188,8 +188,8 @@
188
188
  background: #FFFFFF;
189
189
  border: 1px solid rgba(34, 36, 38, 0.15);
190
190
  border-radius: 0.28571429rem;
191
- -webkit-box-shadow: 0em 0em 0em 0em transparent inset;
192
- box-shadow: 0em 0em 0em 0em transparent inset;
191
+ -webkit-box-shadow: 0 0 0 0 transparent inset;
192
+ box-shadow: 0 0 0 0 transparent inset;
193
193
  padding: 0.62em 1em;
194
194
  color: rgba(0, 0, 0, 0.87);
195
195
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
@@ -259,7 +259,7 @@
259
259
  -webkit-box-flex: 1;
260
260
  -ms-flex: 1 0 auto;
261
261
  flex: 1 0 auto;
262
- width: 0px;
262
+ width: 0;
263
263
  }
264
264
 
265
265
  /*--------------------
@@ -274,7 +274,7 @@
274
274
 
275
275
  /* Assumptions */
276
276
  .ui.form .message:first-child {
277
- margin-top: 0px;
277
+ margin-top: 0;
278
278
  }
279
279
 
280
280
  /*--------------------
@@ -290,15 +290,15 @@
290
290
  .ui.form .inline.fields .field .prompt,
291
291
  .ui.form .inline.field .prompt {
292
292
  vertical-align: top;
293
- margin: -0.25em 0em -0.5em 0.5em;
293
+ margin: -0.25em 0 -0.5em 0.5em;
294
294
  }
295
295
  .ui.form .inline.fields .field .prompt:before,
296
296
  .ui.form .inline.field .prompt:before {
297
- border-width: 0px 0px 1px 1px;
297
+ border-width: 0 0 1px 1px;
298
298
  bottom: auto;
299
299
  right: auto;
300
300
  top: 50%;
301
- left: 0em;
301
+ left: 0;
302
302
  }
303
303
 
304
304
 
@@ -312,22 +312,22 @@
312
312
  ---------------------*/
313
313
 
314
314
  .ui.form .field.field input:-webkit-autofill {
315
- -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
316
- box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
315
+ -webkit-box-shadow: 0 0 0 100px #FFFFF0 inset !important;
316
+ box-shadow: 0 0 0 100px #FFFFF0 inset !important;
317
317
  border-color: #E5DFA1 !important;
318
318
  }
319
319
 
320
320
  /* Focus */
321
321
  .ui.form .field.field input:-webkit-autofill:focus {
322
- -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
323
- box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important;
322
+ -webkit-box-shadow: 0 0 0 100px #FFFFF0 inset !important;
323
+ box-shadow: 0 0 0 100px #FFFFF0 inset !important;
324
324
  border-color: #D5C315 !important;
325
325
  }
326
326
 
327
327
  /* Error */
328
328
  .ui.form .error.error input:-webkit-autofill {
329
- -webkit-box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important;
330
- box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important;
329
+ -webkit-box-shadow: 0 0 0 100px #FFFAF0 inset !important;
330
+ box-shadow: 0 0 0 100px #FFFAF0 inset !important;
331
331
  border-color: #E0B4B4 !important;
332
332
  }
333
333
 
@@ -396,16 +396,16 @@
396
396
  border-color: #85B7D9;
397
397
  border-radius: 0.28571429rem;
398
398
  background: #FFFFFF;
399
- -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
400
- box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
399
+ -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
400
+ box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
401
401
  }
402
402
  .ui.form textarea:focus {
403
403
  color: rgba(0, 0, 0, 0.95);
404
404
  border-color: #85B7D9;
405
405
  border-radius: 0.28571429rem;
406
406
  background: #FFFFFF;
407
- -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
408
- box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
407
+ -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
408
+ box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
409
409
  -webkit-appearance: none;
410
410
  }
411
411
 
@@ -639,8 +639,8 @@
639
639
  .ui.loading.form:before {
640
640
  position: absolute;
641
641
  content: '';
642
- top: 0%;
643
- left: 0%;
642
+ top: 0;
643
+ left: 0;
644
644
  background: rgba(255, 255, 255, 0.8);
645
645
  width: 100%;
646
646
  height: 100%;
@@ -651,42 +651,18 @@
651
651
  content: '';
652
652
  top: 50%;
653
653
  left: 50%;
654
- margin: -1.5em 0em 0em -1.5em;
654
+ margin: -1.5em 0 0 -1.5em;
655
655
  width: 3em;
656
656
  height: 3em;
657
- -webkit-animation: form-spin 0.6s linear;
658
- animation: form-spin 0.6s linear;
659
- -webkit-animation-iteration-count: infinite;
660
- animation-iteration-count: infinite;
657
+ -webkit-animation: loader 0.6s infinite linear;
658
+ animation: loader 0.6s infinite linear;
659
+ border: 0.2em solid #767676;
661
660
  border-radius: 500rem;
662
- border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
663
- border-style: solid;
664
- border-width: 0.2em;
665
- -webkit-box-shadow: 0px 0px 0px 1px transparent;
666
- box-shadow: 0px 0px 0px 1px transparent;
661
+ -webkit-box-shadow: 0 0 0 1px transparent;
662
+ box-shadow: 0 0 0 1px transparent;
667
663
  visibility: visible;
668
664
  z-index: 101;
669
665
  }
670
- @-webkit-keyframes form-spin {
671
- from {
672
- -webkit-transform: rotate(0deg);
673
- transform: rotate(0deg);
674
- }
675
- to {
676
- -webkit-transform: rotate(360deg);
677
- transform: rotate(360deg);
678
- }
679
- }
680
- @keyframes form-spin {
681
- from {
682
- -webkit-transform: rotate(0deg);
683
- transform: rotate(0deg);
684
- }
685
- to {
686
- -webkit-transform: rotate(360deg);
687
- transform: rotate(360deg);
688
- }
689
- }
690
666
 
691
667
 
692
668
  /*******************************
@@ -704,7 +680,7 @@
704
680
  .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
705
681
  .ui.form .required.field > .checkbox:after,
706
682
  .ui.form label.required:after {
707
- margin: -0.2em 0em 0em 0.2em;
683
+ margin: -0.2em 0 0 0.2em;
708
684
  content: '*';
709
685
  color: #DB2828;
710
686
  }
@@ -718,7 +694,7 @@
718
694
  .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
719
695
  .ui.form .required.field > .checkbox:after {
720
696
  position: absolute;
721
- top: 0%;
697
+ top: 0;
722
698
  left: 100%;
723
699
  }
724
700
 
@@ -774,13 +750,13 @@
774
750
  /* Grouped Vertically */
775
751
  .ui.form .grouped.fields {
776
752
  display: block;
777
- margin: 0em 0em 1em;
753
+ margin: 0 0 1em;
778
754
  }
779
755
  .ui.form .grouped.fields:last-child {
780
- margin-bottom: 0em;
756
+ margin-bottom: 0;
781
757
  }
782
758
  .ui.form .grouped.fields > label {
783
- margin: 0em 0em 0.28571429rem 0em;
759
+ margin: 0 0 0.28571429rem 0;
784
760
  color: rgba(0, 0, 0, 0.87);
785
761
  font-size: 0.92857143em;
786
762
  font-weight: bold;
@@ -789,8 +765,8 @@
789
765
  .ui.form .grouped.fields .field,
790
766
  .ui.form .grouped.inline.fields .field {
791
767
  display: block;
792
- margin: 0.5em 0em;
793
- padding: 0em;
768
+ margin: 0.5em 0;
769
+ padding: 0;
794
770
  }
795
771
 
796
772
  /*--------------------
@@ -807,7 +783,7 @@
807
783
  -webkit-box-direction: normal;
808
784
  -ms-flex-direction: row;
809
785
  flex-direction: row;
810
- margin: 0em -0.5em 1em;
786
+ margin: 0 -0.5em 1em;
811
787
  }
812
788
  .ui.form .fields > .field {
813
789
  -webkit-box-flex: 0;
@@ -887,7 +863,7 @@
887
863
  .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields,
888
864
  .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field {
889
865
  width: 100% !important;
890
- margin: 0em 0em 1em;
866
+ margin: 0 0 1em;
891
867
  }
892
868
  }
893
869
 
@@ -974,7 +950,7 @@
974
950
  width: 100% !important;
975
951
  }
976
952
  .ui.form .fields {
977
- margin-bottom: 0em;
953
+ margin-bottom: 0;
978
954
  }
979
955
  }
980
956
 
@@ -995,14 +971,14 @@
995
971
  ---------------------*/
996
972
 
997
973
  .ui.form .inline.fields {
998
- margin: 0em 0em 1em;
974
+ margin: 0 0 1em;
999
975
  -webkit-box-align: center;
1000
976
  -ms-flex-align: center;
1001
977
  align-items: center;
1002
978
  }
1003
979
  .ui.form .inline.fields .field {
1004
- margin: 0em;
1005
- padding: 0em 1em 0em 0em;
980
+ margin: 0;
981
+ padding: 0 1em 0 0;
1006
982
  }
1007
983
 
1008
984
  /* Inline Label */
@@ -1013,8 +989,8 @@
1013
989
  .ui.form .inline.field > p {
1014
990
  display: inline-block;
1015
991
  width: auto;
1016
- margin-top: 0em;
1017
- margin-bottom: 0em;
992
+ margin-top: 0;
993
+ margin-bottom: 0;
1018
994
  vertical-align: baseline;
1019
995
  font-size: 0.92857143em;
1020
996
  font-weight: bold;
@@ -1024,7 +1000,7 @@
1024
1000
 
1025
1001
  /* Grouped Inline Label */
1026
1002
  .ui.form .inline.fields > label {
1027
- margin: 0.035714em 1em 0em 0em;
1003
+ margin: 0.035714em 1em 0 0;
1028
1004
  }
1029
1005
 
1030
1006
  /* Inline Input */
@@ -1034,8 +1010,8 @@
1034
1010
  .ui.form .inline.field > select {
1035
1011
  display: inline-block;
1036
1012
  width: auto;
1037
- margin-top: 0em;
1038
- margin-bottom: 0em;
1013
+ margin-top: 0;
1014
+ margin-bottom: 0;
1039
1015
  vertical-align: middle;
1040
1016
  font-size: 1em;
1041
1017
  }
@@ -1043,11 +1019,11 @@
1043
1019
  /* Label */
1044
1020
  .ui.form .inline.fields .field > :first-child,
1045
1021
  .ui.form .inline.field > :first-child {
1046
- margin: 0em 0.85714286em 0em 0em;
1022
+ margin: 0 0.85714286em 0 0;
1047
1023
  }
1048
1024
  .ui.form .inline.fields .field > :only-child,
1049
1025
  .ui.form .inline.field > :only-child {
1050
- margin: 0em;
1026
+ margin: 0;
1051
1027
  }
1052
1028
 
1053
1029
  /* Wide */