material_components_web-sass 0.22.0 → 0.23.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/material_components_web/sass/version.rb +1 -1
- data/vendor/assets/javascripts/material-components-web.js +741 -221
- data/vendor/assets/stylesheets/@material/checkbox/_functions.scss +33 -0
- data/vendor/assets/stylesheets/@material/checkbox/_keyframes.scss +33 -51
- data/vendor/assets/stylesheets/@material/checkbox/_mixins.scss +395 -0
- data/vendor/assets/stylesheets/@material/checkbox/_variables.scss +6 -3
- data/vendor/assets/stylesheets/@material/checkbox/mdc-checkbox.scss +59 -288
- data/vendor/assets/stylesheets/@material/list/mdc-list.scss +2 -0
- data/vendor/assets/stylesheets/@material/menu/simple/mdc-simple-menu.scss +1 -0
- data/vendor/assets/stylesheets/@material/radio/mdc-radio.scss +0 -1
- data/vendor/assets/stylesheets/@material/textfield/mdc-textfield.scss +4 -0
- data/vendor/assets/stylesheets/@material/toolbar/_mixins.scss +1 -1
- data/vendor/assets/stylesheets/@material/toolbar/mdc-toolbar.scss +4 -4
- metadata +4 -2
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
/**
|
20
20
|
* Applies styles to the different types of icons that can exist in toolbars.
|
21
|
-
* Both .mdc-toolbar__icon and .mdc-
|
21
|
+
* Both .mdc-toolbar__icon and .mdc-toolbar__menu-icon share all styles except for
|
22
22
|
* horizontal padding.
|
23
23
|
*/
|
24
24
|
@mixin mdc-shared-icon-style() {
|
@@ -98,7 +98,7 @@
|
|
98
98
|
@include mdc-rtl-reflexive-property(padding, $mdc-toolbar-element-horizontal-padding-desktop / 2, $mdc-toolbar-element-horizontal-padding-desktop);
|
99
99
|
}
|
100
100
|
|
101
|
-
&
|
101
|
+
&__menu-icon {
|
102
102
|
@include mdc-shared-icon-style;
|
103
103
|
@include mdc-theme-prop(color, text-primary-on-primary);
|
104
104
|
|
@@ -108,7 +108,7 @@
|
|
108
108
|
}
|
109
109
|
}
|
110
110
|
|
111
|
-
.mdc-
|
111
|
+
.mdc-toolbar__menu-icon + .mdc-toolbar__title {
|
112
112
|
@include mdc-rtl-reflexive-box(margin, left, $mdc-toolbar-title-margin-to-menu-icon-desktop);
|
113
113
|
}
|
114
114
|
|
@@ -126,12 +126,12 @@
|
|
126
126
|
@include mdc-rtl-reflexive-property(padding, $mdc-toolbar-element-horizontal-padding-mobile / 2, $mdc-toolbar-element-horizontal-padding-mobile);
|
127
127
|
}
|
128
128
|
|
129
|
-
.mdc-
|
129
|
+
.mdc-toolbar__menu-icon {
|
130
130
|
padding-right: $mdc-toolbar-element-horizontal-padding-mobile;
|
131
131
|
padding-left: $mdc-toolbar-element-horizontal-padding-mobile;
|
132
132
|
}
|
133
133
|
|
134
|
-
.mdc-
|
134
|
+
.mdc-toolbar__menu-icon + .mdc-toolbar__title {
|
135
135
|
@include mdc-rtl-reflexive-box(margin, left, $mdc-toolbar-title-margin-to-menu-icon-mobile);
|
136
136
|
}
|
137
137
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material_components_web-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitriy Tarasov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autoprefixer-rails
|
@@ -130,7 +130,9 @@ files:
|
|
130
130
|
- vendor/assets/stylesheets/@material/button/_variables.scss
|
131
131
|
- vendor/assets/stylesheets/@material/button/mdc-button.scss
|
132
132
|
- vendor/assets/stylesheets/@material/card/mdc-card.scss
|
133
|
+
- vendor/assets/stylesheets/@material/checkbox/_functions.scss
|
133
134
|
- vendor/assets/stylesheets/@material/checkbox/_keyframes.scss
|
135
|
+
- vendor/assets/stylesheets/@material/checkbox/_mixins.scss
|
134
136
|
- vendor/assets/stylesheets/@material/checkbox/_variables.scss
|
135
137
|
- vendor/assets/stylesheets/@material/checkbox/mdc-checkbox.scss
|
136
138
|
- vendor/assets/stylesheets/@material/dialog/mdc-dialog.scss
|