beyond-rails 0.0.139

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/src/font/icomoon.eot +0 -0
  3. data/src/font/icomoon.svg +125 -0
  4. data/src/font/icomoon.ttf +0 -0
  5. data/src/font/icomoon.woff +0 -0
  6. data/src/img/black-cat.svg +15 -0
  7. data/src/img/cart.svg +16 -0
  8. data/src/img/china-flag.svg +16 -0
  9. data/src/img/ecpay.svg +12 -0
  10. data/src/img/family-mart.svg +13 -0
  11. data/src/img/fb-messenger.svg +12 -0
  12. data/src/img/fb.svg +10 -0
  13. data/src/img/hct.svg +16 -0
  14. data/src/img/hi-life.svg +23 -0
  15. data/src/img/line.svg +14 -0
  16. data/src/img/ok-mart.svg +9 -0
  17. data/src/img/pelican.svg +33 -0
  18. data/src/img/seven-eleven.svg +13 -0
  19. data/src/img/smilepay.svg +13 -0
  20. data/src/img/taiwan-flag.svg +17 -0
  21. data/src/js/components/Alert.js +23 -0
  22. data/src/js/components/Autocomplete.js +110 -0
  23. data/src/js/components/AutocompleteMenu.js +88 -0
  24. data/src/js/components/Btn.js +41 -0
  25. data/src/js/components/Checkbox.js +24 -0
  26. data/src/js/components/DateInput.js +74 -0
  27. data/src/js/components/DateMenu.js +370 -0
  28. data/src/js/components/DateTimeRanger.js +436 -0
  29. data/src/js/components/Datepicker.js +250 -0
  30. data/src/js/components/DatepickerBtnArrow.js +18 -0
  31. data/src/js/components/Dropdown.js +137 -0
  32. data/src/js/components/Menu.js +43 -0
  33. data/src/js/components/Modal.js +76 -0
  34. data/src/js/components/Navbar.js +47 -0
  35. data/src/js/components/Radio.js +24 -0
  36. data/src/js/components/SearchDropdown.js +339 -0
  37. data/src/js/components/Sidebar.js +56 -0
  38. data/src/js/components/Tabbox.js +229 -0
  39. data/src/js/components/TimeInput.js +71 -0
  40. data/src/js/components/TimeMenu.js +117 -0
  41. data/src/js/components/Toast.js +47 -0
  42. data/src/js/components/ToastItem.js +62 -0
  43. data/src/js/components/Tooltip.js +94 -0
  44. data/src/js/consts/createdComponents.js +1 -0
  45. data/src/js/consts/index.js +5 -0
  46. data/src/js/helpers/bind.js +53 -0
  47. data/src/js/helpers/dateEq.js +5 -0
  48. data/src/js/helpers/dateGt.js +5 -0
  49. data/src/js/helpers/dateLt.js +5 -0
  50. data/src/js/helpers/docReady.js +10 -0
  51. data/src/js/helpers/getFloatedTargetPos.js +250 -0
  52. data/src/js/helpers/getKey.js +14 -0
  53. data/src/js/helpers/isTouchDevice.js +3 -0
  54. data/src/js/helpers/msToS.js +3 -0
  55. data/src/js/helpers/promisify.js +9 -0
  56. data/src/js/helpers/range.js +7 -0
  57. data/src/js/helpers/supportDom.js +46 -0
  58. data/src/js/helpers/toPixel.js +3 -0
  59. data/src/js/helpers/unbindAll.js +6 -0
  60. data/src/js/index.js +47 -0
  61. data/src/js/jquery/bindAlertFn.js +13 -0
  62. data/src/js/jquery/bindAutocompleteFn.js +13 -0
  63. data/src/js/jquery/bindBtnFn.js +17 -0
  64. data/src/js/jquery/bindCheckboxFn.js +13 -0
  65. data/src/js/jquery/bindDateTimeRangerFn.js +14 -0
  66. data/src/js/jquery/bindDatepickerFn.js +14 -0
  67. data/src/js/jquery/bindDropdownFn.js +14 -0
  68. data/src/js/jquery/bindMenuFn.js +13 -0
  69. data/src/js/jquery/bindModalFn.js +14 -0
  70. data/src/js/jquery/bindNavbarFn.js +13 -0
  71. data/src/js/jquery/bindRadioFn.js +13 -0
  72. data/src/js/jquery/bindSearchDropdownFn.js +14 -0
  73. data/src/js/jquery/bindSidebarFn.js +13 -0
  74. data/src/js/jquery/bindTabboxFn.js +13 -0
  75. data/src/js/jquery/bindToastFn.js +6 -0
  76. data/src/js/jquery/bindTooltipFn.js +13 -0
  77. data/src/js/jquery/index.js +52 -0
  78. data/src/js/polyfills/classList.js +263 -0
  79. data/src/js/polyfills/elementDataset.js +3 -0
  80. data/src/js/polyfills/nodeContains.js +17 -0
  81. data/src/js/polyfills/nodeHasAttribute.js +5 -0
  82. data/src/js/polyfills/nodeRemove.js +19 -0
  83. data/src/sass/_beyond-sprockets.scss +1 -0
  84. data/src/sass/_beyond.scss +50 -0
  85. data/src/sass/_main.scss +141 -0
  86. data/src/sass/abstracts/_mixins.scss +129 -0
  87. data/src/sass/abstracts/_placeholders.scss +43 -0
  88. data/src/sass/abstracts/_variables.scss +355 -0
  89. data/src/sass/base/_background.scss +10 -0
  90. data/src/sass/base/_typography.scss +183 -0
  91. data/src/sass/components/_alert.scss +50 -0
  92. data/src/sass/components/_autocomplete.scss +29 -0
  93. data/src/sass/components/_avatar.scss +28 -0
  94. data/src/sass/components/_badge.scss +29 -0
  95. data/src/sass/components/_breadcrumb.scss +17 -0
  96. data/src/sass/components/_btn-group.scss +19 -0
  97. data/src/sass/components/_btn.scss +172 -0
  98. data/src/sass/components/_card.scss +183 -0
  99. data/src/sass/components/_checkbox.scss +99 -0
  100. data/src/sass/components/_date-input.scss +28 -0
  101. data/src/sass/components/_date-menu.scss +85 -0
  102. data/src/sass/components/_date-time-ranger.scss +21 -0
  103. data/src/sass/components/_datepicker.scss +3 -0
  104. data/src/sass/components/_dropdown.scss +144 -0
  105. data/src/sass/components/_form.scss +383 -0
  106. data/src/sass/components/_icon.scss +371 -0
  107. data/src/sass/components/_input.scss +48 -0
  108. data/src/sass/components/_list.scss +23 -0
  109. data/src/sass/components/_modal.scss +72 -0
  110. data/src/sass/components/_nav.scss +75 -0
  111. data/src/sass/components/_navbar.scss +211 -0
  112. data/src/sass/components/_pagination.scss +64 -0
  113. data/src/sass/components/_radio.scss +71 -0
  114. data/src/sass/components/_search-dropdown.scss +28 -0
  115. data/src/sass/components/_select.scss +54 -0
  116. data/src/sass/components/_sidebar.scss +35 -0
  117. data/src/sass/components/_spinner.scss +79 -0
  118. data/src/sass/components/_tabbox.scss +83 -0
  119. data/src/sass/components/_table.scss +65 -0
  120. data/src/sass/components/_tag.scss +43 -0
  121. data/src/sass/components/_time-input.scss +28 -0
  122. data/src/sass/components/_time-menu.scss +24 -0
  123. data/src/sass/components/_toast.scss +51 -0
  124. data/src/sass/components/_tooltip.scss +10 -0
  125. data/src/sass/img/arrow-dropdown.svg +4 -0
  126. data/src/sass/img/arrow-select-ex.svg +18 -0
  127. data/src/sass/img/arrow-select.svg +18 -0
  128. data/src/sass/layout/_border-util.scss +36 -0
  129. data/src/sass/layout/_col.scss +90 -0
  130. data/src/sass/layout/_container.scss +44 -0
  131. data/src/sass/layout/_flex-util.scss +18 -0
  132. data/src/sass/layout/_offset-util.scss +20 -0
  133. data/src/sass/layout/_sizing-util.scss +14 -0
  134. data/src/sass/layout/_spacing-util.scss +9 -0
  135. data/src/sass/layout/_visibility-util.scss +25 -0
  136. data/src/sass/vendor/_normalize.scss +578 -0
  137. data/src/sass/vendor/_turbolink.scss +5 -0
  138. metadata +235 -0
