uol_frontend_framework_rails 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +41 -0
  4. data/lib/uol_frontend_framework_rails.rb +13 -0
  5. data/lib/uol_frontend_framework_rails/version.rb +3 -0
  6. data/vendor/assets/javascripts/bundle.js +59092 -0
  7. data/vendor/assets/stylesheets/abstracts/app/_all.scss +3 -0
  8. data/vendor/assets/stylesheets/abstracts/app/_functions.scss +1 -0
  9. data/vendor/assets/stylesheets/abstracts/app/_variables.scss +120 -0
  10. data/vendor/assets/stylesheets/abstracts/common/_functions.scss +4 -0
  11. data/vendor/assets/stylesheets/abstracts/common/_variables.scss +14 -0
  12. data/vendor/assets/stylesheets/abstracts/web/_all.scss +3 -0
  13. data/vendor/assets/stylesheets/abstracts/web/_functions.scss +1 -0
  14. data/vendor/assets/stylesheets/abstracts/web/_variables.scss +146 -0
  15. data/vendor/assets/stylesheets/app.scss +7 -0
  16. data/vendor/assets/stylesheets/base/app/_all.scss +6 -0
  17. data/vendor/assets/stylesheets/base/common/_grid.scss +67 -0
  18. data/vendor/assets/stylesheets/base/common/_helpers.scss +57 -0
  19. data/vendor/assets/stylesheets/base/common/_reset.scss +33 -0
  20. data/vendor/assets/stylesheets/base/common/_test.scss +36 -0
  21. data/vendor/assets/stylesheets/base/common/_typo.scss +40 -0
  22. data/vendor/assets/stylesheets/base/web/_all.scss +6 -0
  23. data/vendor/assets/stylesheets/components/app/_addressBox.scss +1 -0
  24. data/vendor/assets/stylesheets/components/app/_all.scss +10 -0
  25. data/vendor/assets/stylesheets/components/app/_button.scss +7 -0
  26. data/vendor/assets/stylesheets/components/app/_card.scss +57 -0
  27. data/vendor/assets/stylesheets/components/app/_clickBox.scss +1 -0
  28. data/vendor/assets/stylesheets/components/app/_datePicker.scss +1 -0
  29. data/vendor/assets/stylesheets/components/app/_form.scss +197 -0
  30. data/vendor/assets/stylesheets/components/app/_paginator.scss +3 -0
  31. data/vendor/assets/stylesheets/components/app/_tag.scss +39 -0
  32. data/vendor/assets/stylesheets/components/app/_thumbnail.scss +1 -0
  33. data/vendor/assets/stylesheets/components/common/_addressBox.scss +22 -0
  34. data/vendor/assets/stylesheets/components/common/_button.scss +187 -0
  35. data/vendor/assets/stylesheets/components/common/_clickBox.scss +39 -0
  36. data/vendor/assets/stylesheets/components/common/_datePicker.scss +22 -0
  37. data/vendor/assets/stylesheets/components/common/_thumbnail.scss +8 -0
  38. data/vendor/assets/stylesheets/components/web/_addressBox.scss +1 -0
  39. data/vendor/assets/stylesheets/components/web/_all.scss +18 -0
  40. data/vendor/assets/stylesheets/components/web/_button.scss +5 -0
  41. data/vendor/assets/stylesheets/components/web/_card.scss +58 -0
  42. data/vendor/assets/stylesheets/components/web/_clickBox.scss +1 -0
  43. data/vendor/assets/stylesheets/components/web/_datePicker.scss +1 -0
  44. data/vendor/assets/stylesheets/components/web/_definitionList.scss +12 -0
  45. data/vendor/assets/stylesheets/components/web/_dropdown.scss +14 -0
  46. data/vendor/assets/stylesheets/components/web/_form.scss +288 -0
  47. data/vendor/assets/stylesheets/components/web/_header.scss +186 -0
  48. data/vendor/assets/stylesheets/components/web/_modal.scss +30 -0
  49. data/vendor/assets/stylesheets/components/web/_nav.scss +51 -0
  50. data/vendor/assets/stylesheets/components/web/_paginator.scss +23 -0
  51. data/vendor/assets/stylesheets/components/web/_selectable.scss +361 -0
  52. data/vendor/assets/stylesheets/components/web/_table.scss +68 -0
  53. data/vendor/assets/stylesheets/components/web/_tag.scss +45 -0
  54. data/vendor/assets/stylesheets/components/web/_thumbnail.scss +1 -0
  55. data/vendor/assets/stylesheets/components/web/_typeahead.scss +51 -0
  56. data/vendor/assets/stylesheets/docs.scss +11 -0
  57. data/vendor/assets/stylesheets/vendor/app/_all.scss +0 -0
  58. data/vendor/assets/stylesheets/vendor/web/_all.scss +3 -0
  59. data/vendor/assets/stylesheets/vendor/web/_animate.scss +3340 -0
  60. data/vendor/assets/stylesheets/vendor/web/_normalize.scss +461 -0
  61. data/vendor/assets/stylesheets/web.scss +7 -0
  62. metadata +62 -2
