materialize-sass 0.97.0 → 1.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +5 -5
  2. data/.gitattributes +1 -0
  3. data/.gitignore +3 -0
  4. data/README.md +48 -10
  5. data/Rakefile +129 -1
  6. data/assets/javascripts/materialize/anime.min.js +417 -0
  7. data/assets/javascripts/materialize/autocomplete.js +504 -0
  8. data/assets/javascripts/materialize/buttons.js +409 -0
  9. data/assets/javascripts/materialize/cards.js +34 -0
  10. data/assets/javascripts/materialize/carousel.js +797 -0
  11. data/assets/javascripts/materialize/cash.js +990 -0
  12. data/assets/javascripts/materialize/characterCounter.js +180 -0
  13. data/assets/javascripts/materialize/chips.js +564 -0
  14. data/assets/javascripts/materialize/collapsible.js +337 -0
  15. data/assets/javascripts/materialize/component.js +57 -0
  16. data/assets/javascripts/materialize/datepicker.js +935 -0
  17. data/assets/javascripts/materialize/dropdown.js +659 -0
  18. data/assets/javascripts/materialize/extras/nouislider.js +2147 -0
  19. data/assets/javascripts/materialize/extras/nouislider.min.js +1 -0
  20. data/assets/javascripts/materialize/forms.js +244 -0
  21. data/assets/javascripts/materialize/global.js +408 -0
  22. data/assets/javascripts/materialize/materialbox.js +513 -0
  23. data/assets/javascripts/materialize/modal.js +449 -0
  24. data/assets/javascripts/materialize/parallax.js +173 -0
  25. data/assets/javascripts/materialize/pushpin.js +179 -0
  26. data/assets/javascripts/materialize/range.js +310 -0
  27. data/assets/javascripts/materialize/scrollspy.js +328 -0
  28. data/assets/javascripts/materialize/select.js +497 -0
  29. data/assets/javascripts/materialize/sidenav.js +655 -0
  30. data/assets/javascripts/materialize/slider.js +424 -0
  31. data/assets/javascripts/materialize/tabs.js +476 -0
  32. data/assets/javascripts/materialize/tapTarget.js +364 -0
  33. data/assets/javascripts/materialize/timepicker.js +647 -0
  34. data/assets/javascripts/materialize/toasts.js +355 -0
  35. data/assets/javascripts/materialize/tooltip.js +351 -0
  36. data/{app/assets → assets}/javascripts/materialize/waves.js +42 -47
  37. data/assets/javascripts/materialize-sprockets.js +29 -0
  38. data/assets/javascripts/materialize.js +12374 -0
  39. data/assets/stylesheets/materialize/components/_badges.scss +55 -0
  40. data/assets/stylesheets/materialize/components/_buttons.scss +322 -0
  41. data/{app/assets → assets}/stylesheets/materialize/components/_cards.scss +72 -29
  42. data/assets/stylesheets/materialize/components/_carousel.scss +90 -0
  43. data/assets/stylesheets/materialize/components/_chips.scss +90 -0
  44. data/{app/assets → assets}/stylesheets/materialize/components/_collapsible.scss +23 -17
  45. data/assets/stylesheets/materialize/components/_color-classes.scss +32 -0
  46. data/{app/assets/stylesheets/materialize/components/_color.scss → assets/stylesheets/materialize/components/_color-variables.scss} +22 -64
  47. data/assets/stylesheets/materialize/components/_datepicker.scss +191 -0
  48. data/assets/stylesheets/materialize/components/_dropdown.scss +85 -0
  49. data/{app/assets → assets}/stylesheets/materialize/components/_global.scss +197 -144
  50. data/{app/assets → assets}/stylesheets/materialize/components/_grid.scss +57 -18
  51. data/assets/stylesheets/materialize/components/_icons-material-design.scss +5 -0
  52. data/{app/assets → assets}/stylesheets/materialize/components/_materialbox.scss +15 -13
  53. data/{app/assets → assets}/stylesheets/materialize/components/_modal.scss +18 -14
  54. data/{app/assets → assets}/stylesheets/materialize/components/_navbar.scss +89 -25
  55. data/assets/stylesheets/materialize/components/_normalize.scss +447 -0
  56. data/{app/assets → assets}/stylesheets/materialize/components/_preloader.scss +5 -3
  57. data/assets/stylesheets/materialize/components/_pulse.scss +34 -0
  58. data/assets/stylesheets/materialize/components/_sidenav.scss +208 -0
  59. data/{app/assets → assets}/stylesheets/materialize/components/_slider.scss +2 -2
  60. data/{app/assets → assets}/stylesheets/materialize/components/_table_of_contents.scss +5 -5
  61. data/assets/stylesheets/materialize/components/_tabs.scss +99 -0
  62. data/assets/stylesheets/materialize/components/_tapTarget.scss +103 -0
  63. data/assets/stylesheets/materialize/components/_timepicker.scss +183 -0
  64. data/{app/assets → assets}/stylesheets/materialize/components/_toast.scss +17 -22
  65. data/assets/stylesheets/materialize/components/_tooltip.scss +32 -0
  66. data/assets/stylesheets/materialize/components/_transitions.scss +13 -0
  67. data/{app/assets → assets}/stylesheets/materialize/components/_typography.scss +11 -9
  68. data/assets/stylesheets/materialize/components/_variables.scss +349 -0
  69. data/assets/stylesheets/materialize/components/_waves.scss +114 -0
  70. data/assets/stylesheets/materialize/components/forms/_checkboxes.scss +200 -0
  71. data/assets/stylesheets/materialize/components/forms/_file-input.scss +44 -0
  72. data/assets/stylesheets/materialize/components/forms/_forms.scss +22 -0
  73. data/assets/stylesheets/materialize/components/forms/_input-fields.scss +354 -0
  74. data/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +115 -0
  75. data/assets/stylesheets/materialize/components/forms/_range.scss +161 -0
  76. data/assets/stylesheets/materialize/components/forms/_select.scss +190 -0
  77. data/assets/stylesheets/materialize/components/forms/_switches.scss +89 -0
  78. data/assets/stylesheets/materialize/extras/nouislider.css +406 -0
  79. data/{app/assets → assets}/stylesheets/materialize.scss +13 -10
  80. data/lib/materialize-sass/engine.rb +11 -6
  81. data/lib/materialize-sass/helpers.rb +38 -0
  82. data/lib/materialize-sass/version.rb +1 -1
  83. data/lib/materialize-sass.rb +13 -28
  84. data/materialize-sass.gemspec +5 -5
  85. metadata +97 -105
  86. data/app/assets/fonts/material-design-icons/LICENSE.txt +0 -428
  87. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  88. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +0 -769
  89. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  90. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  91. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
  92. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  93. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  94. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  95. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  96. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  97. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  98. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  99. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  100. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  101. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  102. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  103. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  104. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  105. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  106. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  107. data/app/assets/javascripts/materialize/animation.js +0 -9
  108. data/app/assets/javascripts/materialize/buttons.js +0 -61
  109. data/app/assets/javascripts/materialize/cards.js +0 -27
  110. data/app/assets/javascripts/materialize/character_counter.js +0 -59
  111. data/app/assets/javascripts/materialize/collapsible.js +0 -139
  112. data/app/assets/javascripts/materialize/date_picker/picker.date.js +0 -1430
  113. data/app/assets/javascripts/materialize/date_picker/picker.js +0 -1123
  114. data/app/assets/javascripts/materialize/dropdown.js +0 -178
  115. data/app/assets/javascripts/materialize/forms.js +0 -456
  116. data/app/assets/javascripts/materialize/global.js +0 -36
  117. data/app/assets/javascripts/materialize/hammer.min.js +0 -1
  118. data/app/assets/javascripts/materialize/init.js +0 -136
  119. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +0 -205
  120. data/app/assets/javascripts/materialize/jquery.hammer.js +0 -33
  121. data/app/assets/javascripts/materialize/jquery.timeago.min.js +0 -1
  122. data/app/assets/javascripts/materialize/leanModal.js +0 -178
  123. data/app/assets/javascripts/materialize/materialbox.js +0 -249
  124. data/app/assets/javascripts/materialize/parallax.js +0 -58
  125. data/app/assets/javascripts/materialize/prism.js +0 -8
  126. data/app/assets/javascripts/materialize/pushpin.js +0 -62
  127. data/app/assets/javascripts/materialize/scrollFire.js +0 -44
  128. data/app/assets/javascripts/materialize/scrollspy.js +0 -284
  129. data/app/assets/javascripts/materialize/sideNav.js +0 -312
  130. data/app/assets/javascripts/materialize/slider.js +0 -301
  131. data/app/assets/javascripts/materialize/tabs.js +0 -136
  132. data/app/assets/javascripts/materialize/toasts.js +0 -125
  133. data/app/assets/javascripts/materialize/tooltip.js +0 -166
  134. data/app/assets/javascripts/materialize/transitions.js +0 -154
  135. data/app/assets/javascripts/materialize/velocity.min.js +0 -4
  136. data/app/assets/javascripts/materialize-sprockets.js +0 -27
  137. data/app/assets/javascripts/materialize.js +0 -6159
  138. data/app/assets/stylesheets/materialize/components/_buttons.scss +0 -157
  139. data/app/assets/stylesheets/materialize/components/_dropdown.scss +0 -40
  140. data/app/assets/stylesheets/materialize/components/_form.scss +0 -886
  141. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +0 -3257
  142. data/app/assets/stylesheets/materialize/components/_mixins.scss +0 -5
  143. data/app/assets/stylesheets/materialize/components/_normalize.scss +0 -427
  144. data/app/assets/stylesheets/materialize/components/_prefixer.scss +0 -376
  145. data/app/assets/stylesheets/materialize/components/_roboto.scss +0 -38
  146. data/app/assets/stylesheets/materialize/components/_sideNav.scss +0 -111
  147. data/app/assets/stylesheets/materialize/components/_tabs.scss +0 -47
  148. data/app/assets/stylesheets/materialize/components/_tooltip.scss +0 -34
  149. data/app/assets/stylesheets/materialize/components/_variables.scss +0 -152
  150. data/app/assets/stylesheets/materialize/components/_waves.scss +0 -167
  151. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +0 -435
  152. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +0 -201
  153. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +0 -125
