dlegr250_material_design 0.5.27 → 0.5.28
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6de37d2ccef1ca3137160428c45134c8561195a
|
|
4
|
+
data.tar.gz: ad457a1b810baad51bcdd4219b7e7c18b770ffdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abc1f38877ad2b348a575fc3fe58ffd5adbc4cf367983211e13c053592fd18f0629a9c2dab7e9957b733d7b4cb3d0b43479e1e7da3ff0a44137f86b1daa1d400
|
|
7
|
+
data.tar.gz: 95087db7b6bd7cd6c0ed8b2fc5acaa51af0d10166b68d70e6e377a8065d18a1c0a73e82c8bc2eda49122fdaa4bb63b6a3acfbf0e6c34ccec9c864e2b7a685753
|
|
@@ -26,17 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
// Dialogs - shared
|
|
30
|
-
//----------------------------------------------------------------------
|
|
31
|
-
|
|
32
|
-
.dialog-header,
|
|
33
|
-
.dialog-header-primary,
|
|
34
|
-
.dialog-header-primary-subtext,
|
|
35
|
-
.dialog-content,
|
|
36
|
-
.dialog-actions {
|
|
37
|
-
box-sizing: border-box;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
29
|
// Dialogs - base
|
|
41
30
|
//----------------------------------------------------------------------
|
|
42
31
|
|
|
@@ -137,14 +126,17 @@
|
|
|
137
126
|
//----------------------------------------------------------------------
|
|
138
127
|
|
|
139
128
|
.dialog-content {
|
|
129
|
+
padding: $spacing-normal;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.dialog-scrollable {
|
|
140
133
|
max-height: calc(100vh - #{$appbar-height}); // For dialog-header
|
|
141
134
|
overflow: scroll;
|
|
142
|
-
padding: $spacing-normal;
|
|
143
135
|
// @include force-text-wrap();
|
|
144
136
|
}
|
|
145
137
|
|
|
146
138
|
@media (min-width: $width-small) {
|
|
147
|
-
.dialog-
|
|
139
|
+
.dialog-scrollable {
|
|
148
140
|
max-height: calc(90vh - #{$appbar-height * 2}); // For dialog-header and dialog-actions
|
|
149
141
|
}
|
|
150
142
|
}
|