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 - Container
2
+ * # Semantic UI 2.7.0 - Container
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 - Divider
2
+ * # Semantic UI 2.7.0 - Divider
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -14,9 +14,9 @@
14
14
  *******************************/
15
15
 
16
16
  .ui.divider {
17
- margin: 1rem 0rem;
17
+ margin: 1rem 0;
18
18
  line-height: 1;
19
- height: 0em;
19
+ height: 0;
20
20
  font-weight: bold;
21
21
  text-transform: uppercase;
22
22
  letter-spacing: 0.05em;
@@ -85,11 +85,11 @@
85
85
  z-index: 2;
86
86
  top: 50%;
87
87
  left: 50%;
88
- margin: 0rem;
89
- padding: 0em;
88
+ margin: 0;
89
+ padding: 0;
90
90
  width: auto;
91
91
  height: 50%;
92
- line-height: 0em;
92
+ line-height: 0;
93
93
  text-align: center;
94
94
  -webkit-transform: translateX(-50%);
95
95
  transform: translateX(-50%);
@@ -102,7 +102,7 @@
102
102
  z-index: 3;
103
103
  border-left: 1px solid rgba(34, 36, 38, 0.15);
104
104
  border-right: 1px solid rgba(255, 255, 255, 0.1);
105
- width: 0%;
105
+ width: 0;
106
106
  height: calc(100% - 1rem);
107
107
  }
108
108
  .ui.vertical.divider:before {
@@ -110,7 +110,7 @@
110
110
  }
111
111
  .ui.vertical.divider:after {
112
112
  top: auto;
113
- bottom: 0px;
113
+ bottom: 0;
114
114
  }
115
115
 
116
116
  /* Inside grid */
@@ -159,7 +159,7 @@
159
159
  ---------------*/
160
160
 
