flashgrid-ext 1.0.10 → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/flashgrid/ext/version.rb +1 -1
- data/vendor/assets/stylesheets/aside.css.scss +25 -11
- 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: 240d3e34de1b9e47f2aab8f1937604255d7e92d6
|
4
|
+
data.tar.gz: 22f86d0b654b783d66bee0a3d383d66bba9f2c55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ed1b9cf1713adc5a51c0e912c35278ca78702e15dd4a0f0cb58c09d570d7c99a0e2734b81c76137c1d572cf9f9c7efc29875eca8bc7073a06093bc202690d96
|
7
|
+
data.tar.gz: 9fb61ecad65974bcdaaf5039892c85a2bda1127e38fe56caf5432f9b6e6093f902a3cc4cbd9583030c6cb2210b871d815cb4d3eec5fcac09455205f3b333adf0
|
@@ -25,18 +25,27 @@
|
|
25
25
|
top: 0;
|
26
26
|
}
|
27
27
|
.aside .modal-body {
|
28
|
-
|
29
|
-
|
28
|
+
border-bottom: 0;
|
29
|
+
min-height: 75%;
|
30
30
|
}
|
31
31
|
.aside .modal-footer {
|
32
|
-
|
32
|
+
bottom: 0;
|
33
|
+
background: rgba(255,255,255,1);
|
34
|
+
border-top: 1px solid rgba(227,232,235,1);
|
33
35
|
border-radius: 0;
|
36
|
+
position: absolute;
|
37
|
+
right: 0;
|
34
38
|
}
|
35
39
|
.modal-footer-btn,
|
36
40
|
input[type="submit"].modal-footer-btn {
|
37
41
|
border-bottom-left-radius: 0;
|
38
42
|
border-bottom-right-radius: 0;
|
43
|
+
width: 420px;
|
39
44
|
}
|
45
|
+
.modal-footer-btn-left,
|
46
|
+
input[type="submit"].modal-footer-btn-left,
|
47
|
+
.modal-footer-btn-right,
|
48
|
+
input[type="submit"].modal-footer-btn-right { width: 210px; }
|
40
49
|
|
41
50
|
/* #Media Queries
|
42
51
|
================================================== */
|
@@ -45,18 +54,23 @@ input[type="submit"].modal-footer-btn {
|
|
45
54
|
margin-left: 0;
|
46
55
|
width: 300px;
|
47
56
|
}
|
48
|
-
.
|
49
|
-
|
50
|
-
|
51
|
-
|
57
|
+
.modal-footer-btn,
|
58
|
+
input[type="submit"].modal-footer-btn { width: 300px; }
|
59
|
+
.modal-footer-btn-left,
|
60
|
+
input[type="submit"].modal-footer-btn-left,
|
61
|
+
.modal-footer-btn-right,
|
62
|
+
input[type="submit"].modal-footer-btn-right { width: 150px; }
|
52
63
|
}
|
53
64
|
@media only screen and (min-width: 480px) and (max-width: 767px) {
|
54
65
|
.aside {
|
55
66
|
margin-left: 0;
|
56
67
|
width: 420px;
|
57
68
|
}
|
58
|
-
.aside .modal-body {
|
59
|
-
|
60
|
-
|
61
|
-
|
69
|
+
.aside .modal-body { min-height: 50%; }
|
70
|
+
.modal-footer-btn,
|
71
|
+
input[type="submit"].modal-footer-btn { width: 420px; }
|
72
|
+
.modal-footer-btn-left,
|
73
|
+
input[type="submit"].modal-footer-btn-left,
|
74
|
+
.modal-footer-btn-right,
|
75
|
+
input[type="submit"].modal-footer-btn-right { width: 210px; }
|
62
76
|
}
|