@@ -0,0 +1,190 @@
1
+ /* Select Field
2
+ ========================================================================== */
3
+
4
+ select.browser-default { opacity: 1; }
5
+ select {
6
+ opacity: 0;
7
+ background-color: $select-background;
8
+ width: 100%;
9
+ padding: $select-padding;
10
+ border: $select-border;
11
+ border-radius: $select-radius;
12
+ height: $input-height;
13
+ }
14
+
15
+ .select-label {
16
+ position: absolute;
17
+ }
18
+
19
+ .select-wrapper {
20
+ &.valid .helper-text[data-success],
21
+ &.invalid ~ .helper-text[data-error] {
22
+ @extend %hidden-text;
23
+ }
24
+
25
+ &.valid {
26
+ & > input.select-dropdown {
27
+ @extend %valid-input-style;
28
+ }
29
+
30
+ & ~ .helper-text:after {
31
+ @extend %custom-success-message;
32
+ }
33
+ }
34
+
35
+ &.invalid {
36
+ & > input.select-dropdown,
37
+ & > input.select-dropdown:focus {
38
+ @extend %invalid-input-style;
39
+ }
40
+
41
+ & ~ .helper-text:after {
42
+ @extend %custom-error-message;
43
+ }
44
+ }
45
+
46
+ &.valid + label,
47
+ &.invalid + label {
48
+ width: 100%;
49
+ pointer-events: none;
50
+ }
51
+
52
+ & + label:after {
53
+ @extend %input-after-style;
54
+ }
55
+
56
+ position: relative;
57
+
58
+ input.select-dropdown {
59
+ &:focus {
60
+ border-bottom: 1px solid $input-focus-color;
61
+ }
62
+ position: relative;
63
+ cursor: pointer;
64
+ background-color: transparent;
65
+ border: none;
66
+ border-bottom: $input-border;
67
+ outline: none;
68
+ height: $input-height;
69
+ line-height: $input-height;
70
+ width: 100%;
71
+ font-size: $input-font-size;
72
+ margin: $input-margin;
73
+ padding: 0;
74
+ display: block;
75
+ user-select:none;
76
+ z-index: 1;
77
+ }
78
+
79
+ .caret {
80
+ position: absolute;
81
+ right: 0;
82
+ top: 0;
83
+ bottom: 0;
84
+ margin: auto 0;
85
+ z-index: 0;
86
+ fill: rgba(0,0,0,.87);
87
+ }
88
+
89
+ & + label {
90
+ position: absolute;
91
+ top: -26px;
92
+ font-size: $label-font-size;
93
+ }
94
+
95
+ // Hide select with overflow hidden instead of using display none
96
+ // (this prevents form validation errors with hidden form elements)
97
+ .hide-select {
98
+ width: 0;
99
+ height: 0;
100
+ overflow: hidden;
101
+ position: absolute;
102
+ top: 0;
103
+ z-index: -1;
104
+ }
105
+ }
106
+
107
+ // Disabled styles
108
+ select:disabled {
109
+ color: $input-disabled-color;
110
+ }
111
+
112
+ .select-wrapper.disabled {
113
+ + label {
114
+ color: $input-disabled-color;
115
+ }
116
+ .caret {
117
+ fill: $input-disabled-color;
118
+ }
119
+ }
120
+
121
+ .select-wrapper input.select-dropdown:disabled {
122
+ color: $input-disabled-color;
123
+ cursor: default;
124
+ user-select: none;
125
+ }
126
+
127
+ .select-wrapper i {
128
+ color: $select-disabled-color;
129
+ }
130
+
131
+ .select-dropdown li.disabled,
132
+ .select-dropdown li.disabled > span,
133
+ .select-dropdown li.optgroup {
134
+ color: $select-disabled-color;
135
+ background-color: transparent;
136
+ }
137
+
138
+ body.keyboard-focused {
139
+ .select-dropdown.dropdown-content li:focus {
140
+ background-color: $select-option-focus;
141
+ }
142
+ }
143
+
144
+ .select-dropdown.dropdown-content {
145
+ li {
146
+ &:hover {
147
+ background-color: $select-option-hover;
148
+ }
149
+
150
+ &.selected {
151
+ background-color: $select-option-selected;
152
+ }
153
+ }
154
+ }
155
+
156
+ // Prefix Icons
157
+ .prefix ~ .select-wrapper {
158
+ margin-left: 3rem;
159
+ width: 92%;
160
+ width: calc(100% - 3rem);
161
+ }
162
+
163
+ .prefix ~ label { margin-left: 3rem; }
164
+
165
+ // Icons
166
+ .select-dropdown li {
167
+ img {
168
+ height: $dropdown-item-height - 10;
169
+ width: $dropdown-item-height - 10;
170
+ margin: 5px 15px;
171
+ float: right;
172
+ }
173
+ }
174
+
175
+ // Optgroup styles
176
+ .select-dropdown li.optgroup {
177
+ border-top: 1px solid $dropdown-hover-bg-color;
178
+
179
+ &.selected > span {
180
+ color: rgba(0, 0, 0, .7);
181
+ }
182
+
183
+ & > span {
184
+ color: rgba(0, 0, 0, .4);
185
+ }
186
+
187
+ & ~ li.optgroup-option {
188
+ padding-left: 1rem;
189
+ }
190
+ }
@@ -0,0 +1,89 @@
1
+ /* Switch
2
+ ========================================================================== */
3
+
4
+ .switch,
5
+ .switch * {
6
+ -webkit-tap-highlight-color: transparent;
7
+ user-select: none;
8
+ }
9
+
10
+ .switch label {
11
+ cursor: pointer;
12
+ }
13
+
14
+ .switch label input[type=checkbox] {
15
+ opacity: 0;
16
+ width: 0;
17
+ height: 0;
18
+
19
+ &:checked + .lever {
20
+ background-color: $switch-checked-lever-bg;
21
+
22
+ &:before, &:after {
23
+ left: 18px;
24
+ }
25
+
26
+ &:after {
27
+ background-color: $switch-bg-color;
28
+ }
29
+ }
30
+ }
31
+
32
+ .switch label .lever {
33
+ content: "";
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 36px;
37
+ height: 14px;
38
+ background-color: $switch-unchecked-lever-bg;
39
+ border-radius: $switch-radius;
40
+ margin-right: 10px;
41
+ transition: background 0.3s ease;
42
+ vertical-align: middle;
43
+ margin: 0 16px;
44
+
45
+ &:before, &:after {
46
+ content: "";
47
+ position: absolute;
48
+ display: inline-block;
49
+ width: 20px;
50
+ height: 20px;
51
+ border-radius: 50%;
52
+ left: 0;
53
+ top: -3px;
54
+ transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
55
+ }
56
+
57
+ &:before {
58
+ background-color: transparentize($switch-bg-color, .85);
59
+ }
60
+
61
+ &:after {
62
+ background-color: $switch-unchecked-bg;
63
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
64
+ }
65
+ }
66
+
67
+ // Switch active style
68
+ input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
69
+ input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
70
+ transform: scale(2.4);
71
+ background-color: transparentize($switch-bg-color, .85);
72
+ }
73
+
74
+ input[type=checkbox]:not(:disabled) ~ .lever:active:before,
75
+ input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
76
+ transform: scale(2.4);
77
+ background-color: rgba(0,0,0,.08);
78
+ }
79
+
80
+ // Disabled Styles
81
+ .switch input[type=checkbox][disabled] + .lever {
82
+ cursor: default;
83
+ background-color: rgba(0,0,0,.12);
84
+ }
85
+
86
+ .switch label input[type=checkbox][disabled] + .lever:after,
87
+ .switch label input[type=checkbox][disabled]:checked + .lever:after {
88
+ background-color: $input-disabled-solid-color;
89
+ }
@@ -0,0 +1,406 @@
1
+ /*!
2
+ * Materialize 1.0.0 (http://materializecss.com)
3
+ * Copyright 2014-2015 Materialize
4
+ * MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
5
+ */
6
+
7
+ /*! nouislider - 9.1.0 - 2016-12-10 16:00:32 */
8
+
9
+
10
+ /* Functional styling;
11
+ * These styles are required for noUiSlider to function.
12
+ * You don't need to change these rules to apply your design.
13
+ */
14
+ .noUi-target,
15
+ .noUi-target * {
16
+ -webkit-touch-callout: none;
17
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
18
+ -webkit-user-select: none;
19
+ -ms-touch-action: none;
20
+ touch-action: none;
21
+ -ms-user-select: none;
22
+ -moz-user-select: none;
23
+ user-select: none;
24
+ -moz-box-sizing: border-box;
25
+ box-sizing: border-box;
26
+ }
27
+ .noUi-target {
28
+ position: relative;
29
+ direction: ltr;
30
+ }
31
+ .noUi-base {
32
+ width: 100%;
33
+ height: 100%;
34
+ position: relative;
35
+ z-index: 1; /* Fix 401 */
36
+ }
37
+ .noUi-connect {
38
+ position: absolute;
39
+ right: 0;
40
+ top: 0;
41
+ left: 0;
42
+ bottom: 0;
43
+ }
44
+ .noUi-origin {
45
+ position: absolute;
46
+ height: 0;
47
+ width: 0;
48
+ }
49
+ .noUi-handle {
50
+ position: relative;
51
+ z-index: 1;
52
+ }
53
+ .noUi-state-tap .noUi-connect,
54
+ .noUi-state-tap .noUi-origin {
55
+ -webkit-transition: top 0.25s, right 0.25s, bottom 0.25s, left 0.25s;
56
+ transition: top 0.25s, right 0.25s, bottom 0.25s, left 0.25s;
57
+ }
58
+ .noUi-state-drag * {
59
+ cursor: inherit !important;
60
+ }
61
+
62
+ .noUi-handle-touch-area{
63
+ position: relative;
64
+ width: 44px;
65
+ height: 44px;
66
+ left: -15px;
67
+ top: -15px;
68
+ }
69
+ /* Painting and performance;
70
+ * Browsers can paint handles in their own layer.
71
+ */
72
+ .noUi-base,
73
+ .noUi-handle {
74
+ -webkit-transform: translate3d(0,0,0);
75
+ transform: translate3d(0,0,0);
76
+ }
77
+
78
+ /* Slider size and handle placement;
79
+ */
80
+ .noUi-horizontal {
81
+ height: 18px;
82
+ }
83
+ .noUi-horizontal .noUi-handle {
84
+ width: 34px;
85
+ height: 28px;
86
+ left: -17px;
87
+ top: -6px;
88
+ }
89
+ .noUi-vertical {
90
+ width: 18px;
91
+ }
92
+ .noUi-vertical .noUi-handle {
93
+ width: 28px;
94
+ height: 34px;
95
+ left: -6px;
96
+ top: -17px;
97
+ }
98
+
99
+ /* Styling;
100
+ */
101
+ .noUi-target {
102
+ background: #cdcdcd;
103
+ border-radius: 4px;
104
+ border: 1px solid transparent;
105
+ }
106
+ .noUi-connect {
107
+ background: #26A69A;
108
+ -webkit-transition: background 450ms;
109
+ transition: background 450ms;
110
+ }
111
+
112
+ /* Handles and cursors;
113
+ */
114
+ .noUi-draggable {
115
+ cursor: ew-resize;
116
+ }
117
+ .noUi-vertical .noUi-draggable {
118
+ cursor: ns-resize;
119
+ }
120
+ .noUi-handle {
121
+ border: 1px solid #D9D9D9;
122
+ border-radius: 3px;
123
+ background: #FFF;
124
+ cursor: default;
125
+ box-shadow: inset 0 0 1px #FFF,
126
+ inset 0 1px 7px #EBEBEB,
127
+ 0 3px 6px -3px #BBB;
128
+ }
129
+ .noUi-active {
130
+ box-shadow: inset 0 0 1px #FFF,
131
+ inset 0 1px 7px #DDD,
132
+ 0 3px 6px -3px #BBB;
133
+ }
134
+
135
+ /* Handle stripes
136
+ */
137
+ .noUi-handle:before,
138
+ .noUi-handle:after {
139
+ content: "";
140
+ display: block;
141
+ position: absolute;
142
+ height: 14px;
143
+ width: 1px;
144
+ background: #E8E7E6;
145
+ left: 14px;
146
+ top: 6px;
147
+ }
148
+ .noUi-handle:after {
149
+ left: 17px;
150
+ }
151
+ .noUi-vertical .noUi-handle:before,
152
+ .noUi-vertical .noUi-handle:after {
153
+ width: 14px;
154
+ height: 1px;
155
+ left: 6px;
156
+ top: 14px;
157
+ }
158
+ .noUi-vertical .noUi-handle:after {
159
+ top: 17px;
160
+ }
161
+
162
+ /* Disabled state;
163
+ */
164
+
165
+ [disabled] .noUi-connect {
166
+ background: #B8B8B8;
167
+ }
168
+ [disabled].noUi-target,
169
+ [disabled].noUi-handle,
170
+ [disabled] .noUi-handle {
171
+ cursor: not-allowed;
172
+ }
173
+
174
+
175
+ /* Base;
176
+ *
177
+ */
178
+ .noUi-pips,
179
+ .noUi-pips * {
180
+ -moz-box-sizing: border-box;
181
+ box-sizing: border-box;
182
+ }
183
+ .noUi-pips {
184
+ position: absolute;
185
+ color: #999;
186
+ }
187
+
188
+ /* Values;
189
+ *
190
+ */
191
+ .noUi-value {
192
+ position: absolute;
193
+ text-align: center;
194
+ }
195
+ .noUi-value-sub {
196
+ color: #ccc;
197
+ font-size: 10px;
198
+ }
199
+
200
+ /* Markings;
201
+ *
202
+ */
203
+ .noUi-marker {
204
+ position: absolute;
205
+ background: #CCC;
206
+ }
207
+ .noUi-marker-sub {
208
+ background: #AAA;
209
+ }
210
+ .noUi-marker-large {
211
+ background: #AAA;
212
+ }
213
+
214
+ /* Horizontal layout;
215
+ *
216
+ */
217
+ .noUi-pips-horizontal {
218
+ padding: 10px 0;
219
+ height: 80px;
220
+ top: 100%;
221
+ left: 0;
222
+ width: 100%;
223
+ }
224
+ .noUi-value-horizontal {
225
+ -webkit-transform: translate3d(-50%,50%,0);
226
+ transform: translate3d(-50%,50%,0);
227
+ }
228
+
229
+ .noUi-marker-horizontal.noUi-marker {
230
+ margin-left: -1px;
231
+ width: 2px;
232
+ height: 5px;
233
+ }
234
+ .noUi-marker-horizontal.noUi-marker-sub {
235
+ height: 10px;
236
+ }
237
+ .noUi-marker-horizontal.noUi-marker-large {
238
+ height: 15px;
239
+ }
240
+
241
+ /* Vertical layout;
242
+ *
243
+ */
244
+ .noUi-pips-vertical {
245
+ padding: 0 10px;
246
+ height: 100%;
247
+ top: 0;
248
+ left: 100%;
249
+ }
250
+ .noUi-value-vertical {
251
+ -webkit-transform: translate3d(0,50%,0);
252
+ transform: translate3d(0,50%,0);
253
+ padding-left: 25px;
254
+ }
255
+
256
+ .noUi-marker-vertical.noUi-marker {
257
+ width: 5px;
258
+ height: 2px;
259
+ margin-top: -1px;
260
+ }
261
+ .noUi-marker-vertical.noUi-marker-sub {
262
+ width: 10px;
263
+ }
264
+ .noUi-marker-vertical.noUi-marker-large {
265
+ width: 15px;
266
+ }
267
+
268
+ .noUi-tooltip {
269
+ display: block;
270
+ position: absolute;
271
+ border: 1px solid transparent;
272
+ border-radius: 3px;
273
+ background: #fff;
274
+ color: #000;
275
+ padding: 5px;
276
+ text-align: center;
277
+ }
278
+ .noUi-horizontal .noUi-tooltip {
279
+ -webkit-transform: translate(-50%, 0);
280
+ transform: translate(-50%, 0);
281
+ left: 50%;
282
+ bottom: 120%;
283
+ }
284
+ .noUi-vertical .noUi-tooltip {
285
+ -webkit-transform: translate(0, -50%);
286
+ transform: translate(0, -50%);
287
+ top: 50%;
288
+ right: 120%;
289
+ }
290
+
291
+ /* Materialize Styles */
292
+ .noUi-target {
293
+ border: 0;
294
+ border-radius: 0;
295
+ }
296
+ .noUi-horizontal {
297
+ height: 3px;
298
+ }
299
+
300
+ .noUi-vertical {
301
+ height: 100%;
302
+ width: 3px;
303
+ }
304
+
305
+ .noUi-horizontal .noUi-handle,
306
+ .noUi-vertical .noUi-handle {
307
+ width: 15px;
308
+ height: 15px;
309
+ border-radius: 50%;
310
+ box-shadow: none;
311
+ background-color: #26A69A;
312
+ border: none;
313
+ left: -5px;
314
+ top: -6px;
315
+ transition: width .2s cubic-bezier(0.215, 0.610, 0.355, 1.000),
316
+ height .2s cubic-bezier(0.215, 0.610, 0.355, 1.000),
317
+ left .2s cubic-bezier(0.215, 0.610, 0.355, 1.000),
318
+ top .2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
319
+ }
320
+ .noUi-handle:before {
321
+ content: none;
322
+ }
323
+ .noUi-handle:after {
324
+ content: none;
325
+ }
326
+
327
+ .noUi-target .noUi-active.noUi-handle {
328
+ width: 3px;
329
+ height: 3px;
330
+ left: 0;
331
+ top: 0;
332
+ }
333
+
334
+ .noUi-target.noUi-horizontal .noUi-tooltip {
335
+ position: absolute;
336
+ height: 30px;
337
+ width: 30px;
338
+ top: -17px;
339
+ left: -2px;
340
+ background-color: #26A69A;
341
+ border-radius: 50%;
342
+ transition: border-radius .25s cubic-bezier(0.215, 0.610, 0.355, 1.000),
343
+ transform .25s cubic-bezier(0.215, 0.610, 0.355, 1.000);
344
+ transform: scale(.5) rotate(-45deg);
345
+ transform-origin: 50% 100%;
346
+ }
347
+ .noUi-target.noUi-horizontal .noUi-active .noUi-tooltip {
348
+ border-radius: 15px 15px 15px 0;
349
+ transform: rotate(-45deg) translate(23px, -25px);
350
+ }
351
+
352
+ .noUi-tooltip span {
353
+ width: 100%;
354
+ text-align: center;
355
+ color: #fff;
356
+ font-size: 12px;
357
+ opacity: 0;
358
+ position: absolute;
359
+ top: 6px;
360
+ left: -1px;
361
+ transition: opacity .25s cubic-bezier(0.215, 0.610, 0.355, 1.000);
362
+ }
363
+
364
+ .noUi-horizontal .noUi-tooltip span {
365
+ transform: rotate(45deg);
366
+ }
367
+
368
+ .noUi-vertical .noUi-tooltip span {
369
+ transform: rotate(135deg);
370
+ }
371
+
372
+
373
+ .noUi-target.noUi-vertical .noUi-tooltip {
374
+ position: absolute;
375
+ height: 30px;
376
+ width: 30px;
377
+ top: -17px;
378
+ left: -2px;
379
+ background-color: #26A69A;
380
+ border-radius: 50%;
381
+ transition: border-radius .25s cubic-bezier(0.215, 0.610, 0.355, 1.000),
382
+ transform .25s cubic-bezier(0.215, 0.610, 0.355, 1.000);
383
+ transform: scale(.5) rotate(-45deg);
384
+ transform-origin: 50% 100%;
385
+ }
386
+ .noUi-target.noUi-vertical .noUi-active .noUi-tooltip {
387
+ border-radius: 15px 15px 15px 0;
388
+ transform: rotate(-135deg) translate(35px, -10px);
389
+ }
390
+ .noUi-vertical .noUi-tooltip span {
391
+ width: 100%;
392
+ text-align: center;
393
+ color: #fff;
394
+ font-size: 12px;
395
+ transform: rotate(135deg);
396
+ opacity: 0;
397
+ position: absolute;
398
+ top: 7px;
399
+ left: -1px;
400
+ transition: opacity .25s cubic-bezier(0.215, 0.610, 0.355, 1.000);
401
+ }
402
+
403
+ .noUi-horizontal .noUi-active .noUi-tooltip span,
404
+ .noUi-vertical .noUi-active .noUi-tooltip span {
405
+ opacity: 1;
406
+ }
@@ -1,9 +1,8 @@
1
1
  @charset "UTF-8";
