mithril-materialized 1.4.2 → 2.0.0-beta.10

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 (103) hide show
  1. package/README.md +286 -306
  2. package/dist/advanced.css +1888 -0
  3. package/dist/autocomplete.d.ts +12 -4
  4. package/dist/breadcrumb.d.ts +53 -0
  5. package/dist/button.d.ts +10 -10
  6. package/dist/carousel.d.ts +26 -7
  7. package/dist/chip.d.ts +2 -2
  8. package/dist/code-block.d.ts +2 -3
  9. package/dist/collapsible.d.ts +12 -7
  10. package/dist/collection.d.ts +8 -8
  11. package/dist/components.css +2310 -0
  12. package/dist/core.css +3402 -0
  13. package/dist/datepicker.d.ts +66 -0
  14. package/dist/dropdown.d.ts +5 -5
  15. package/dist/file-upload.d.ts +34 -0
  16. package/dist/floating-action-button.d.ts +9 -5
  17. package/dist/forms.css +2284 -0
  18. package/dist/icon.d.ts +2 -2
  19. package/dist/index.css +9284 -2
  20. package/dist/index.d.ts +13 -3
  21. package/dist/index.esm.js +6188 -2
  22. package/dist/index.js +6263 -2
  23. package/dist/index.min.css +8 -0
  24. package/dist/index.umd.js +6267 -2
  25. package/dist/input-options.d.ts +3 -1
  26. package/dist/input.d.ts +17 -12
  27. package/dist/label.d.ts +6 -5
  28. package/dist/material-box.d.ts +22 -4
  29. package/dist/material-icon.d.ts +14 -0
  30. package/dist/modal.d.ts +23 -7
  31. package/dist/option.d.ts +12 -11
  32. package/dist/pagination.d.ts +5 -9
  33. package/dist/parallax.d.ts +8 -6
  34. package/dist/pickers.css +487 -0
  35. package/dist/pushpin.d.ts +32 -0
  36. package/dist/radio.d.ts +10 -6
  37. package/dist/select.d.ts +5 -5
  38. package/dist/sidenav.d.ts +76 -0
  39. package/dist/switch.d.ts +4 -5
  40. package/dist/tabs.d.ts +18 -7
  41. package/dist/theme-switcher.d.ts +49 -0
  42. package/dist/timepicker.d.ts +42 -0
  43. package/dist/toast.d.ts +45 -0
  44. package/dist/tooltip.d.ts +59 -0
  45. package/dist/utilities.css +3197 -0
  46. package/dist/utils.d.ts +17 -0
  47. package/dist/wizard.d.ts +58 -0
  48. package/package.json +47 -14
  49. package/sass/components/_badges.scss +59 -0
  50. package/sass/components/_breadcrumb.scss +248 -0
  51. package/sass/components/_buttons.scss +327 -0
  52. package/sass/components/_cards.scss +197 -0
  53. package/sass/components/_carousel.scss +92 -0
  54. package/sass/components/_chips.scss +92 -0
  55. package/sass/components/_collapsible.scss +94 -0
  56. package/sass/components/_color-classes.scss +34 -0
  57. package/sass/components/_color-variables.scss +371 -0
  58. package/sass/components/_datepicker.scss +282 -0
  59. package/sass/components/_dropdown.scss +90 -0
  60. package/sass/components/_file-upload.scss +228 -0
  61. package/sass/components/_global.scss +777 -0
  62. package/sass/components/_grid.scss +160 -0
  63. package/sass/components/_icons-material-design.scss +5 -0
  64. package/sass/components/_materialbox.scss +43 -0
  65. package/sass/components/_modal.scss +100 -0
  66. package/sass/components/_navbar.scss +219 -0
  67. package/sass/components/_normalize.scss +447 -0
  68. package/sass/components/_preloader.scss +336 -0
  69. package/sass/components/_pulse.scss +34 -0
  70. package/sass/components/_sidenav.scss +370 -0
  71. package/sass/components/_slider.scss +94 -0
  72. package/sass/components/_table_of_contents.scss +36 -0
  73. package/sass/components/_tabs.scss +103 -0
  74. package/sass/components/_tapTarget.scss +105 -0
  75. package/sass/components/_theme-switcher.scss +120 -0
  76. package/sass/components/_theme-variables.scss +205 -0
  77. package/sass/components/_timepicker.scss +262 -0
  78. package/sass/components/_toast.scss +61 -0
  79. package/sass/components/_tooltip.scss +32 -0
  80. package/sass/components/_transitions.scss +13 -0
  81. package/sass/components/_typography.scss +61 -0
  82. package/sass/components/_variables.scss +352 -0
  83. package/sass/components/_waves.scss +114 -0
  84. package/sass/components/_wizard.scss +416 -0
  85. package/sass/components/forms/_checkboxes.scss +203 -0
  86. package/sass/components/forms/_file-input.scss +50 -0
  87. package/sass/components/forms/_form-groups.scss +28 -0
  88. package/sass/components/forms/_forms.scss +24 -0
  89. package/sass/components/forms/_input-fields.scss +383 -0
  90. package/sass/components/forms/_radio-buttons.scss +118 -0
  91. package/sass/components/forms/_range.scss +164 -0
  92. package/sass/components/forms/_select.scss +193 -0
  93. package/sass/components/forms/_switches.scss +92 -0
  94. package/sass/materialize.scss +48 -0
  95. package/dist/index.css.map +0 -1
  96. package/dist/index.esm.js.map +0 -1
  97. package/dist/index.js.map +0 -1
  98. package/dist/index.modern.js +0 -2
  99. package/dist/index.modern.js.map +0 -1
  100. package/dist/index.umd.js.map +0 -1
  101. package/dist/map-editor.d.ts +0 -63
  102. package/dist/pickers.d.ts +0 -6
  103. package/dist/timeline.d.ts +0 -24