@@ -0,0 +1,186 @@
1
+ .header {
2
+ position: relative;
3
+ height: 55px;
4
+ margin-bottom: $baseline*1.5;
5
+ z-index: $header-zIndex;
6
+ }
7
+
8
+ @media (min-width: 700px) {
9
+ .header {
10
+ height: 70px;
11
+ }
12
+ }
13
+
14
+ .header-inner {
15
+ position: fixed;
16
+ top: 0;
17
+ left: 0;
18
+ width: 100%;
19
+ background: $white;
20
+ border-bottom: 1px solid $color-border;
21
+ box-shadow: 0 0 30px 1px rgba(0,0,0,0.07);
22
+ }
23
+
24
+ .header-content {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ align-items: center;
28
+ height: 55px;
29
+ }
30
+
31
+ @media (min-width: 700px) {
32
+ .header-content {
33
+ justify-content: inherit;
34
+ height: 70px;
35
+ }
36
+ }
37
+
38
+ .header .logo img {
39
+ display: block;
40
+ width: 55px;
41
+ }
42
+
43
+ @media (min-width: 700px) {
44
+ .header .logo img {
45
+ width: 75px;
46
+ }
47
+ }
48
+
49
+ .header .inputGroup {
50
+ display: none;
51
+ margin-left: rem(85px);
52
+ }
53
+
54
+ @media (min-width: 800px) {
55
+ .header .inputGroup {
56
+ display: inline-flex;
57
+ margin-left: rem(85px);
58
+ }
59
+ }
60
+
61
+ .header .formControl {
62
+ width: rem(300px);
63
+ }
64
+
65
+ .header-actions {
66
+ display: flex;
67
+ align-items: center;
68
+ }
69
+
70
+ @media (min-width: 700px) {
71
+ .header-actions {
72
+ margin: 0 0 0 auto;
73
+ }
74
+
75
+ .header-actions > .button:not(:last-of-type) {
76
+ margin-right: $gutter;
77
+ }
78
+ }
79
+
80
+
81
+ .userNav {
82
+ @extend
83
+ .button,
84
+ %button--unstyled,
85
+ %button--dropdown;
86
+ display: none;
87
+ }
88
+
89
+ button.userNav {
90
+ text-align: left;
91
+ line-height: 1.1;
92
+ }
93
+
94
+ .header-actions .quickAddForDesktop {
95
+ display: none;
96
+ }
97
+
98
+ .userNavForMobile .thumbnail {
99
+ width: rem(23px);
100
+ height: rem(23px);
101
+ border-radius: 999rem;
102
+ padding: 2px;
103
+ border: 1px solid $color-border;
104
+ vertical-align: middle;
105
+ }
106
+
107
+ @media (min-width: 700px) {
108
+ .header-mobileActions {
109
+ display: none;
110
+ }
111
+
112
+ .userNav {
113
+ display: inline-block;
114
+ }
115
+
116
+ .header-actions .userNavForMobile {
117
+ display: none;
118
+ }
119
+
120
+ .header-actions .quickAddForMobile {
121
+ display: none;
122
+ }
123
+
124
+ .header-actions .quickAddForDesktop {
125
+ display: block;
126
+ }
127
+ }
128
+
129
+ .userNav .thumbnail {
130
+ vertical-align: middle;
131
+ }
132
+
133
+ .userNav-section {
134
+ vertical-align: middle;
135
+ margin-left: $gutter;
136
+ }
137
+
138
+ .userNav .thumbnail,
139
+ .userNav-section {
140
+ display: none;
141
+ }
142
+
143
+ @media (min-width: 700px) {
144
+ .userNav .thumbnail,
145
+ .userNav-section {
146
+ display: inline-block;
147
+ }
148
+ }
149
+
150
+ .userNav-label {
151
+ font-size: $fontSize-smaller;
152
+ }
153
+
154
+ .userNav-name {
155
+ margin-bottom: $baseline/8;
156
+ }
157
+
158
+ .userNav-name {
159
+ font-weight: 600;
160
+ }
161
+
162
+ .header .button.button--symmetricalIcon {
163
+ font-size: rem(16px);
164
+ }
165
+
166
+ .userMenu {
167
+
168
+ }
169
+
170
+ .userMenu-item {
171
+ display: block;
172
+ color: $color-text;
173
+ }
174
+
175
+ .userMenu > li:not(:last-of-type) .userMenu-item {
176
+ margin-bottom: $baseline/2;
177
+ }
178
+
179
+ .userMenu-item:hover {
180
+ color: $color-primary;
181
+ }
182
+
183
+ .userMenu-separator {
184
+ border-bottom: 1px solid $color-border;
185
+ margin: $baseline/2 0;
186
+ }
@@ -0,0 +1,30 @@
1
+ .modalOverlay {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ position: fixed;
6
+ top: 0;
7
+ bottom: 0;
8
+ left: 0;
9
+ right: 0;
10
+ background: rgba(0,0,0,.7);
11
+ z-index: 9;
12
+ }
13
+
14
+ .modal {
15
+ position: relative;
16
+ background: $white;
17
+ border-radius: $borderRadius;
18
+ padding: $baseline $gutter*2;
19
+ box-shadow: 0 0 30p 5px rgba(0,0,0,.2);
20
+ min-height: 200px;
21
+ min-width: 400px;
22
+ max-width: 500px;
23
+ outline: none;
24
+ }
25
+
26
+ .modal-close {
27
+ position: absolute;
28
+ top: 20px;
29
+ right: 20px;
30
+ }
@@ -0,0 +1,51 @@
1
+ .nav {
2
+ font-size: rem(15px);
3
+ position: fixed;
4
+ }
5
+
6
+ .nav-item {
7
+ display: block;
8
+ padding: $baseline/6 $gutter/2;
9
+ text-decoration: none;
10
+ color: $color-text;
11
+ border-radius: $borderRadius;
12
+ transition: background $transition-duration $transition-type;
13
+ }
14
+
15
+ .nav-item:hover {
16
+ background: #e7e7e7;
17
+ text-decoration: none;
18
+ }
19
+
20
+ .nav-item.is-active {
21
+ background: $color-primary;
22
+ color: $white;
23
+ }
24
+
25
+ .nav-item .fa {
26
+ width: rem(35px);
27
+ padding-right: $gutter;
28
+ }
29
+
30
+ .nav-item .fa:before {
31
+ display: inline-flex;
32
+ justify-content: center;
33
+ align-items: center;
34
+ height: 1.5rem;
35
+ width: 1.5rem;
36
+ border-radius: 999rem;
37
+ }
38
+
39
+ .nav-itemSeparator {
40
+ margin: $baseline 0;
41
+ }
42
+
43
+ .nav-categoryTitle {
44
+ display: inline-block;
45
+ text-transform: uppercase;
46
+ letter-spacing: 1px;
47
+ font-size: rem(12px);
48
+ color: #6e6e6e;
49
+ margin-bottom: $baseline/2;
50
+ cursor: default;
51
+ }
@@ -0,0 +1,23 @@
1
+ .paginator {
2
+ text-align: center;
3
+ padding: $baseline 0;
4
+ }
5
+
6
+ .paginator-list,
7
+ .paginator-list > li,
8
+ .paginator-item {
9
+ display: inline-block;
10
+ }
11
+
12
+ .paginator-list {
13
+ padding: 0 $gutter;
14
+ }
15
+
16
+ .paginator-item {
17
+ color: inherit;
18
+ padding: 0 $gutter/4;
19
+ }
20
+
21
+ .paginator-item.is-active {
22
+ color: $color-primary;
23
+ }
@@ -0,0 +1,361 @@
1
+ .selectable-tag {
2
+ color: lighten($color-text, 50%);
3
+ font-size: rem(12px);
4
+ margin-left: $gutter/2
5
+ }
6
+
7
+ .Select {
8
+ position: relative;
9
+ }
10
+
11
+ .Select.is-disabled > .Select-control {
12
+ cursor: default;
13
+ background-color: #f9f9f9;
14
+ }
15
+ .Select.is-disabled > .Select-control:hover {
16
+ box-shadow: none;
17
+ }
18
+ .Select.is-disabled .Select-arrow-zone {
19
+ cursor: default;
20
+ pointer-events: none;
21
+ opacity: 0.35;
22
+ }
23
+ .Select-control {
24
+ display: flex;
25
+ justify-content: space-between;
26
+ align-items: center;
27
+ width: 100%;
28
+ height: rem(40px);
29
+ background-color: $white;
30
+ border: 1px solid $color-border;
31
+ border-radius: $borderRadius;
32
+ cursor: pointer;
33
+ outline: none;
34
+ overflow: hidden;
35
+ position: relative;
36
+ }
37
+
38
+ .Select-control .Select-input:focus {
39
+ outline: none;
40
+ }
41
+ .is-searchable.is-open > .Select-control {
42
+ cursor: text;
43
+ }
44
+ .is-open > .Select-control {
45
+ border-bottom-right-radius: 0;
46
+ border-bottom-left-radius: 0;
47
+ background: #fff;
48
+ border-color: #b3b3b3 #ccc #d9d9d9;
49
+ }
50
+ .is-open > .Select-control > .Select-arrow {
51
+ border-color: transparent transparent #999;
52
+ border-width: 0 5px 5px;
53
+ }
54
+ .is-searchable.is-focused:not(.is-open) > .Select-control {
55
+ cursor: text;
56
+ }
57
+ .is-focused:not(.is-open) > .Select-control {
58
+ border-color: $color-primary;
59
+ }
60
+ .Select-placeholder,
61
+ .Select--single > .Select-control .Select-value {
62
+ bottom: 0;
63
+ color: #aaa;
64
+ left: 0;
65
+ line-height: rem(40px);
66
+ padding-left: 10px;
67
+ padding-right: 10px;
68
+ position: absolute;
69
+ right: 0;
70
+ top: 0;
71
+ max-width: 100%;
72
+ overflow: hidden;
73
+ text-overflow: ellipsis;
74
+ white-space: nowrap;
75
+ }
76
+ .has-value.Select--single > .Select-control .Select-value .Select-value-label,
77
+ .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
78
+ color: #333;
79
+ }
80
+ .has-value.Select--single > .Select-control .Select-value a.Select-value-label,
81
+ .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
82
+ cursor: pointer;
83
+ text-decoration: none;
84
+ }
85
+ .has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
86
+ .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
87
+ .has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
88
+ .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
89
+ color: #007eff;
90
+ outline: none;
91
+ text-decoration: underline;
92
+ }
93
+ .Select-input {
94
+ height: rem(40px);
95
+ padding-left: 10px;
96
+ padding-right: 10px;
97
+ vertical-align: middle;
98
+ }
99
+ .Select-input > input {
100
+ width: 100%;
101
+ background: none transparent;
102
+ border: 0 none;
103
+ box-shadow: none;
104
+ cursor: default;
105
+ display: inline-block;
106
+ font-family: inherit;
107
+ font-size: inherit;
108
+ margin: 0;
109
+ outline: none;
110
+ line-height: 14px;
111
+ /* For IE 8 compatibility */
112
+ padding: 8px 0 12px;
113
+ /* For IE 8 compatibility */
114
+ -webkit-appearance: none;
115
+ }
116
+ .is-focused .Select-input > input {
117
+ cursor: text;
118
+ }
119
+ .has-value.is-pseudo-focused .Select-input {
120
+ opacity: 0;
121
+ }
122
+ .Select-control:not(.is-searchable) > .Select-input {
123
+ outline: none;
124
+ }
125
+ .Select-loading-zone {
126
+ cursor: pointer;
127
+ display: table-cell;
128
+ position: relative;
129
+ text-align: center;
130
+ vertical-align: middle;
131
+ width: 16px;
132
+ }
133
+ .Select-loading {
134
+ -webkit-animation: Select-animation-spin 400ms infinite linear;
135
+ -o-animation: Select-animation-spin 400ms infinite linear;
136
+ animation: Select-animation-spin 400ms infinite linear;
137
+ width: 16px;
138
+ height: 16px;
139
+ box-sizing: border-box;
140
+ border-radius: 50%;
141
+ border: 2px solid #ccc;
142
+ border-right-color: #333;
143
+ display: inline-block;
144
+ position: relative;
145
+ vertical-align: middle;
146
+ }
147
+ .Select-clear-zone {
148
+ -webkit-animation: Select-animation-fadeIn 200ms;
149
+ -o-animation: Select-animation-fadeIn 200ms;
150
+ animation: Select-animation-fadeIn 200ms;
151
+ color: #999;
152
+ cursor: pointer;
153
+ display: table-cell;
154
+ position: relative;
155
+ text-align: center;
156
+ vertical-align: middle;
157
+ width: 17px;
158
+ }
159
+ .Select-clear-zone:hover {
160
+ color: #D0021B;
161
+ }
162
+ .Select-clear {
163
+ display: inline-block;
164
+ font-size: 18px;
165
+ line-height: 1;
166
+ }
167
+ .Select--multi .Select-clear-zone {
168
+ width: 17px;
169
+ }
170
+ .Select-arrow-zone {
171
+ cursor: pointer;
172
+ display: table-cell;
173
+ position: relative;
174
+ text-align: center;
175
+ vertical-align: middle;
176
+ width: 25px;
177
+ padding-right: 5px;
178
+ }
179
+ .Select-arrow {
180
+ border-color: #999 transparent transparent;
181
+ border-style: solid;
182
+ border-width: 5px 5px 2.5px;
183
+ display: inline-block;
184
+ height: 0;
185
+ width: 0;
186
+ }
187
+ .is-open .Select-arrow,
188
+ .Select-arrow-zone:hover > .Select-arrow {
189
+ border-top-color: #666;
190
+ }
191
+ .Select--multi .Select-multi-value-wrapper {
192
+ display: inline-block;
193
+ }
194
+
195
+ .Select-multi-value-wrapper {
196
+ line-height: rem(40px);
197
+ vertical-align: top;
198
+ }
199
+
200
+ .Select .Select-aria-only {
201
+ display: inline-block;
202
+ height: 1px;
203
+ width: 1px;
204
+ margin: -1px;
205
+ clip: rect(0, 0, 0, 0);
206
+ overflow: hidden;
207
+ }
208
+ @-webkit-keyframes Select-animation-fadeIn {
209
+ from {
210
+ opacity: 0;
211
+ }
212
+ to {
213
+ opacity: 1;
214
+ }
215
+ }
216
+ @keyframes Select-animation-fadeIn {
217
+ from {
218
+ opacity: 0;
219
+ }
220
+ to {
221
+ opacity: 1;
222
+ }
223
+ }
224
+ .Select-menu-outer {
225
+ border-bottom-right-radius: 4px;
226
+ border-bottom-left-radius: 4px;
227
+ background-color: #fff;
228
+ border: 1px solid #ccc;
229
+ border-top-color: #e6e6e6;
230
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
231
+ box-sizing: border-box;
232
+ margin-top: -1px;
233
+ max-height: 200px;
234
+ position: absolute;
235
+ top: 100%;
236
+ width: 100%;
237
+ z-index: 1;
238
+ -webkit-overflow-scrolling: touch;
239
+ }
240
+ .Select-menu {
241
+ max-height: 198px;
242
+ overflow-y: auto;
243
+ }
244
+ .Select-option {
245
+ box-sizing: border-box;
246
+ background-color: #fff;
247
+ color: #666666;
248
+ cursor: pointer;
249
+ display: block;
250
+ padding: 8px 10px;
251
+ }
252
+ .Select-option:last-child {
253
+ border-bottom-right-radius: 4px;
254
+ border-bottom-left-radius: 4px;
255
+ }
256
+ .Select-option.is-selected {
257
+ background-color: $color-primary;
258
+ color: $white;
259
+ }
260
+ .Select-option.is-focused {
261
+ background-color: $body-bg;
262
+ }
263
+ .Select-option.is-disabled {
264
+ color: #cccccc;
265
+ cursor: default;
266
+ }
267
+ .Select-noresults {
268
+ box-sizing: border-box;
269
+ color: #999999;
270
+ cursor: default;
271
+ display: block;
272
+ padding: 8px 10px;
273
+ }
274
+ .Select--multi .Select-input {
275
+ vertical-align: middle;
276
+ margin-left: 10px;
277
+ padding: 0;
278
+ }
279
+ .Select--multi.has-value .Select-input {
280
+ margin-left: 5px;
281
+ }
282
+ .Select--multi .Select-value {
283
+ background-color: #ebf5ff;
284
+ /* Fallback color for IE 8 */
285
+ background-color: rgba(0, 126, 255, 0.08);
286
+ border-radius: 2px;
287
+ border: 1px solid #c2e0ff;
288
+ /* Fallback color for IE 8 */
289
+ border: 1px solid rgba(0, 126, 255, 0.24);
290
+ color: #007eff;
291
+ display: inline-block;
292
+ font-size: 0.9em;
293
+ line-height: 1.4;
294
+ margin-left: 5px;
295
+ margin-top: 5px;
296
+ vertical-align: top;
297
+ }
298
+ .Select--multi .Select-value-icon,
299
+ .Select--multi .Select-value-label {
300
+ display: inline-block;
301
+ vertical-align: middle;
302
+ }
303
+ .Select--multi .Select-value-label {
304
+ border-bottom-right-radius: 2px;
305
+ border-top-right-radius: 2px;
306
+ cursor: default;
307
+ padding: 2px 5px;
308
+ }
309
+ .Select--multi a.Select-value-label {
310
+ color: #007eff;
311
+ cursor: pointer;
312
+ text-decoration: none;
313
+ }
314
+ .Select--multi a.Select-value-label:hover {
315
+ text-decoration: underline;
316
+ }
317
+ .Select--multi .Select-value-icon {
318
+ cursor: pointer;
319
+ border-bottom-left-radius: 2px;
320
+ border-top-left-radius: 2px;
321
+ border-right: 1px solid #c2e0ff;
322
+ /* Fallback color for IE 8 */
323
+ border-right: 1px solid rgba(0, 126, 255, 0.24);
324
+ padding: 1px 5px 3px;
325
+ }
326
+ .Select--multi .Select-value-icon:hover,
327
+ .Select--multi .Select-value-icon:focus {
328
+ background-color: #d8eafd;
329
+ /* Fallback color for IE 8 */
330
+ background-color: rgba(0, 113, 230, 0.08);
331
+ color: #0071e6;
332
+ }
333
+ .Select--multi .Select-value-icon:active {
334
+ background-color: #c2e0ff;
335
+ /* Fallback color for IE 8 */
336
+ background-color: rgba(0, 126, 255, 0.24);
337
+ }
338
+ .Select--multi.is-disabled .Select-value {
339
+ background-color: #fcfcfc;
340
+ border: 1px solid #e3e3e3;
341
+ color: #333;
342
+ }
343
+ .Select--multi.is-disabled .Select-value-icon {
344
+ cursor: not-allowed;
345
+ border-right: 1px solid #e3e3e3;
346
+ }
347
+ .Select--multi.is-disabled .Select-value-icon:hover,
348
+ .Select--multi.is-disabled .Select-value-icon:focus,
349
+ .Select--multi.is-disabled .Select-value-icon:active {
350
+ background-color: #fcfcfc;
351
+ }
352
+ @keyframes Select-animation-spin {
353
+ to {
354
+ transform: rotate(1turn);
355
+ }
356
+ }
357
+ @-webkit-keyframes Select-animation-spin {
358
+ to {
359
+ -webkit-transform: rotate(1turn);
360
+ }
361
+ }