materialize-sass 0.97.8 → 1.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +5 -5
  2. data/.gitattributes +1 -0
  3. data/.gitignore +1 -0
  4. data/README.md +34 -32
  5. data/Rakefile +38 -21
  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/{app/assets → assets}/javascripts/materialize-sprockets.js +12 -13
  38. data/assets/javascripts/materialize.js +12374 -0
  39. data/assets/stylesheets/materialize/components/_badges.scss +55 -0
  40. data/{app/assets → assets}/stylesheets/materialize/components/_buttons.scss +99 -58
  41. data/{app/assets → assets}/stylesheets/materialize/components/_cards.scss +14 -6
  42. data/{app/assets → assets}/stylesheets/materialize/components/_carousel.scss +12 -7
  43. data/{app/assets → assets}/stylesheets/materialize/components/_chips.scss +13 -6
  44. data/{app/assets → assets}/stylesheets/materialize/components/_collapsible.scss +16 -15
  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} +2 -44
  47. data/assets/stylesheets/materialize/components/_datepicker.scss +191 -0
  48. data/{app/assets → assets}/stylesheets/materialize/components/_dropdown.scss +35 -15
  49. data/{app/assets → assets}/stylesheets/materialize/components/_global.scss +96 -125
  50. data/{app/assets → assets}/stylesheets/materialize/components/_grid.scss +45 -36
  51. data/{app/assets → assets}/stylesheets/materialize/components/_icons-material-design.scss +0 -0
  52. data/{app/assets → assets}/stylesheets/materialize/components/_materialbox.scss +13 -12
  53. data/{app/assets → assets}/stylesheets/materialize/components/_modal.scss +7 -3
  54. data/{app/assets → assets}/stylesheets/materialize/components/_navbar.scss +29 -11
  55. data/assets/stylesheets/materialize/components/_normalize.scss +447 -0
  56. data/{app/assets → assets}/stylesheets/materialize/components/_preloader.scss +2 -2
  57. data/assets/stylesheets/materialize/components/_pulse.scss +34 -0
  58. data/{app/assets/stylesheets/materialize/components/_sideNav.scss → assets/stylesheets/materialize/components/_sidenav.scss} +47 -47
  59. data/{app/assets → assets}/stylesheets/materialize/components/_slider.scss +0 -0
  60. data/{app/assets → assets}/stylesheets/materialize/components/_table_of_contents.scss +5 -5
  61. data/{app/assets → assets}/stylesheets/materialize/components/_tabs.scss +10 -10
  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 +7 -14
  65. data/{app/assets → assets}/stylesheets/materialize/components/_tooltip.scss +3 -3
  66. data/assets/stylesheets/materialize/components/_transitions.scss +13 -0
  67. data/{app/assets → assets}/stylesheets/materialize/components/_typography.scss +8 -9
  68. data/{app/assets → assets}/stylesheets/materialize/components/_variables.scss +65 -29
  69. data/assets/stylesheets/materialize/components/_waves.scss +114 -0
  70. data/{app/assets → assets}/stylesheets/materialize/components/forms/_checkboxes.scss +26 -46
  71. data/{app/assets → assets}/stylesheets/materialize/components/forms/_file-input.scss +6 -0
  72. data/{app/assets → assets}/stylesheets/materialize/components/forms/_forms.scss +0 -0
  73. data/{app/assets → assets}/stylesheets/materialize/components/forms/_input-fields.scss +131 -63
  74. data/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +115 -0
  75. data/{app/assets → assets}/stylesheets/materialize/components/forms/_range.scss +35 -33
  76. data/{app/assets → assets}/stylesheets/materialize/components/forms/_select.scss +88 -19
  77. data/{app/assets → assets}/stylesheets/materialize/components/forms/_switches.scss +32 -21
  78. data/assets/stylesheets/materialize/extras/nouislider.css +406 -0
  79. data/{app/assets → assets}/stylesheets/materialize.scss +10 -9
  80. data/lib/materialize-sass/engine.rb +9 -7
  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 -119
  86. data/app/assets/fonts/roboto/Roboto-Bold.eot +0 -0
  87. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  88. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  89. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  90. data/app/assets/fonts/roboto/Roboto-Light.eot +0 -0
  91. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  92. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  93. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  94. data/app/assets/fonts/roboto/Roboto-Medium.eot +0 -0
  95. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  96. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  97. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  98. data/app/assets/fonts/roboto/Roboto-Regular.eot +0 -0
  99. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  100. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  101. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  102. data/app/assets/fonts/roboto/Roboto-Thin.eot +0 -0
  103. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  104. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  105. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  106. data/app/assets/javascripts/materialize/animation.js +0 -9
  107. data/app/assets/javascripts/materialize/buttons.js +0 -267
  108. data/app/assets/javascripts/materialize/cards.js +0 -26
  109. data/app/assets/javascripts/materialize/carousel.js +0 -454
  110. data/app/assets/javascripts/materialize/character_counter.js +0 -72
  111. data/app/assets/javascripts/materialize/chips.js +0 -289
  112. data/app/assets/javascripts/materialize/collapsible.js +0 -160
  113. data/app/assets/javascripts/materialize/date_picker/picker.date.js +0 -1430
  114. data/app/assets/javascripts/materialize/date_picker/picker.js +0 -1123
  115. data/app/assets/javascripts/materialize/dropdown.js +0 -265
  116. data/app/assets/javascripts/materialize/extras/nouislider.js +0 -1666
  117. data/app/assets/javascripts/materialize/extras/nouislider.min.js +0 -1
  118. data/app/assets/javascripts/materialize/forms.js +0 -682
  119. data/app/assets/javascripts/materialize/global.js +0 -98
  120. data/app/assets/javascripts/materialize/hammer.min.js +0 -1
  121. data/app/assets/javascripts/materialize/init.js +0 -174
  122. data/app/assets/javascripts/materialize/initial.js +0 -11
  123. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +0 -205
  124. data/app/assets/javascripts/materialize/jquery.hammer.js +0 -33
  125. data/app/assets/javascripts/materialize/jquery.timeago.min.js +0 -1
  126. data/app/assets/javascripts/materialize/materialbox.js +0 -269
  127. data/app/assets/javascripts/materialize/modal.js +0 -184
  128. data/app/assets/javascripts/materialize/parallax.js +0 -58
  129. data/app/assets/javascripts/materialize/prism.js +0 -8
  130. data/app/assets/javascripts/materialize/pushpin.js +0 -71
  131. data/app/assets/javascripts/materialize/scrollFire.js +0 -48
  132. data/app/assets/javascripts/materialize/scrollspy.js +0 -284
  133. data/app/assets/javascripts/materialize/sideNav.js +0 -370
  134. data/app/assets/javascripts/materialize/slider.js +0 -321
  135. data/app/assets/javascripts/materialize/tabs.js +0 -164
  136. data/app/assets/javascripts/materialize/toasts.js +0 -137
  137. data/app/assets/javascripts/materialize/tooltip.js +0 -236
  138. data/app/assets/javascripts/materialize/transitions.js +0 -169
  139. data/app/assets/javascripts/materialize/velocity.min.js +0 -5
  140. data/app/assets/javascripts/materialize.js +0 -5
  141. data/app/assets/stylesheets/materialize/components/_mixins.scss +0 -5
  142. data/app/assets/stylesheets/materialize/components/_normalize.scss +0 -424
  143. data/app/assets/stylesheets/materialize/components/_prefixer.scss +0 -384
  144. data/app/assets/stylesheets/materialize/components/_roboto.scss +0 -49
  145. data/app/assets/stylesheets/materialize/components/_waves.scss +0 -177
  146. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +0 -435
  147. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +0 -201
  148. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +0 -125
  149. data/app/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +0 -117
  150. data/app/assets/stylesheets/materialize/extras/nouislider.css +0 -259