@@ -0,0 +1,777 @@
1
+ @use "sass:color";
2
+ @use "color-variables";
3
+ @use "variables";
4
+
5
+ //Default styles
6
+
7
+ html {
8
+ box-sizing: border-box;
9
+ }
10
+ *, *:before, *:after {
11
+ box-sizing: inherit;
12
+ }
13
+
14
+ body {
15
+ // display: flex;
16
+ // min-height: 100vh;
17
+ // flex-direction: column;
18
+ }
19
+
20
+ main {
21
+ // flex: 1 0 auto;
22
+ }
23
+
24
+ button,
25
+ input,
26
+ optgroup,
27
+ select,
28
+ textarea {
29
+ font-family: variables.$font-stack;
30
+ }
31
+
32
+ ul {
33
+ &:not(.browser-default) {
34
+ padding-left: 0;
35
+ list-style-type: none;
36
+
37
+ & > li {
38
+ list-style-type: none;
39
+ }
40
+ }
41
+ }
42
+
43
+ a {
44
+ color: variables.$link-color;
45
+ text-decoration: none;
46
+
47
+ // Gets rid of tap active state
48
+ -webkit-tap-highlight-color: transparent;
49
+ }
50
+
51
+
52
+ // Positioning
53
+ .valign-wrapper {
54
+ display: flex;
55
+ align-items: center;
56
+ }
57
+
58
+
59
+ // classic clearfix
60
+ .clearfix {
61
+ clear: both;
62
+ }
63
+
64
+
65
+ // Z-levels
66
+ .z-depth-0 {
67
+ box-shadow: none !important;
68
+ }
69
+
70
+ /* 2dp elevation modified*/
71
+ .z-depth-1 {
72
+ box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
73
+ 0 3px 1px -2px rgba(0,0,0,0.12),
74
+ 0 1px 5px 0 rgba(0,0,0,0.2);
75
+ }
76
+ .z-depth-1-half {
77
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
78
+ }
79
+
80
+ /* 6dp elevation modified*/
81
+ .z-depth-2 {
82
+ box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14),
83
+ 0 1px 10px 0 rgba(0,0,0,0.12),
84
+ 0 2px 4px -1px rgba(0,0,0,0.3);
85
+ }
86
+
87
+ /* 12dp elevation modified*/
88
+ .z-depth-3 {
89
+ box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14),
90
+ 0 3px 14px 2px rgba(0,0,0,0.12),
91
+ 0 5px 5px -3px rgba(0, 0, 0, 0.2);
92
+ }
93
+
94
+ /* 16dp elevation */
95
+ .z-depth-4 {
96
+ box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14),
97
+ 0 6px 30px 5px rgba(0,0,0,0.12),
98
+ 0 8px 10px -7px rgba(0,0,0,0.2);
99
+ }
100
+
101
+ /* 24dp elevation */
102
+ .z-depth-5 {
103
+ box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14),
104
+ 0 9px 46px 8px rgba(0,0,0,0.12),
105
+ 0 11px 15px -7px rgba(0,0,0,0.2);
106
+ }
107
+
108
+ .hoverable {
109
+ transition: box-shadow .25s;
110
+
111
+ &:hover {
112
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
113
+ }
114
+ }
115
+
116
+ // Dividers
117
+
118
+ .divider {
119
+ height: 1px;
120
+ overflow: hidden;
121
+ background-color: color-variables.color("grey", "lighten-2");
122
+ }
123
+
124
+
125
+ // Blockquote
126
+
127
+ blockquote {
128
+ margin: 20px 0;
129
+ padding-left: 1.5rem;
130
+ border-left: 5px solid variables.$primary-color;
131
+ }
132
+
133
+ // Icon Styles
134
+
135
+ i {
136
+ line-height: inherit;
137
+
138
+ &.left {
139
+ float: left;
140
+ margin-right: 15px;
141
+ }
142
+ &.right {
143
+ float: right;
144
+ margin-left: 15px;
145
+ }
146
+ &.tiny {
147
+ font-size: 1rem;
148
+ }
149
+ &.small {
150
+ font-size: 2rem;
151
+ }
152
+ &.medium {
153
+ font-size: 4rem;
154
+ }
155
+ &.large {
156
+ font-size: 6rem;
157
+ }
158
+ }
159
+
160
+ // Images
161
+ img.responsive-img,
162
+ video.responsive-video {
163
+ max-width: 100%;
164
+ height: auto;
165
+ }
166
+
167
+
168
+ // Pagination
169
+
170
+ .pagination {
171
+
172
+ li {
173
+ display: inline-block;
174
+ border-radius: 2px;
175
+ text-align: center;
176
+ vertical-align: top;
177
+ height: 30px;
178
+
179
+ a {
180
+ color: #444;
181
+ display: inline-block;
182
+ font-size: 1.2rem;
183
+ padding: 0 10px;
184
+ line-height: 30px;
185
+ }
186
+
187
+ &.active a { color: #fff; }
188
+
189
+ &.active { background-color: variables.$primary-color; }
190
+
191
+ &.disabled a {
192
+ cursor: default;
193
+ color: #999;
194
+ }
195
+
196
+ i {
197
+ font-size: 2rem;
198
+ }
199
+ }
200
+
201
+
202
+ li.pages ul li {
203
+ display: inline-block;
204
+ float: none;
205
+ }
206
+ }
207
+ @media #{variables.$medium-and-down} {
208
+ .pagination {
209
+ width: 100%;
210
+
211
+ li.prev,
212
+ li.next {
213
+ width: 10%;
214
+ }
215
+
216
+ li.pages {
217
+ width: 80%;
218
+ overflow: hidden;
219
+ white-space: nowrap;
220
+ }
221
+ }
222
+ }
223
+
224
+ // Breadcrumbs
225
+ .breadcrumb {
226
+ display: inline-block;
227
+ font-size: 18px;
228
+ color: rgba(255,255,255, .7);
229
+
230
+ i,
231
+ [class^="mdi-"], [class*="mdi-"],
232
+ i.material-icons {
233
+ display: inline-block;
234
+ float: left;
235
+ font-size: 24px;
236
+ }
237
+
238
+ &:before {
239
+ content: '\E5CC';
240
+ color: rgba(255,255,255, .7);
241
+ vertical-align: top;
242
+ display: inline-block;
243
+ font-family: 'Material Icons';
244
+ font-weight: normal;
245
+ font-style: normal;
246
+ font-size: 25px;
247
+ margin: 0 10px 0 8px;
248
+ -webkit-font-smoothing: antialiased;
249
+ float: left;
250
+ }
251
+
252
+ &:first-child:before {
253
+ display: none;
254
+ }
255
+
256
+ &:last-child {
257
+ color: #fff;
258
+ }
259
+ }
260
+
261
+ // Parallax
262
+ .parallax-container {
263
+ position: relative;
264
+ overflow: hidden;
265
+ height: 500px;
266
+
267
+ .parallax {
268
+ position: absolute;
269
+ top: 0;
270
+ left: 0;
271
+ right: 0;
272
+ bottom: 0;
273
+ z-index: -1;
274
+
275
+ img {
276
+ opacity: 0;
277
+ position: absolute;
278
+ left: 50%;
279
+ bottom: 0;
280
+ min-width: 100%;
281
+ min-height: 100%;
282
+ transform: translate3d(0,0,0);
283
+ transform: translateX(-50%);
284
+ }
285
+ }
286
+ }
287
+
288
+ // Pushpin
289
+ .pin-top, .pin-bottom {
290
+ position: relative;
291
+ }
292
+ .pinned {
293
+ position: fixed !important;
294
+ }
295
+
296
+ /*********************
297
+ Transition Classes
298
+ **********************/
299
+
300
+ ul.staggered-list li {
301
+ opacity: 0;
302
+ }
303
+
304
+ .fade-in {
305
+ opacity: 0;
306
+ transform-origin: 0 50%;
307
+ }
308
+
309
+
310
+ /*********************
311
+ Media Query Classes
312
+ **********************/
313
+ .hide-on-small-only, .hide-on-small-and-down {
314
+ @media #{variables.$small-and-down} {
315
+ display: none !important;
316
+ }
317
+ }
318
+ .hide-on-med-and-down {
319
+ @media #{variables.$medium-and-down} {
320
+ display: none !important;
321
+ }
322
+ }
323
+ .hide-on-med-and-up {
324
+ @media #{variables.$medium-and-up} {
325
+ display: none !important;
326
+ }
327
+ }
328
+ .hide-on-med-only {
329
+ @media only screen and (min-width: variables.$small-screen) and (max-width: variables.$medium-screen) {
330
+ display: none !important;
331
+ }
332
+ }
333
+ .hide-on-large-only {
334
+ @media #{variables.$large-and-up} {
335
+ display: none !important;
336
+ }
337
+ }
338
+ .hide-on-extra-large-only {
339
+ @media #{variables.$extra-large-and-up} {
340
+ display: none !important;
341
+ }
342
+ }
343
+ .show-on-extra-large {
344
+ @media #{variables.$extra-large-and-up} {
345
+ display: block !important;
346
+ }
347
+ }
348
+ .show-on-large {
349
+ @media #{variables.$large-and-up} {
350
+ display: block !important;
351
+ }
352
+ }
353
+ .show-on-medium {
354
+ @media only screen and (min-width: variables.$small-screen) and (max-width: variables.$medium-screen) {
355
+ display: block !important;
356
+ }
357
+ }
358
+ .show-on-small {
359
+ @media #{variables.$small-and-down} {
360
+ display: block !important;
361
+ }
362
+ }
363
+ .show-on-medium-and-up {
364
+ @media #{variables.$medium-and-up} {
365
+ display: block !important;
366
+ }
367
+ }
368
+ .show-on-medium-and-down {
369
+ @media #{variables.$medium-and-down} {
370
+ display: block !important;
371
+ }
372
+ }
373
+
374
+
375
+ // Center text on mobile
376
+ .center-on-small-only {
377
+ @media #{variables.$small-and-down} {
378
+ text-align: center;
379
+ }
380
+ }
381
+
382
+ // Footer
383
+ .page-footer {
384
+ padding-top: 20px;
385
+ color: variables.$footer-font-color;
386
+ background-color: variables.$footer-bg-color;
387
+
388
+ .footer-copyright {
389
+ overflow: hidden;
390
+ min-height: 50px;
391
+ display: flex;
392
+ align-items: center;
393
+ justify-content: space-between;
394
+ padding: 10px 0px;
395
+ color: variables.$footer-copyright-font-color;
396
+ background-color: variables.$footer-copyright-bg-color;
397
+ }
398
+ }
399
+
400
+ // Tables
401
+ table, th, td {
402
+ border: none;
403
+ }
404
+
405
+ table {
406
+ width:100%;
407
+ display: table;
408
+ border-collapse: collapse;
409
+ border-spacing: 0;
410
+
411
+ &.striped {
412
+ tr {
413
+ border-bottom: none;
414
+ }
415
+
416
+ > tbody {
417
+ > tr:nth-child(odd) {
418
+ background-color: variables.$table-striped-color;
419
+ }
420
+
421
+ > tr > td {
422
+ border-radius: 0;
423
+ }
424
+ }
425
+ }
426
+
427
+ &.highlight > tbody > tr {
428
+ transition: background-color .25s ease;
429
+ &:hover {
430
+ background-color: variables.$table-striped-color;
431
+ }
432
+ }
433
+
434
+ &.centered {
435
+ thead tr th, tbody tr td {
436
+ text-align: center;
437
+ }
438
+ }
439
+ }
440
+
441
+ tr {
442
+ border-bottom: 1px solid variables.$table-border-color;
443
+ }
444
+
445
+ td, th{
446
+ padding: 15px 5px;
447
+ display: table-cell;
448
+ text-align: left;
449
+ vertical-align: middle;
450
+ border-radius: 2px;
451
+ }
452
+
453
+ // Responsive Table
454
+ @media #{variables.$medium-and-down} {
455
+
456
+ table.responsive-table {
457
+ width: 100%;
458
+ border-collapse: collapse;
459
+ border-spacing: 0;
460
+ display: block;
461
+ position: relative;
462
+
463
+ td:empty:before {
464
+ content: '\00a0';
465
+ }
466
+
467
+ th,
468
+ td {
469
+ margin: 0;
470
+ vertical-align: top;
471
+ }
472
+
473
+ th { text-align: left; }
474
+ thead {
475
+ display: block;
476
+ float: left;
477
+
478
+ tr {
479
+ display: block;
480
+ padding: 0 10px 0 0;
481
+
482
+ th::before {
483
+ content: "\00a0";
484
+ }
485
+ }
486
+ }
487
+ tbody {
488
+ display: block;
489
+ width: auto;
490
+ position: relative;
491
+ overflow-x: auto;
492
+ white-space: nowrap;
493
+
494
+ tr {
495
+ display: inline-block;
496
+ vertical-align: top;
497
+ }
498
+ }
499
+ th {
500
+ display: block;
501
+ text-align: right;
502
+ }
503
+ td {
504
+ display: block;
505
+ min-height: 1.25em;
506
+ text-align: left;
507
+ }
508
+ tr {
509
+ border-bottom: none;
510
+ padding: 0 10px;
511
+ }
512
+
513
+ /* sort out borders */
514
+ thead {
515
+ border: 0;
516
+ border-right: 1px solid variables.$table-border-color;
517
+ }
518
+ }
519
+
520
+ }
521
+
522
+
523
+ // Collections
524
+ .collection {
525
+ margin: variables.$element-top-margin 0 variables.$element-bottom-margin 0;
526
+ border: 1px solid var(--mm-border-color, variables.$collection-border-color);
527
+ border-radius: 2px;
528
+ overflow: hidden;
529
+ position: relative;
530
+
531
+ .collection-item {
532
+ background-color: var(--mm-surface-color, variables.$collection-bg-color);
533
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
534
+ line-height: variables.$collection-line-height;
535
+ padding: 10px 20px;
536
+ margin: 0;
537
+ border-bottom: 1px solid var(--mm-border-color, variables.$collection-border-color);
538
+
539
+ // Avatar Collection
540
+ &.avatar {
541
+ min-height: 84px;
542
+ padding-left: 72px;
543
+ position: relative;
544
+
545
+ // Don't style circles inside preloader classes.
546
+ &:not(.circle-clipper) > .circle,
547
+ :not(.circle-clipper) > .circle {
548
+ position: absolute;
549
+ width: 42px;
550
+ height: 42px;
551
+ overflow: hidden;
552
+ left: 15px;
553
+ display: inline-block;
554
+ vertical-align: middle;
555
+ }
556
+ i.circle {
557
+ font-size: 18px;
558
+ line-height: 42px;
559
+ color: #fff;
560
+ background-color: #999;
561
+ text-align: center;
562
+ }
563
+
564
+
565
+ .title {
566
+ font-size: 16px;
567
+ }
568
+
569
+ p {
570
+ margin: 0;
571
+ }
572
+
573
+ .secondary-content {
574
+ position: absolute;
575
+ top: 16px;
576
+ right: 16px;
577
+ }
578
+
579
+ }
580
+
581
+
582
+ &:last-child {
583
+ border-bottom: none;
584
+ }
585
+
586
+ &.active {
587
+ background-color: variables.$collection-active-bg-color;
588
+ color: variables.$collection-active-color;
589
+
590
+ .secondary-content {
591
+ color: #fff;
592
+ }
593
+ }
594
+ }
595
+ a.collection-item{
596
+ display: block;
597
+ transition: .25s;
598
+ color: variables.$collection-link-color;
599
+ &:not(.active) {
600
+ &:hover {
601
+ background-color: variables.$collection-hover-bg-color;
602
+ }
603
+ }
604
+ }
605
+
606
+ &.with-header {
607
+ .collection-header {
608
+ background-color: var(--mm-surface-color, variables.$collection-bg-color);
609
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
610
+ border-bottom: 1px solid var(--mm-border-color, variables.$collection-border-color);
611
+ padding: 10px 20px;
612
+ }
613
+ .collection-item {
614
+ padding-left: 30px;
615
+ }
616
+ .collection-item.avatar {
617
+ padding-left: 72px;
618
+ }
619
+ }
620
+
621
+ }
622
+ // Made less specific to allow easier overriding
623
+ .secondary-content {
624
+ float: right;
625
+ color: variables.$secondary-color;
626
+ }
627
+ .collapsible .collection {
628
+ margin: 0;
629
+ border: none;
630
+ }
631
+
632
+
633
+
634
+ // Responsive Videos
635
+ .video-container {
636
+ position: relative;
637
+ padding-bottom: 56.25%;
638
+ height: 0;
639
+ overflow: hidden;
640
+
641
+ iframe, object, embed {
642
+ position: absolute;
643
+ top: 0;
644
+ left: 0;
645
+ width: 100%;
646
+ height: 100%;
647
+ }
648
+ }
649
+
650
+ // Progress Bar
651
+ .progress {
652
+ position: relative;
653
+ height: 4px;
654
+ display: block;
655
+ width: 100%;
656
+ background-color: color.adjust(variables.$progress-bar-color, $lightness: 40%);
657
+ border-radius: 2px;
658
+ margin: variables.$element-top-margin 0 variables.$element-bottom-margin 0;
659
+ overflow: hidden;
660
+ .determinate {
661
+ position: absolute;
662
+ top: 0;
663
+ left: 0;
664
+ bottom: 0;
665
+ background-color: variables.$progress-bar-color;
666
+ transition: width .3s linear;
667
+ }
668
+ .indeterminate {
669
+ background-color: variables.$progress-bar-color;
670
+ &:before {
671
+ content: '';
672
+ position: absolute;
673
+ background-color: inherit;
674
+ top: 0;
675
+ left:0;
676
+ bottom: 0;
677
+ will-change: left, right;
678
+ // Custom bezier
679
+ animation: indeterminate 2.1s cubic-bezier(0.650, 0.815, 0.735, 0.395) infinite;
680
+
681
+ }
682
+ &:after {
683
+ content: '';
684
+ position: absolute;
685
+ background-color: inherit;
686
+ top: 0;
687
+ left:0;
688
+ bottom: 0;
689
+ will-change: left, right;
690
+ // Custom bezier
691
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite;
692
+ animation-delay: 1.15s;
693
+ }
694
+ }
695
+ }
696
+ @keyframes indeterminate {
697
+ 0% {
698
+ left: -35%;
699
+ right:100%;
700
+ }
701
+ 60% {
702
+ left: 100%;
703
+ right: -90%;
704
+ }
705
+ 100% {
706
+ left: 100%;
707
+ right: -90%;
708
+ }
709
+ }
710
+
711
+ @keyframes indeterminate-short {
712
+ 0% {
713
+ left: -200%;
714
+ right: 100%;
715
+ }
716
+ 60% {
717
+ left: 107%;
718
+ right: -8%;
719
+ }
720
+ 100% {
721
+ left: 107%;
722
+ right: -8%;
723
+ }
724
+ }
725
+
726
+
727
+ /*******************
728
+ Utility Classes
729
+ *******************/
730
+
731
+ .hide {
732
+ display: none !important;
733
+ }
734
+
735
+ // Text Align
736
+ .left-align {
737
+ text-align: left;
738
+ }
739
+ .right-align {
740
+ text-align: right
741
+ }
742
+ .center, .center-align {
743
+ text-align: center;
744
+ }
745
+
746
+ .left {
747
+ float: left !important;
748
+ }
749
+ .right {
750
+ float: right !important;
751
+ }
752
+
753
+ // No Text Select
754
+ .no-select {
755
+ user-select: none;
756
+ }
757
+
758
+ .circle {
759
+ border-radius: 50%;
760
+ }
761
+
762
+ .center-block {
763
+ display: block;
764
+ margin-left: auto;
765
+ margin-right: auto;
766
+ }
767
+
768
+ .truncate {
769
+ display: block;
770
+ white-space: nowrap;
771
+ overflow: hidden;
772
+ text-overflow: ellipsis;
773
+ }
774
+
775
+ .no-padding {
776
+ padding: 0 !important;
777
+ }