dlegr250_material_design 0.5.83 → 0.5.84
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/lib/dlegr250_material_design/version.rb +1 -1
- data/vendor/assets/stylesheets/components/blank_states.scss +1 -1
- data/vendor/assets/stylesheets/components/buttons.scss +1 -1
- data/vendor/assets/stylesheets/components/cards.scss +1 -1
- data/vendor/assets/stylesheets/components/description_lists.scss +1 -1
- data/vendor/assets/stylesheets/components/dialogs.scss +4 -4
- data/vendor/assets/stylesheets/components/forms/fields.scss +1 -1
- data/vendor/assets/stylesheets/components/forms/segmented_controls.scss +1 -1
- data/vendor/assets/stylesheets/components/forms/text_fields.scss +1 -1
- data/vendor/assets/stylesheets/components/forms/toggles.scss +1 -1
- data/vendor/assets/stylesheets/components/grids.scss +1 -1
- data/vendor/assets/stylesheets/components/layout/grid.scss +2 -2
- data/vendor/assets/stylesheets/components/menus.scss +1 -1
- data/vendor/assets/stylesheets/components/snackbars.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 758e0f9f26a8505b5b9d50cb2a9ee44e1e495b07
|
|
4
|
+
data.tar.gz: c5265c8a2d4ffdb49fe3ca7fc03013d1208e52f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 025bbe1e653e8610fa7ee4c60dd1dd13a7f52c4abeeba903a61e302c135543431e77db755fdfa4dfb569cceb80f927039e84a1573dc48655c295bfb34846aa19
|
|
7
|
+
data.tar.gz: 293844d03a351affc5c8b480beacf0c44f153deea5bb937c3a863c384749a133d58dd6724a60a7a62a69f3bceadbf1330577093125be3a38edfcec50185ed38a
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
// Sizes
|
|
71
|
-
@media (min-width: $
|
|
71
|
+
@media (min-width: $device-small) {
|
|
72
72
|
.dialog-xsmall { width: $dialog-width-xsmall !important; }
|
|
73
73
|
.dialog-small { width: $dialog-width-small !important; }
|
|
74
74
|
.dialog-normal { width: $dialog-width-normal !important; }
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
@include list-item-secondary-actions();
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
@media (min-width: $
|
|
175
|
+
@media (min-width: $device-small) {
|
|
176
176
|
.dialog-header-primary {
|
|
177
177
|
font-size: $font-size-large;
|
|
178
178
|
}
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
overflow-y: auto;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
@media (min-width: $
|
|
195
|
+
@media (min-width: $device-small) {
|
|
196
196
|
.dialog-scrollable {
|
|
197
197
|
max-height: calc(90vh - #{$dialog-header-height * 2}); // For dialog-header and dialog-actions
|
|
198
198
|
}
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
@media (min-width: $
|
|
226
|
+
@media (min-width: $device-medium) {
|
|
227
227
|
.dialog-full-height {
|
|
228
228
|
.dialog-scrollable-no-actions {
|
|
229
229
|
height: calc(90vh - 64px);
|
|
@@ -63,7 +63,7 @@ $flex-grid-columns-count: 12;
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
// Medium devices
|
|
66
|
-
@media (min-width: $
|
|
66
|
+
@media (min-width: $device-medium) {
|
|
67
67
|
@for $i from 1 through $flex-grid-columns-count {
|
|
68
68
|
$width: (100% / $flex-grid-columns-count * $i);
|
|
69
69
|
.col-med-#{$i},
|
|
@@ -75,7 +75,7 @@ $flex-grid-columns-count: 12;
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
// Large devices
|
|
78
|
-
@media (min-width: $
|
|
78
|
+
@media (min-width: $device-large) {
|
|
79
79
|
@for $i from 1 through $flex-grid-columns-count {
|
|
80
80
|
$width: (100% / $flex-grid-columns-count * $i);
|
|
81
81
|
.col-large-#{$i},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
// Snackbar - media queries
|
|
46
46
|
//----------------------------------------------------------------------
|
|
47
47
|
|
|
48
|
-
@media (min-width: $
|
|
48
|
+
@media (min-width: $device-medium) {
|
|
49
49
|
#snackbar {
|
|
50
50
|
left: 24px !important;
|
|
51
51
|
margin-bottom: 24px !important;
|