@@ -1,10 +1,9 @@
1
1
  /* Select Field
2
2
  ========================================================================== */
3
3
 
4
- select { display: none; }
5
- select.browser-default { display: block; }
6
-
4
+ select.browser-default { opacity: 1; }
7
5
  select {
6
+ opacity: 0;
8
7
  background-color: $select-background;
9
8
  width: 100%;
10
9
  padding: $select-padding;
@@ -18,9 +17,48 @@ select {
18
17
  }
19
18
 
20
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
+
21
56
  position: relative;
22
57
 
23
58
  input.select-dropdown {
59
+ &:focus {
60
+ border-bottom: 1px solid $input-focus-color;
61
+ }
24
62
  position: relative;
25
63
  cursor: pointer;
26
64
  background-color: transparent;
@@ -34,43 +72,56 @@ select {
34
72
  margin: $input-margin;
35
73
  padding: 0;
36
74
  display: block;
75
+ user-select:none;
76
+ z-index: 1;
37
77
  }
38
78
 
39
- span.caret {
40
- color: initial;
79
+ .caret {
41
80
  position: absolute;
42
81
  right: 0;
43
82
  top: 0;
44
83
  bottom: 0;
45
- height: 10px;
46
84
  margin: auto 0;
47
- font-size: 10px;
48
- line-height: 10px;
49
-
50
- &.disabled {
51
- color: $input-disabled-color;
52
- }
85
+ z-index: 0;
86
+ fill: rgba(0,0,0,.87);
53
87
  }
54
88
 
55
89
  & + label {
56
90
  position: absolute;
57
- top: -14px;
91
+ top: -26px;
58
92
  font-size: $label-font-size;
59
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
+ }
60
105
  }
61
106
 
62
107
  // Disabled styles
63
108
  select:disabled {
64
- color: rgba(0,0,0,.3);
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
+ }
65
119
  }
66
120
 
67
121
  .select-wrapper input.select-dropdown:disabled {
68
- color: rgba(0,0,0,.3);
122
+ color: $input-disabled-color;
69
123
  cursor: default;
70
- -webkit-user-select: none; /* webkit (safari, chrome) browsers */
71
- -moz-user-select: none; /* mozilla browsers */
72
- -ms-user-select: none; /* IE10+ */
73
- border-bottom: 1px solid rgba(0,0,0,.3);
124
+ user-select: none;
74
125
  }
75
126
 
76
127
  .select-wrapper i {
@@ -84,6 +135,24 @@ select:disabled {
84
135
  background-color: transparent;
85
136
  }
86
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
+
87
156
  // Prefix Icons
88
157
  .prefix ~ .select-wrapper {
89
158
  margin-left: 3rem;
@@ -3,10 +3,8 @@
3
3
 
4
4
  .switch,
5
5
  .switch * {
6
- -webkit-user-select: none;
7
- -moz-user-select: none;
8
- -khtml-user-select: none;
9
- -ms-user-select: none;
6
+ -webkit-tap-highlight-color: transparent;
7
+ user-select: none;
10
8
  }
11
9
 
12
10
  .switch label {
@@ -21,9 +19,12 @@
21
19
  &:checked + .lever {
22
20
  background-color: $switch-checked-lever-bg;
23
21
 
22
+ &:before, &:after {
23
+ left: 18px;
24
+ }
25
+
24
26
  &:after {
25
27
  background-color: $switch-bg-color;
26
- left: 24px;
27
28
  }
28
29
  }
29
30
  }
@@ -32,8 +33,8 @@
32
33
  content: "";
33
34
  display: inline-block;
34
35
  position: relative;
35
- width: 40px;
36
- height: 15px;
36
+ width: 36px;
37
+ height: 14px;
37
38
  background-color: $switch-unchecked-lever-bg;
38
39
  border-radius: $switch-radius;
39
40
  margin-right: 10px;
@@ -41,35 +42,45 @@
41
42
  vertical-align: middle;
42
43
  margin: 0 16px;
43
44
 
44
- &:after {
45
+ &:before, &:after {
45
46
  content: "";
46
47
  position: absolute;
47
48
  display: inline-block;
48
- width: 21px;
49
- height: 21px;
50
- background-color: $switch-unchecked-bg;
51
- border-radius: 21px;
52
- box-shadow: 0 1px 3px 1px rgba(0,0,0,.4);
53
- left: -5px;
49
+ width: 20px;
50
+ height: 20px;
51
+ border-radius: 50%;
52
+ left: 0;
54
53
  top: -3px;
55
- transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
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);
56
64
  }
57
65
  }
58
66
 
59
67
  // Switch active style
60
- input[type=checkbox]:checked:not(:disabled) ~ .lever:active::after,
61
- input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::after {
62
- box-shadow: 0 1px 3px 1px rgba(0,0,0,.4), 0 0 0 15px transparentize($switch-bg-color, .9);
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);
63
72
  }
64
73
 
65
- input[type=checkbox]:not(:disabled) ~ .lever:active:after,
66
- input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::after {
67
- box-shadow: 0 1px 3px 1px rgba(0,0,0,.4), 0 0 0 15px rgba(0, 0, 0, .08);
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);
68
78
  }
69
79
 
70
80
  // Disabled Styles
71
81
  .switch input[type=checkbox][disabled] + .lever {
72
82
  cursor: default;
83
+ background-color: rgba(0,0,0,.12);
73
84
  }
74
85
 
75
86
  .switch label input[type=checkbox][disabled] + .lever:after,
@@ -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";
@@ -31,10 +31,11 @@
31
31
  @import "materialize/components/materialbox";
32
32
  @import "materialize/components/forms/forms";
33
33
  @import "materialize/components/table_of_contents";
34
- @import "materialize/components/sideNav";
34
+ @import "materialize/components/sidenav";
35
35
  @import "materialize/components/preloader";
36
36
  @import "materialize/components/slider";
37
37
  @import "materialize/components/carousel";
38
- @import "materialize/components/date_picker/default";
39
- @import "materialize/components/date_picker/default.date";
40
- @import "materialize/components/date_picker/default.time";
38
+ @import "materialize/components/tapTarget";
39
+ @import "materialize/components/pulse";
40
+ @import "materialize/components/datepicker";
41
+ @import "materialize/components/timepicker";