dlegr250_material_design 0.2.28 → 0.2.29
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b8e54071fe3828651a2783140633dcaa6e79c6e
|
4
|
+
data.tar.gz: 07368013c2686f83bf9e69b8cb684deff829c60d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: effc9c128d03352f6b78ab4f8898540d7e820bfb7f0877bcf6e22c2bc0016c1c3c8e94bec51db52c7dc38a54484e4427f515a8f440e81625bae8d3fc99ee44e7
|
7
|
+
data.tar.gz: 200ac2c5d4797f6f6a5ce07063ac5881d14d30913500f1f66db3f4a5b551c05b836dd8eb8bd175ba4d623d161663bc3398c85fa23477981fc8cf447f684d290a
|
@@ -7,28 +7,28 @@
|
|
7
7
|
|
8
8
|
#snackbar {
|
9
9
|
background-color: #323232;
|
10
|
+
box-sizing: border-box;
|
10
11
|
bottom: 0;
|
11
12
|
color: color("white");
|
12
13
|
cursor: pointer;
|
13
14
|
left: 0;
|
14
|
-
height: 0;
|
15
15
|
overflow: hidden;
|
16
|
-
|
17
|
-
|
16
|
+
max-height: 80px;
|
17
|
+
min-height: 48px;
|
18
|
+
padding: $spacing-normal;
|
19
|
+
position: fixed;
|
18
20
|
pointer-events: none;
|
19
21
|
right: 0;
|
20
22
|
will-change: transform;
|
21
23
|
z-index: $layout-depth + 1;
|
22
24
|
@include transform(translateY(200%));
|
23
|
-
@include transition(transform 0.
|
25
|
+
@include transition(transform 0.10s cubic-bezier(0, 0, 0.3, 1));
|
24
26
|
|
25
27
|
&.snackbar-error {
|
26
28
|
color: color("red") !important;
|
27
29
|
}
|
28
30
|
|
29
31
|
&.visible {
|
30
|
-
height: auto;
|
31
|
-
padding: $spacing-normal;
|
32
32
|
pointer-events: auto;
|
33
33
|
@include transform(none);
|
34
34
|
}
|
@@ -47,12 +47,13 @@
|
|
47
47
|
|
48
48
|
@media (min-width: $medium-width) {
|
49
49
|
#snackbar {
|
50
|
-
left:
|
51
|
-
margin-bottom:
|
50
|
+
left: 24px !important;
|
51
|
+
margin-bottom: 24px !important;
|
52
|
+
display: inline-block;
|
52
53
|
max-width: 568px;
|
53
54
|
min-width: 288px;
|
54
55
|
right: auto;
|
55
|
-
@include box-shadow(0
|
56
|
+
@include box-shadow(0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2));
|
56
57
|
@include rounded-corners();
|
57
58
|
}
|
58
59
|
|