161
161
  .ui.divider > .icon {
162
- margin: 0rem;
162
+ margin: 0;
163
163
  font-size: 1rem;
164
164
  height: 1em;
165
165
  vertical-align: middle;
@@ -206,7 +206,7 @@
206
206
  ---------------*/
207
207
 
208
208
  .ui.fitted.divider {
209
- margin: 0em;
209
+ margin: 0;
210
210
  }
211
211
 
212
212
  /*--------------
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Flag
2
+ * # Semantic UI 2.7.0 - Flag
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -19,10 +19,10 @@ i.flag:not(.icon) {
19
19
  height: 11px;
20
20
  line-height: 11px;
21
21
  vertical-align: baseline;
22
- margin: 0em 0.5em 0em 0em;
22
+ margin: 0 0.5em 0 0;
23
23
  text-decoration: inherit;
24
24
  speak: none;
25
- font-smoothing: antialiased;
25
+ -webkit-font-smoothing: antialiased;
26
26
  -webkit-backface-visibility: hidden;
27
27
  backface-visibility: hidden;
28
28
  }
@@ -45,308 +45,308 @@ i.flag:not(.icon):before {
45
45
 
46
46
  i.flag.ad:before,
47
47
  i.flag.andorra:before {
48
- background-position: 0px 0px;
48
+ background-position: 0 0;
49
49
  }
50
50
  i.flag.ae:before,
51
51
  i.flag.united.arab.emirates:before,
52
52
  i.flag.uae:before {
53
- background-position: 0px -26px;
53
+ background-position: 0 -26px;
54
54
  }
55
55
  i.flag.af:before,
56
56
  i.flag.afghanistan:before {
57
- background-position: 0px -52px;
57
+ background-position: 0 -52px;
58
58
  }
59
59
  i.flag.ag:before,
60
60
  i.flag.antigua:before {
61
- background-position: 0px -78px;
61
+ background-position: 0 -78px;
62
62
  }
63
63
  i.flag.ai:before,
64
64
  i.flag.anguilla:before {
65
- background-position: 0px -104px;
65
+ background-position: 0 -104px;
66
66
  }
67
67
  i.flag.al:before,
68
68
  i.flag.albania:before {
69
- background-position: 0px -130px;
69
+ background-position: 0 -130px;
70
70
  }
71
71
  i.flag.am:before,
72
72
  i.flag.armenia:before {
73
- background-position: 0px -156px;
73
+ background-position: 0 -156px;
74
74
  }
75
75
  i.flag.an:before,
76
76
  i.flag.netherlands.antilles:before {
77
- background-position: 0px -182px;
77
+ background-position: 0 -182px;
78
78
  }
79
79
  i.flag.ao:before,
80
80
  i.flag.angola:before {
81
- background-position: 0px -208px;
81
+ background-position: 0 -208px;
82
82
  }
83
83
  i.flag.ar:before,
84
84
  i.flag.argentina:before {
85
- background-position: 0px -234px;
85
+ background-position: 0 -234px;
86
86
  }
87
87
  i.flag.as:before,
88
88
  i.flag.american.samoa:before {
89
- background-position: 0px -260px;
89
+ background-position: 0 -260px;
90
90
  }
91
91
  i.flag.at:before,
92
92
  i.flag.austria:before {
93
- background-position: 0px -286px;
93
+ background-position: 0 -286px;
94
94
  }
95
95
  i.flag.au:before,
96
96
  i.flag.australia:before {
97
- background-position: 0px -312px;
97
+ background-position: 0 -312px;
98
98
  }
99
99
  i.flag.aw:before,
100
100
  i.flag.aruba:before {
101
- background-position: 0px -338px;
101
+ background-position: 0 -338px;
102
102
  }
103
103
  i.flag.ax:before,
104
104
  i.flag.aland.islands:before {
105
- background-position: 0px -364px;
105
+ background-position: 0 -364px;
106
106
  }
107
107
  i.flag.az:before,
108
108
  i.flag.azerbaijan:before {
109
- background-position: 0px -390px;
109
+ background-position: 0 -390px;
110
110
  }
111
111
  i.flag.ba:before,
112
112
  i.flag.bosnia:before {
113
- background-position: 0px -416px;
113
+ background-position: 0 -416px;
114
114
  }
115
115
  i.flag.bb:before,
116
116
  i.flag.barbados:before {
117
- background-position: 0px -442px;
117
+ background-position: 0 -442px;
118
118
  }
119
119
  i.flag.bd:before,
120
120
  i.flag.bangladesh:before {
121
- background-position: 0px -468px;
121
+ background-position: 0 -468px;
122
122
  }
123
123
  i.flag.be:before,
124
124
  i.flag.belgium:before {
125
- background-position: 0px -494px;
125
+ background-position: 0 -494px;
126
126
  }
127
127
  i.flag.bf:before,
128
128
  i.flag.burkina.faso:before {
129
- background-position: 0px -520px;
129
+ background-position: 0 -520px;
130
130
  }
131
131
  i.flag.bg:before,
132
132
  i.flag.bulgaria:before {
133
- background-position: 0px -546px;
133
+ background-position: 0 -546px;
134
134
  }
135
135
  i.flag.bh:before,
136
136
  i.flag.bahrain:before {
137
- background-position: 0px -572px;
137
+ background-position: 0 -572px;
138
138
  }
139
139
  i.flag.bi:before,
140
140
  i.flag.burundi:before {
141
- background-position: 0px -598px;
141
+ background-position: 0 -598px;
142
142
  }
143
143
  i.flag.bj:before,
144
144
  i.flag.benin:before {
145
- background-position: 0px -624px;
145
+ background-position: 0 -624px;
146
146
  }
147
147
  i.flag.bm:before,
148
148
  i.flag.bermuda:before {
149
- background-position: 0px -650px;
149
+ background-position: 0 -650px;
150
150
  }
151
151
  i.flag.bn:before,
152
152
  i.flag.brunei:before {
153
- background-position: 0px -676px;
153
+ background-position: 0 -676px;
154
154
  }
155
155
  i.flag.bo:before,
156
156
  i.flag.bolivia:before {
157
- background-position: 0px -702px;
157
+ background-position: 0 -702px;
158
158
  }
159
159
  i.flag.br:before,
160
160
  i.flag.brazil:before {
161
- background-position: 0px -728px;
161
+ background-position: 0 -728px;
162
162
  }
163
163
  i.flag.bs:before,
164
164
  i.flag.bahamas:before {
165
- background-position: 0px -754px;
165
+ background-position: 0 -754px;
166
166
  }
167
167
  i.flag.bt:before,
168
168
  i.flag.bhutan:before {
169
- background-position: 0px -780px;
169
+ background-position: 0 -780px;
170
170
  }
171
171
  i.flag.bv:before,
172
172
  i.flag.bouvet.island:before {
173
- background-position: 0px -806px;
173
+ background-position: 0 -806px;
174
174
  }
175
175
  i.flag.bw:before,
176
176
  i.flag.botswana:before {
177
- background-position: 0px -832px;
177
+ background-position: 0 -832px;
178
178
  }
179
179
  i.flag.by:before,
180
180
  i.flag.belarus:before {
181
- background-position: 0px -858px;
181
+ background-position: 0 -858px;
182
182
  }
183
183
  i.flag.bz:before,
184
184
  i.flag.belize:before {
185
- background-position: 0px -884px;
185
+ background-position: 0 -884px;
186
186
  }
187
187
  i.flag.ca:before,
188
188
  i.flag.canada:before {
189
- background-position: 0px -910px;
189
+ background-position: 0 -910px;
190
190
  }
191
191
  i.flag.cc:before,
192
192
  i.flag.cocos.islands:before {
193
- background-position: 0px -962px;
193
+ background-position: 0 -962px;
194
194
  }
195
195
  i.flag.cd:before,
196
196
  i.flag.congo:before {
197
- background-position: 0px -988px;
197
+ background-position: 0 -988px;
198
198
  }
199
199
  i.flag.cf:before,
200
200
  i.flag.central.african.republic:before {
201
- background-position: 0px -1014px;
201
+ background-position: 0 -1014px;
202
202
  }
203
203
  i.flag.cg:before,
204
204
  i.flag.congo.brazzaville:before {
205
- background-position: 0px -1040px;
205
+ background-position: 0 -1040px;
206
206
  }
207
207
  i.flag.ch:before,
208
208
  i.flag.switzerland:before {
209
- background-position: 0px -1066px;
209
+ background-position: 0 -1066px;
210
210
  }
211
211
  i.flag.ci:before,
212
212
  i.flag.cote.divoire:before {
213
- background-position: 0px -1092px;
213
+ background-position: 0 -1092px;
214
214
  }
215
215
  i.flag.ck:before,
216
216
  i.flag.cook.islands:before {
217
- background-position: 0px -1118px;
217
+ background-position: 0 -1118px;
218
218
  }
219
219
  i.flag.cl:before,
220
220
  i.flag.chile:before {
221
- background-position: 0px -1144px;
221
+ background-position: 0 -1144px;
222
222
  }
223
223
  i.flag.cm:before,
224
224
  i.flag.cameroon:before {
225
- background-position: 0px -1170px;
225
+ background-position: 0 -1170px;
226
226
  }
227
227
  i.flag.cn:before,
228
228
  i.flag.china:before {
229
- background-position: 0px -1196px;
229
+ background-position: 0 -1196px;
230
230
  }
231
231
  i.flag.co:before,
232
232
  i.flag.colombia:before {
233
- background-position: 0px -1222px;
233
+ background-position: 0 -1222px;
234
234
  }
235
235
  i.flag.cr:before,
236
236
  i.flag.costa.rica:before {
237
- background-position: 0px -1248px;
237
+ background-position: 0 -1248px;
238
238
  }
239
239
  i.flag.cs:before,
240
240
  i.flag.serbia:before {
241
- background-position: 0px -1274px;
241
+ background-position: 0 -1274px;
242
242
  }
243
243
  i.flag.cu:before,
244
244
  i.flag.cuba:before {
245
- background-position: 0px -1300px;
245
+ background-position: 0 -1300px;
246
246
  }
247
247
  i.flag.cv:before,
248
248
  i.flag.cape.verde:before {
249
- background-position: 0px -1326px;
249
+ background-position: 0 -1326px;
250
250
  }
251
251
  i.flag.cx:before,
252
252
  i.flag.christmas.island:before {
253
- background-position: 0px -1352px;
253
+ background-position: 0 -1352px;
254
254
  }
255
255
  i.flag.cy:before,
256
256
  i.flag.cyprus:before {
257
- background-position: 0px -1378px;
257
+ background-position: 0 -1378px;
258
258
  }
259
259
  i.flag.cz:before,
260
260
  i.flag.czech.republic:before {
261
- background-position: 0px -1404px;
261
+ background-position: 0 -1404px;
262
262
  }
263
263
  i.flag.de:before,
264
264
  i.flag.germany:before {
265
- background-position: 0px -1430px;
265
+ background-position: 0 -1430px;
266
266
  }
267
267
  i.flag.dj:before,
268
268
  i.flag.djibouti:before {
269
- background-position: 0px -1456px;
269
+ background-position: 0 -1456px;
270
270
  }
271
271
  i.flag.dk:before,
272
272
  i.flag.denmark:before {
273
- background-position: 0px -1482px;
273
+ background-position: 0 -1482px;
274
274
  }
275
275
  i.flag.dm:before,
276
276
  i.flag.dominica:before {
277
- background-position: 0px -1508px;
277
+ background-position: 0 -1508px;
278
278
  }
279
279
  i.flag.do:before,
280
280
  i.flag.dominican.republic:before {
281
- background-position: 0px -1534px;
281
+ background-position: 0 -1534px;
282
282
  }
283
283
  i.flag.dz:before,
284
284
  i.flag.algeria:before {
285
- background-position: 0px -1560px;
285
+ background-position: 0 -1560px;
286
286
  }
287
287
  i.flag.ec:before,
288
288
  i.flag.ecuador:before {
289
- background-position: 0px -1586px;
289
+ background-position: 0 -1586px;
290
290
  }
291
291
  i.flag.ee:before,
292
292
  i.flag.estonia:before {
293
- background-position: 0px -1612px;
293
+ background-position: 0 -1612px;
294
294
  }
295
295
  i.flag.eg:before,
296
296
  i.flag.egypt:before {
297
- background-position: 0px -1638px;
297
+ background-position: 0 -1638px;
298
298
  }
299
299
  i.flag.eh:before,
300
300
  i.flag.western.sahara:before {
301
- background-position: 0px -1664px;
301
+ background-position: 0 -1664px;
302
302
  }
303
303
  i.flag.gb.eng:before,
304
304
  i.flag.england:before {
305
- background-position: 0px -1690px;
305
+ background-position: 0 -1690px;
306
306
  }
307
307
  i.flag.er:before,
308
308
  i.flag.eritrea:before {
309
- background-position: 0px -1716px;
309
+ background-position: 0 -1716px;
310
310
  }
311
311
  i.flag.es:before,
312
312
  i.flag.spain:before {
313
- background-position: 0px -1742px;
313
+ background-position: 0 -1742px;
314
314
  }
315
315
  i.flag.et:before,
316
316
  i.flag.ethiopia:before {
317
- background-position: 0px -1768px;
317
+ background-position: 0 -1768px;
318
318
  }
319
319
  i.flag.eu:before,
320
320
  i.flag.european.union:before {
321
- background-position: 0px -1794px;
321
+ background-position: 0 -1794px;
322
322
  }
323
323
  i.flag.fi:before,
324
324
  i.flag.finland:before {
325
- background-position: 0px -1846px;
325
+ background-position: 0 -1846px;
326
326
  }
327
327
  i.flag.fj:before,
328
328
  i.flag.fiji:before {
329
- background-position: 0px -1872px;
329
+ background-position: 0 -1872px;
330
330
  }
331
331
  i.flag.fk:before,
332
332
  i.flag.falkland.islands:before {
333
- background-position: 0px -1898px;
333
+ background-position: 0 -1898px;
334
334
  }
335
335
  i.flag.fm:before,
336
336
  i.flag.micronesia:before {
337
- background-position: 0px -1924px;
337
+ background-position: 0 -1924px;
338
338
  }
339
339
  i.flag.fo:before,
340
340
  i.flag.faroe.islands:before {
341
- background-position: 0px -1950px;
341
+ background-position: 0 -1950px;
342
342
  }
343
343
  i.flag.fr:before,
344
344
  i.flag.france:before {
345
- background-position: 0px -1976px;
345
+ background-position: 0 -1976px;
346
346
  }
347
347
  i.flag.ga:before,
348
348
  i.flag.gabon:before {
349
- background-position: -36px 0px;
349
+ background-position: -36px 0;
350
350
  }
351
351
  i.flag.gb:before,
352
352
  i.flag.uk:before,
@@ -656,7 +656,7 @@ i.flag.malawi:before {
656
656
  }
657
657
  i.flag.mx:before,
658
658
  i.flag.mexico:before {
659
- background-position: -72px 0px;
659
+ background-position: -72px 0;
660
660
  }
661
661
  i.flag.my:before,
662
662
  i.flag.malaysia:before {
@@ -966,7 +966,7 @@ i.flag.uruguay:before {
966
966
  }
967
967
  i.flag.uz:before,
968
968
  i.flag.uzbekistan:before {
969
- background-position: -108px 0px;
969
+ background-position: -108px 0;
970
970
  }
971
971
  i.flag.va:before,
972
972
  i.flag.vatican.city:before {