2
2
 
3
- // Mixins
4
- @import "materialize/components/prefixer";
5
- @import "materialize/components/mixins";
6
- @import "materialize/components/color";
3
+ // Color
4
+ @import "materialize/components/color-variables";
5
+ @import "materialize/components/color-classes";
7
6
 
8
7
  // Variables;
9
8
  @import "materialize/components/variables";
@@ -13,11 +12,12 @@
13
12
 
14
13
  // materialize/components
15
14
  @import "materialize/components/global";
15
+ @import "materialize/components/badges";
16
16
  @import "materialize/components/icons-material-design";
17
17
  @import "materialize/components/grid";
18
18
  @import "materialize/components/navbar";
19
- @import "materialize/components/roboto";
20
19
  @import "materialize/components/typography";
20
+ @import "materialize/components/transitions";
21
21
  @import "materialize/components/cards";
22
22
  @import "materialize/components/toast";
23
23
  @import "materialize/components/tabs";
@@ -27,12 +27,15 @@
27
27
  @import "materialize/components/waves";
28
28
  @import "materialize/components/modal";
29
29
  @import "materialize/components/collapsible";
30
+ @import "materialize/components/chips";
30
31
  @import "materialize/components/materialbox";
31
- @import "materialize/components/form";
32
+ @import "materialize/components/forms/forms";
32
33
  @import "materialize/components/table_of_contents";
33
- @import "materialize/components/sideNav";
34
+ @import "materialize/components/sidenav";
34
35
  @import "materialize/components/preloader";
35
36
  @import "materialize/components/slider";
36
- @import "materialize/components/date_picker/default.scss";
37
- @import "materialize/components/date_picker/default.date.scss";
38
- @import "materialize/components/date_picker/default.time.scss";
37
+ @import "materialize/components/carousel";
38
+ @import "materialize/components/tapTarget";
39
+ @import "materialize/components/pulse";
40
+ @import "materialize/components/datepicker";
41
+ @import "materialize/components/timepicker";