materialize-sass 0.95.3.2 → 0.95.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +59 -59
- data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/app/assets/javascripts/materialize-sprockets.js +1 -1
- data/app/assets/javascripts/materialize.js +1 -0
- data/app/assets/javascripts/materialize/{animations.js → animation.js} +1 -0
- data/app/assets/javascripts/materialize/buttons.js +20 -20
- data/app/assets/javascripts/materialize/cards.js +11 -7
- data/app/assets/javascripts/materialize/collapsible.js +1 -1
- data/app/assets/javascripts/materialize/date_picker/picker.date.js +27 -24
- data/app/assets/javascripts/materialize/dropdown.js +17 -15
- data/app/assets/javascripts/materialize/forms.js +41 -19
- data/app/assets/javascripts/materialize/hammer.min.js +1 -1
- data/app/assets/javascripts/materialize/init.js +4 -4
- data/app/assets/javascripts/materialize/jquery.easing.1.3.js +1 -1
- data/app/assets/javascripts/materialize/leanModal.js +68 -23
- data/app/assets/javascripts/materialize/materialbox.js +22 -10
- data/app/assets/javascripts/materialize/parallax.js +10 -1
- data/app/assets/javascripts/materialize/pushpin.js +1 -13
- data/app/assets/javascripts/materialize/scrollFire.js +11 -10
- data/app/assets/javascripts/materialize/scrollspy.js +1 -1
- data/app/assets/javascripts/materialize/sideNav.js +42 -38
- data/app/assets/javascripts/materialize/slider.js +2 -3
- data/app/assets/javascripts/materialize/tabs.js +1 -2
- data/app/assets/javascripts/materialize/tooltip.js +0 -1
- data/app/assets/javascripts/materialize/transitions.js +60 -5
- data/app/assets/javascripts/materialize/velocity.min.js +3 -3
- data/app/assets/stylesheets/materialize/components/_buttons.scss +142 -140
- data/app/assets/stylesheets/materialize/components/_dropdown.scss +1 -0
- data/app/assets/stylesheets/materialize/components/_global.scss +3 -3
- data/app/assets/stylesheets/materialize/components/_grid.scss +2 -2
- data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +5 -5
- data/app/assets/stylesheets/materialize/components/_modal.scss +13 -0
- data/app/assets/stylesheets/materialize/components/_navbar.scss +15 -21
- data/app/assets/stylesheets/materialize/components/_preloader.scss +20 -24
- data/app/assets/stylesheets/materialize/components/_roboto.scss +15 -5
- data/app/assets/stylesheets/materialize/components/_sideNav.scss +1 -0
- data/app/assets/stylesheets/materialize/components/_slider.scss +1 -1
- data/app/assets/stylesheets/materialize/components/_tabs.scss +43 -43
- data/app/assets/stylesheets/materialize/components/_typography.scss +55 -55
- data/app/assets/stylesheets/materialize/components/_variables.scss +11 -11
- data/app/assets/stylesheets/materialize/components/_waves.scss +2 -3
- data/lib/materialize-sass/version.rb +1 -1
- metadata +27 -8
- checksums.yaml +0 -7
@@ -9,7 +9,7 @@ $error-color: color("red", "base") !default;
|
|
9
9
|
$link-color: color("light-blue", "darken-1") !default;
|
10
10
|
|
11
11
|
/*** Badges ***/
|
12
|
-
$badge-bg-color: $secondary-color;
|
12
|
+
$badge-bg-color: $secondary-color !default;
|
13
13
|
|
14
14
|
/*** Buttons ***/
|
15
15
|
$button-bg-color-disabled: #DFDFDF !default;
|
@@ -34,11 +34,11 @@ $collapsible-border-color: #ddd !default;
|
|
34
34
|
|
35
35
|
|
36
36
|
/*** Dropdown ***/
|
37
|
-
$dropdown-color: $secondary-color;
|
37
|
+
$dropdown-color: $secondary-color !default;
|
38
38
|
|
39
39
|
/*** Fonts ***/
|
40
|
-
$roboto-font-path: "
|
41
|
-
$icons-font-path: "
|
40
|
+
$roboto-font-path: "roboto/" !default;
|
41
|
+
$icons-font-path: "material-design-icons/" !default;
|
42
42
|
|
43
43
|
/*** Forms ***/
|
44
44
|
// Text Inputs + Textarea
|
@@ -66,8 +66,8 @@ $datepicker-weekday-bg: darken($secondary_color, 7%) !default;
|
|
66
66
|
$datepicker-date-bg: $secondary_color !default;
|
67
67
|
$datepicker-year: rgba(255, 255, 255, .4) !default;
|
68
68
|
$datepicker-focus: rgba(0,0,0, .05) !default;
|
69
|
-
$datepicker-selected: $secondary-color;
|
70
|
-
$datepicker-selected-outfocus: desaturate(lighten($secondary-color, 35%), 15%);
|
69
|
+
$datepicker-selected: $secondary-color !default;
|
70
|
+
$datepicker-selected-outfocus: desaturate(lighten($secondary-color, 35%), 15%) !default;
|
71
71
|
|
72
72
|
|
73
73
|
/*** Global ***/
|
@@ -102,11 +102,11 @@ $navbar-height-mobile: 56px !default;
|
|
102
102
|
|
103
103
|
/*** Tabs ***/
|
104
104
|
$tabs-underline-color: $primary-color-light !default;
|
105
|
-
$tabs-text-color: $primary-color;
|
105
|
+
$tabs-text-color: $primary-color !default;
|
106
106
|
|
107
107
|
/*** Tables ***/
|
108
|
-
$table-border-color: #d0d0d0;
|
109
|
-
$table-striped-color: #f2f2f2;
|
108
|
+
$table-border-color: #d0d0d0 !default;
|
109
|
+
$table-striped-color: #f2f2f2 !default;
|
110
110
|
|
111
111
|
/*** Toasts ***/
|
112
112
|
$toast-height: 48px !default;
|
@@ -124,7 +124,7 @@ $h5-fontsize: 1.64rem !default;
|
|
124
124
|
$h6-fontsize: 1rem !default;
|
125
125
|
|
126
126
|
// Footer
|
127
|
-
$footer-bg-color: $primary-color;
|
127
|
+
$footer-bg-color: $primary-color !default;
|
128
128
|
|
129
129
|
// Flowtext
|
130
130
|
$range : $large-screen - $small-screen !default;
|
@@ -139,4 +139,4 @@ $collection-active-color: lighten($secondary-color, 55%) !default;
|
|
139
139
|
$collection-hover-bg-color: #ddd !default;
|
140
140
|
|
141
141
|
/* Progress Bar */
|
142
|
-
$progress-bar-color: $secondary-color;
|
142
|
+
$progress-bar-color: $secondary-color !default;
|
@@ -22,7 +22,7 @@
|
|
22
22
|
// white-space: nowrap;
|
23
23
|
// outline: 0;
|
24
24
|
|
25
|
-
|
25
|
+
vertical-align: middle;
|
26
26
|
// cursor: pointer;
|
27
27
|
// border: none;
|
28
28
|
// outline: none;
|
@@ -32,7 +32,6 @@
|
|
32
32
|
// line-height:1em;
|
33
33
|
// text-align: center;
|
34
34
|
// text-decoration: none;
|
35
|
-
vertical-align: middle;
|
36
35
|
z-index: 1;
|
37
36
|
will-change: opacity, transform;
|
38
37
|
@include transition(all .3s ease-out);
|
@@ -165,4 +164,4 @@
|
|
165
164
|
/* Firefox Bug: link not triggered */
|
166
165
|
a.waves-effect .waves-ripple {
|
167
166
|
z-index: -1;
|
168
|
-
}
|
167
|
+
}
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: materialize-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.95.3.
|
4
|
+
version: 0.95.3.3
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- mkhairi
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
12
|
+
date: 2015-03-07 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
@@ -20,6 +22,7 @@ dependencies:
|
|
20
22
|
type: :development
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ~>
|
25
28
|
- !ruby/object:Gem::Version
|
@@ -27,6 +30,7 @@ dependencies:
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rake
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
35
|
- - ~>
|
32
36
|
- !ruby/object:Gem::Version
|
@@ -34,6 +38,7 @@ dependencies:
|
|
34
38
|
type: :development
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
43
|
- - ~>
|
39
44
|
- !ruby/object:Gem::Version
|
@@ -41,6 +46,7 @@ dependencies:
|
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: sass
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
51
|
- - ~>
|
46
52
|
- !ruby/object:Gem::Version
|
@@ -48,6 +54,7 @@ dependencies:
|
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
59
|
- - ~>
|
53
60
|
- !ruby/object:Gem::Version
|
@@ -69,14 +76,25 @@ files:
|
|
69
76
|
- app/assets/fonts/material-design-icons/Material-Design-Icons.svg
|
70
77
|
- app/assets/fonts/material-design-icons/Material-Design-Icons.ttf
|
71
78
|
- app/assets/fonts/material-design-icons/Material-Design-Icons.woff
|
79
|
+
- app/assets/fonts/material-design-icons/Material-Design-Icons.woff2
|
72
80
|
- app/assets/fonts/roboto/Roboto-Bold.ttf
|
81
|
+
- app/assets/fonts/roboto/Roboto-Bold.woff
|
82
|
+
- app/assets/fonts/roboto/Roboto-Bold.woff2
|
73
83
|
- app/assets/fonts/roboto/Roboto-Light.ttf
|
84
|
+
- app/assets/fonts/roboto/Roboto-Light.woff
|
85
|
+
- app/assets/fonts/roboto/Roboto-Light.woff2
|
74
86
|
- app/assets/fonts/roboto/Roboto-Medium.ttf
|
87
|
+
- app/assets/fonts/roboto/Roboto-Medium.woff
|
88
|
+
- app/assets/fonts/roboto/Roboto-Medium.woff2
|
75
89
|
- app/assets/fonts/roboto/Roboto-Regular.ttf
|
90
|
+
- app/assets/fonts/roboto/Roboto-Regular.woff
|
91
|
+
- app/assets/fonts/roboto/Roboto-Regular.woff2
|
76
92
|
- app/assets/fonts/roboto/Roboto-Thin.ttf
|
93
|
+
- app/assets/fonts/roboto/Roboto-Thin.woff
|
94
|
+
- app/assets/fonts/roboto/Roboto-Thin.woff2
|
77
95
|
- app/assets/javascripts/materialize-sprockets.js
|
78
96
|
- app/assets/javascripts/materialize.js
|
79
|
-
- app/assets/javascripts/materialize/
|
97
|
+
- app/assets/javascripts/materialize/animation.js
|
80
98
|
- app/assets/javascripts/materialize/buttons.js
|
81
99
|
- app/assets/javascripts/materialize/cards.js
|
82
100
|
- app/assets/javascripts/materialize/collapsible.js
|
@@ -140,25 +158,26 @@ files:
|
|
140
158
|
homepage: https://github.com/mkhairi/materialize-sass
|
141
159
|
licenses:
|
142
160
|
- MIT
|
143
|
-
metadata: {}
|
144
161
|
post_install_message:
|
145
162
|
rdoc_options: []
|
146
163
|
require_paths:
|
147
164
|
- lib
|
148
165
|
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
+
none: false
|
149
167
|
requirements:
|
150
|
-
- - '>='
|
168
|
+
- - ! '>='
|
151
169
|
- !ruby/object:Gem::Version
|
152
170
|
version: '0'
|
153
171
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
154
173
|
requirements:
|
155
|
-
- - '>='
|
174
|
+
- - ! '>='
|
156
175
|
- !ruby/object:Gem::Version
|
157
176
|
version: '0'
|
158
177
|
requirements: []
|
159
178
|
rubyforge_project:
|
160
|
-
rubygems_version:
|
179
|
+
rubygems_version: 1.8.23
|
161
180
|
signing_key:
|
162
|
-
specification_version:
|
181
|
+
specification_version: 3
|
163
182
|
summary: Materialzecss sass for rails.
|
164
183
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 68b8f0f177cdaed33844262a2fa236ff7f6b4e33
|
4
|
-
data.tar.gz: 7943d77bef3e058923e26f5567498b8a1d659c62
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 444b4c933c427269da97175e67f4c2310b1a9161177aed6182413b1674194ad04e6e08ff38d86a526a154396ecfd4f98c9eeef68175a55e101abbde00fadf467
|
7
|
-
data.tar.gz: 0f2610ba6c4a2ca46ca3e23e51e08926c14e8b4242dfaba8dfe027a97b87d39b14069f8136ad7f766c2ae36d757c3ab6c22aac45adedb8c982eabac420377dab
|