@@ -0,0 +1,383 @@
1
+ fieldset {
2
+ min-width: 0;
3
+ padding: 0;
4
+ margin: 0;
5
+ border: 0;
6
+ }
7
+
8
+ .form {
9
+ .btn.btn-form {
10
+ text-shadow: 0 1px 0 #fff;
11
+ color: #333;
12
+ background: linear-gradient(#ccd0d6, #adb2bb);
13
+ border: 1px solid #ccc;
14
+ box-shadow: none;
15
+ font-size: 12px;
16
+ font-weight: 400;
17
+ padding: 0;
18
+ overflow: hidden;
19
+ > span {
20
+ display: inline-block;
21
+ padding: 2px 10px;
22
+ background: linear-gradient(#f7f8fa, #eff1f4);
23
+ }
24
+ &:hover {
25
+ transform: none;
26
+ }
27
+ &:focus {
28
+ @include focus-outline;
29
+ }
30
+ }
31
+ a {
32
+ margin-top: 7px;
33
+ display: block;
34
+ font-size: 12px;
35
+ }
36
+ background-color: #fff;
37
+ .form-header {
38
+ padding: 16px 20px;
39
+ box-shadow: inset 0 -1px #e3e8ee;
40
+ }
41
+ .form-content {
42
+ padding: 16px 20px;
43
+ }
44
+ .form-heading {
45
+ color: #1a1f36;
46
+ font-size: 16px;
47
+ font-weight: 500;
48
+ line-height: 26px;
49
+ }
50
+ .form-heading-desc {
51
+ color: #3c4257;
52
+ font-size: 14px;
53
+ line-height: 30px;
54
+ }
55
+ .field {
56
+ margin-bottom: 15px;
57
+ .label {
58
+ vertical-align: top;
59
+ display: inline-block;
60
+ font-size: 14px;
61
+ width: 160px;
62
+ text-shadow: 0 1px 0 #fff;
63
+ color: #555;
64
+ }
65
+ .control {
66
+ display: inline-block;
67
+ }
68
+ }
69
+ .form-footer {
70
+ text-align: right;
71
+ padding: 16px 20px;
72
+ box-shadow: inset 0 1px #e3e8ee;
73
+ }
74
+ .hint {
75
+ margin: 7px 0;
76
+ }
77
+ }
78
+
79
+ .form-inline {
80
+ display: flex;
81
+ align-items: center;
82
+ flex-flow: row wrap;
83
+ .form-group {
84
+ margin-bottom: 0;
85
+ }
86
+ }
87
+
88
+ .hint {
89
+ font-size: 13px;
90
+ display: block;
91
+ color: #5469d4;
92
+ }
93
+
94
+ .hint.hint-danger {
95
+ color: #e03953;
96
+ &:before {
97
+ font-family: 'icomoon';
98
+ margin-right: 4px;
99
+ display: inline-block;
100
+ transform: translateY(1px);
101
+ color: #e03953;
102
+ @extend .icon-exclamation-triangle:before
103
+ }
104
+ }
105
+
106
+ .form.form-vertical {
107
+ .field .label {
108
+ color: #1a1f36;
109
+ display: block;
110
+ }
111
+ }
112
+
113
+ .form-group {
114
+ margin-bottom: 1rem;
115
+ }
116
+
117
+ label {
118
+ display: inline-block;
119
+ margin-bottom: .5rem;
120
+ }
121
+
122
+ .col .form-control,
123
+ [class*=col-] .form-control {
124
+ width: 100%;
125
+ }
126
+
127
+ .form-control {
128
+ @extend %form-control;
129
+ padding: 5px 7px 6px;
130
+ background-color: #fff;
131
+ background-clip: padding-box;
132
+ border-radius: 4px;
133
+ box-shadow: 0 0 0 1px rgba(60, 66, 87, .16),
134
+ 0 1px 1px 0 rgba(0, 0, 0, .12);
135
+ transition: box-shadow .15s ease-in-out;
136
+
137
+ &:focus {
138
+ @include focus-outline;
139
+ }
140
+ }
141
+
142
+ .form-control-plaintext {
143
+ @extend %form-control;
144
+ height: 100%;
145
+ padding: 6px 0;
146
+ background-color: transparent;
147
+ }
148
+
149
+ .col-form-label-lg {
150
+ padding-top: calc(.5rem + 1px);
151
+ padding-bottom: calc(.5rem + 1px);
152
+ font-size: 1.25rem;
153
+ line-height: 1.5;
154
+ }
155
+ .col-form-label {
156
+ padding-top: calc(.375rem + 1px);
157
+ padding-bottom: calc(.375rem + 1px);
158
+ margin-bottom: 0;
159
+ font-size: inherit;
160
+ line-height: 1.5;
161
+ }
162
+ .col-form-label-sm {
163
+ padding-top: calc(.25rem + 1px);
164
+ padding-bottom: calc(.25rem + 1px);
165
+ font-size: .875rem;
166
+ line-height: 1.5;
167
+ }
168
+ .col-form-field {
169
+ display: flex;
170
+ align-items: center;
171
+ .form-check {
172
+ transform: translateY(-2px);
173
+ margin-bottom: 0;
174
+ }
175
+ }
176
+
177
+ .form-control-lg {
178
+ padding: .5rem 1rem;
179
+ font-size: 1.25rem;
180
+ line-height: 1.5;
181
+ border-radius: .3rem;
182
+ }
183
+
184
+ .form-control-sm {
185
+ padding: .25rem .5rem;
186
+ font-size: .875rem;
187
+ line-height: 1.5;
188
+ border-radius: .2rem;
189
+ }
190
+
191
+ .form-control,
192
+ .form-control-lg,
193
+ .form-control-sm,
194
+ .form-control-plaintext {
195
+ &.is-valid {
196
+ box-shadow: 0 0 0 1px $txt-color-success;
197
+ }
198
+ &.is-invalid {
199
+ box-shadow: 0 0 0 1px $txt-color-danger;
200
+ }
201
+ &:disabled {
202
+ cursor: not-allowed;
203
+ }
204
+ &:disabled,
205
+ &[readonly] {
206
+ color: #111;
207
+ background-color: #e9ecef;
208
+ }
209
+ }
210
+ .form-control-plaintext {
211
+ &[readonly] {
212
+ background: transparent;
213
+ }
214
+ }
215
+
216
+ .valid-feedback,
217
+ .invalid-feedback {
218
+ font-size: 80%;
219
+ margin-top: .35rem;
220
+ &:before {
221
+ font-family: 'icomoon';
222
+ display: inline-block;
223
+ }
224
+ }
225
+
226
+ .valid-feedback {
227
+ color: $txt-color-success;
228
+ &:before {
229
+ margin-right: 4px;
230
+ transform: translateY(1px);
231
+ color: $txt-color-success;
232
+ @extend .icon-check:before
233
+ }
234
+ }
235
+
236
+ .invalid-feedback {
237
+ color: $txt-color-danger;
238
+ &:before {
239
+ margin-right: 4px;
240
+ transform: translateY(1px);
241
+ color: $txt-color-danger;
242
+ @extend .icon-exclamation-triangle:before
243
+ }
244
+ }
245
+
246
+ .form-txt {
247
+ display: block;
248
+ margin-top: .25rem;
249
+ }
250
+
251
+ .form-check-label {
252
+ margin-bottom: 0;
253
+ }
254
+
255
+ .form-check.form-check-inline {
256
+ display: inline-flex;
257
+ align-items: center;
258
+ padding-left: 0;
259
+ margin-right: .75rem;
260
+
261
+ .checkbox,
262
+ .radio {
263
+ transform: translateY(0);
264
+ }
265
+ .checkbox + span,
266
+ .radio + span {
267
+ position: relative;
268
+ margin-left: 7px;
269
+ }
270
+ }
271
+
272
+ .form-check {
273
+ margin-bottom: 1rem;
274
+ display: block;
275
+ padding: 6px 0;
276
+ cursor: pointer;
277
+ margin-right: 25px;
278
+ vertical-align: middle;
279
+ color: #3c4257;
280
+ font-size: 14px;
281
+ .checkbox + span,
282
+ .radio + span {
283
+ position: relative;
284
+ margin-left: 4px;
285
+ }
286
+ .checkbox .icon-checkbox {
287
+ transform: translateY(-1px);
288
+ }
289
+ &.disabled {
290
+ color: #6c757d;
291
+ cursor: not-allowed;
292
+ .checkbox {
293
+ @extend %checkbox-disabled;
294
+ }
295
+ .radio {
296
+ @extend %radio-disabled;
297
+ }
298
+ }
299
+ span.is-valid {
300
+ color: $txt-color-success;
301
+ }
302
+ span.is-invalid {
303
+ color: $txt-color-danger;
304
+ }
305
+ }
306
+
307
+ .form-row {
308
+ @extend %row;
309
+ margin-left: -5px;
310
+ margin-right: -5px;
311
+ }
312
+ .form-row > .col, .form-row > [class*=col-] {
313
+ padding-left: 5px;
314
+ padding-right: 15px;
315
+ }
316
+
317
+ .form-control-file {
318
+ display: block;
319
+ width: 100%;
320
+ }
321
+
322
+ input[type="file"] {
323
+ line-height: 1;
324
+ }
325
+
326
+ .input-group {
327
+ position: relative;
328
+ display: flex;
329
+ flex-wrap: wrap;
330
+ align-items: stretch;
331
+ width: 100%;
332
+ > .form-control {
333
+ flex: 1 1 0%;
334
+ }
335
+ }
336
+
337
+ .input-group-text {
338
+ display: flex;
339
+ align-items: center;
340
+ padding: .25rem .75rem;
341
+ margin-bottom: 0;
342
+ font-size: 1rem;
343
+ font-weight: 400;
344
+ line-height: 1.5;
345
+ color: #495057;
346
+ text-align: center;
347
+ white-space: nowrap;
348
+ background-color: #e9ecef;
349
+ border: 0;
350
+ box-shadow: 0 0 0 1px rgba(60, 66, 87, .16),
351
+ 0 1px 1px 0 rgba(0, 0, 0, .12);
352
+ border-radius: .25rem;
353
+ }
354
+
355
+ .input-group-prepend {
356
+ margin-right: -1px;
357
+ }
358
+
359
+ .input-group > .form-control:not(:first-child) {
360
+ border-top-left-radius: 0;
361
+ border-bottom-left-radius: 0;
362
+ }
363
+
364
+ @media (min-width: $screen-sm) {
365
+ .form-inline {
366
+ .form-control {
367
+ width: auto;
368
+ }
369
+ .input-group {
370
+ width: auto;
371
+ }
372
+ .form-group {
373
+ display: flex;
374
+ flex: 0 0 auto;
375
+ flex-flow: row wrap;
376
+ align-items: center;
377
+ margin-bottom: 0;
378
+ }
379
+ label {
380
+ margin-bottom: 0;
381
+ }
382
+ }
383
+ }
@@ -0,0 +1,371 @@
1
+ @font-face {
2
+ font-family: 'icomoon';
3
+ src: url(beyond-font-path('#{$beyond-icon-font-path}#{$beyond-icon-font-name}.eot?sxulqz'));
4
+ src: url(beyond-font-path('#{$beyond-icon-font-path}#{$beyond-icon-font-name}.eot?sxulqz#iefix')) format('embedded-opentype'),
5
+ url(beyond-font-path('#{$beyond-icon-font-path}#{$beyond-icon-font-name}.ttf?sxulqz')) format('truetype'),
6
+ url(beyond-font-path('#{$beyond-icon-font-path}#{$beyond-icon-font-name}.woff?sxulqz')) format('woff'),
7
+ url(beyond-font-path('#{$beyond-icon-font-path}#{$beyond-icon-font-name}.svg?sxulqz#icomoon')) format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ font-display: block;
11
+ }
12
+
13
+ [class^="icon-"], [class*=" icon-"] {
14
+ /* use !important to prevent issues with browser extensions that change fonts */
15
+ font-family: 'icomoon' !important;
16
+ speak: none;
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ font-variant: normal;
20
+ text-transform: none;
21
+ line-height: 1;
22
+
23
+ /* Better Font Rendering =========== */
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+ .icon-a:before {
28
+ content: "\e900";
29
+ }
30
+ .icon-arrow-down:before {
31
+ content: "\e901";
32
+ }
33
+ .icon-arrow-left:before {
34
+ content: "\e902";
35
+ }
36
+ .icon-arrow-right:before {
37
+ content: "\e903";
38
+ }
39
+ .icon-arrow-up:before {
40
+ content: "\e904";
41
+ }
42
+ .icon-bank:before {
43
+ content: "\e905";
44
+ }
45
+ .icon-bell-alt:before {
46
+ content: "\e906";
47
+ }
48
+ .icon-bell:before {
49
+ content: "\e907";
50
+ }
51
+ .icon-birthday-cake:before {
52
+ content: "\e908";
53
+ }
54
+ .icon-black-cat:before {
55
+ content: "\e909";
56
+ }
57
+ .icon-bolt-alt:before {
58
+ content: "\e90a";
59
+ }
60
+ .icon-bolt:before {
61
+ content: "\e90b";
62
+ }
63
+ .icon-brush:before {
64
+ content: "\e90c";
65
+ }
66
+ .icon-calculator:before {
67
+ content: "\e90d";
68
+ }
69
+ .icon-caret-square-up:before {
70
+ content: "\e90e";
71
+ }
72
+ .icon-cart-empty:before {
73
+ content: "\e90f";
74
+ }
75
+ .icon-cart:before {
76
+ content: "\e910";
77
+ }
78
+ .icon-chart-bar:before {
79
+ content: "\e911";
80
+ }
81
+ .icon-check-circle:before {
82
+ content: "\e912";
83
+ }
84
+ .icon-check:before {
85
+ content: "\e913";
86
+ }
87
+ .icon-chevron-down:before {
88
+ content: "\e914";
89
+ }
90
+ .icon-chevron-left:before {
91
+ content: "\e915";
92
+ }
93
+ .icon-chevron-right:before {
94
+ content: "\e916";
95
+ }
96
+ .icon-chevron-up:before {
97
+ content: "\e917";
98
+ }
99
+ .icon-clock:before {
100
+ content: "\e918";
101
+ }
102
+ .icon-code:before {
103
+ content: "\e919";
104
+ }
105
+ .icon-cog:before {
106
+ content: "\e91a";
107
+ }
108
+ .icon-cogs:before {
109
+ content: "\e91b";
110
+ }
111
+ .icon-comments:before {
112
+ content: "\e91c";
113
+ }
114
+ .icon-copy:before {
115
+ content: "\e91d";
116
+ }
117
+ .icon-cross-circle:before {
118
+ content: "\e91e";
119
+ }
120
+ .icon-cross:before {
121
+ content: "\e91f";
122
+ }
123
+ .icon-doc:before {
124
+ content: "\e920";
125
+ }
126
+ .icon-dollar-alt:before {
127
+ content: "\e921";
128
+ }
129
+ .icon-dollar:before {
130
+ content: "\e922";
131
+ }
132
+ .icon-dot-circle-alt:before {
133
+ content: "\e923";
134
+ }
135
+ .icon-dot-circle:before {
136
+ content: "\e924";
137
+ }
138
+ .icon-download:before {
139
+ content: "\e925";
140
+ }
141
+ .icon-earth:before {
142
+ content: "\e926";
143
+ }
144
+ .icon-ecpay:before {
145
+ content: "\e927";
146
+ }
147
+ .icon-ellipsis-h:before {
148
+ content: "\e928";
149
+ }
150
+ .icon-ellipsis-v:before {
151
+ content: "\e929";
152
+ }
153
+ .icon-envelop:before {
154
+ content: "\e92a";
155
+ }
156
+ .icon-exchange:before {
157
+ content: "\e92b";
158
+ }
159
+ .icon-exclamation-triangle:before {
160
+ content: "\e92c";
161
+ }
162
+ .icon-external-link:before {
163
+ content: "\e92d";
164
+ }
165
+ .icon-family-mart:before {
166
+ content: "\e92e";
167
+ }
168
+ .icon-fb-messenger:before {
169
+ content: "\e92f";
170
+ }
171
+ .icon-fb:before {
172
+ content: "\e930";
173
+ }
174
+ .icon-female:before {
175
+ content: "\e931";
176
+ }
177
+ .icon-file-alt:before {
178
+ content: "\e932";
179
+ }
180
+ .icon-file:before {
181
+ content: "\e933";
182
+ }
183
+ .icon-h:before {
184
+ content: "\e934";
185
+ }
186
+ .icon-hamburger:before {
187
+ content: "\e935";
188
+ }
189
+ .icon-hct:before {
190
+ content: "\e936";
191
+ }
192
+ .icon-hi-life:before {
193
+ content: "\e937";
194
+ }
195
+ .icon-horn:before {
196
+ content: "\e938";
197
+ }
198
+ .icon-image-alt:before {
199
+ content: "\e939";
200
+ }
201
+ .icon-image:before {
202
+ content: "\e93a";
203
+ }
204
+ .icon-images-alt:before {
205
+ content: "\e93b";
206
+ }
207
+ .icon-images:before {
208
+ content: "\e93c";
209
+ }
210
+ .icon-invoice:before {
211
+ content: "\e93d";
212
+ }
213
+ .icon-kafen:before {
214
+ content: "\e93e";
215
+ }
216
+ .icon-language:before {
217
+ content: "\e93f";
218
+ }
219
+ .icon-line:before {
220
+ content: "\e940";
221
+ }
222
+ .icon-link:before {
223
+ content: "\e941";
224
+ }
225
+ .icon-list:before {
226
+ content: "\e942";
227
+ }
228
+ .icon-lock:before {
229
+ content: "\e943";
230
+ }
231
+ .icon-male:before {
232
+ content: "\e944";
233
+ }
234
+ .icon-medium-alt:before {
235
+ content: "\e945";
236
+ }
237
+ .icon-medium:before {
238
+ content: "\e946";
239
+ }
240
+ .icon-move:before {
241
+ content: "\e947";
242
+ }
243
+ .icon-ok-mart:before {
244
+ content: "\e948";
245
+ }
246
+ .icon-paper-plane:before {
247
+ content: "\e949";
248
+ }
249
+ .icon-pause:before {
250
+ content: "\e94a";
251
+ }
252
+ .icon-pelican:before {
253
+ content: "\e94b";
254
+ }
255
+ .icon-pencil:before {
256
+ content: "\e94c";
257
+ }
258
+ .icon-pie:before {
259
+ content: "\e94d";
260
+ }
261
+ .icon-play:before {
262
+ content: "\e94e";
263
+ }
264
+ .icon-plus:before {
265
+ content: "\e94f";
266
+ }
267
+ .icon-question-mark:before {
268
+ content: "\e950";
269
+ }
270
+ .icon-random:before {
271
+ content: "\e951";
272
+ }
273
+ .icon-refresh:before {
274
+ content: "\e952";
275
+ }
276
+ .icon-refund-alt:before {
277
+ content: "\e953";
278
+ }
279
+ .icon-refund:before {
280
+ content: "\e954";
281
+ }
282
+ .icon-search:before {
283
+ content: "\e955";
284
+ }
285
+ .icon-seven-eleven:before {
286
+ content: "\e956";
287
+ }
288
+ .icon-shipping:before {
289
+ content: "\e957";
290
+ }
291
+ .icon-sign-out:before {
292
+ content: "\e958";
293
+ }
294
+ .icon-site-map:before {
295
+ content: "\e959";
296
+ }
297
+ .icon-smilepay:before {
298
+ content: "\e95a";
299
+ }
300
+ .icon-sms:before {
301
+ content: "\e95b";
302
+ }
303
+ .icon-star-alt:before {
304
+ content: "\e95c";
305
+ }
306
+ .icon-star:before {
307
+ content: "\e95d";
308
+ }
309
+ .icon-sticky-alt:before {
310
+ content: "\e95e";
311
+ }
312
+ .icon-sticky:before {
313
+ content: "\e95f";
314
+ }
315
+ .icon-super-landing-alt:before {
316
+ content: "\e960";
317
+ }
318
+ .icon-super-landing:before {
319
+ content: "\e961";
320
+ }
321
+ .icon-tachometer:before {
322
+ content: "\e962";
323
+ }
324
+ .icon-tag:before {
325
+ content: "\e963";
326
+ }
327
+ .icon-tasks:before {
328
+ content: "\e964";
329
+ }
330
+ .icon-text-cog:before {
331
+ content: "\e965";
332
+ }
333
+ .icon-trash:before {
334
+ content: "\e966";
335
+ }
336
+ .icon-upload:before {
337
+ content: "\e967";
338
+ }
339
+ .icon-user-alt:before {
340
+ content: "\e968";
341
+ }
342
+ .icon-user:before {
343
+ content: "\e969";
344
+ }
345
+ .icon-users-alt:before {
346
+ content: "\e96a";
347
+ }
348
+ .icon-users:before {
349
+ content: "\e96b";
350
+ }
351
+ .icon-window-maximize:before {
352
+ content: "\e96c";
353
+ }
354
+ .icon-youtube:before {
355
+ content: "\e96d";
356
+ }
357
+ .icon-flag:before {
358
+ content: "\e96f";
359
+ }
360
+ .icon-rocket:before {
361
+ content: "\e96e";
362
+ }
363
+ .icon-store:before {
364
+ content: "\e970";
365
+ }
366
+ .icon-calendar:before {
367
+ content: "\e971";
368
+ }
369
+ .icon-minus:before {
370
+ content: "\e972";
371
+ }