flashgrid 1.0.22 → 1.1.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/lib/flashgrid/version.rb +1 -1
- data/vendor/assets/stylesheets/form.css.scss +25 -0
- data/vendor/assets/stylesheets/modal.css.scss +0 -17
- 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: d0926b5cdad11bf76ba19c5dd2f13c5430650206
|
4
|
+
data.tar.gz: 6be90ccdb0b2981b5364be84fcdf7b7fc52d42ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbe36a6fe85bd6c6eabf9a3855814731870822ab8958568f4f34472e2934de1afd52e40a2a44fd8620e47c14ba37cdf01a023ea384a7d4d4377f70fd26314973
|
7
|
+
data.tar.gz: 1abdfcc6150660a3674057737c430db252fd354cb1418d0540d27945e7938aad442c3073dbddcc943586a55e388168c387edb99c553f02863445a5a9468d16ee
|
data/lib/flashgrid/version.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
/* Table of Contents
|
2
2
|
==================================================
|
3
3
|
#Form
|
4
|
+
#Form Components
|
5
|
+
#Form Grid
|
4
6
|
#Media Queries */
|
5
7
|
|
6
8
|
/* #Form
|
@@ -171,6 +173,9 @@ select.form-input-initial-width {
|
|
171
173
|
display: inline-block;
|
172
174
|
width: initial;
|
173
175
|
}
|
176
|
+
|
177
|
+
/* #Form Components
|
178
|
+
================================================== */
|
174
179
|
.form-header {
|
175
180
|
border-bottom: 1px solid rgba(236,238,241,1);
|
176
181
|
margin-bottom: 30px;
|
@@ -238,9 +243,29 @@ select.form-input-initial-width {
|
|
238
243
|
}
|
239
244
|
.form-footer li:first-child { margin-top: 10px; }
|
240
245
|
|
246
|
+
/* #Form Grid
|
247
|
+
================================================== */
|
248
|
+
.form-column {
|
249
|
+
display: block;
|
250
|
+
float: left;
|
251
|
+
margin-right: 2.5%;
|
252
|
+
margin-left: 2.5%;
|
253
|
+
}
|
254
|
+
.form-column.alpha { margin-left: 0; }
|
255
|
+
.form-column.omega { margin-right: 0; }
|
256
|
+
.form-column.one-quarter-column { width: 22.5%; }
|
257
|
+
.form-column.one-third-column { width: 30%; }
|
258
|
+
.form-column.half-column { width: 47.5%; }
|
259
|
+
.form-column.two-third-column { width: 65%; }
|
260
|
+
.form-column.three-quarter-column { width: 72.5%; }
|
261
|
+
|
241
262
|
/* #Media Queries
|
242
263
|
================================================== */
|
243
264
|
@media only screen and (max-width: 767px) {
|
244
265
|
.form-button-inline { margin-top: 15px; }
|
245
266
|
.form-text-inline { margin-top: 0; }
|
267
|
+
.form-column-responsive {
|
268
|
+
clear: both;
|
269
|
+
float: none;
|
270
|
+
}
|
246
271
|
}
|
@@ -39,19 +39,6 @@
|
|
39
39
|
top: -100%;
|
40
40
|
}
|
41
41
|
.modal.fade.in { top: 15%; }
|
42
|
-
.modal-column {
|
43
|
-
display: block;
|
44
|
-
float: left;
|
45
|
-
margin-right: 2.5%;
|
46
|
-
margin-left: 2.5%;
|
47
|
-
}
|
48
|
-
.modal-column.alpha { margin-left: 0; }
|
49
|
-
.modal-column.omega { margin-right: 0; }
|
50
|
-
.modal-one-quarter-column { width: 22.5%; }
|
51
|
-
.modal-one-third-column { width: 30%; }
|
52
|
-
.modal-half-column { width: 47.5%; }
|
53
|
-
.modal-two-third-column { width: 65%; }
|
54
|
-
.modal-three-quarter-column { width: 72.5%; }
|
55
42
|
.modal-header {
|
56
43
|
border-top-left-radius: 5px;
|
57
44
|
border-top-right-radius: 5px;
|
@@ -131,10 +118,6 @@ input[type="submit"].modal-footer-btn-right {
|
|
131
118
|
margin-left: -150px;
|
132
119
|
width: 300px;
|
133
120
|
}
|
134
|
-
.modal-column-responsive {
|
135
|
-
clear: both;
|
136
|
-
float: none;
|
137
|
-
}
|
138
121
|
.modal-body { max-height: 180px; }
|
139
122
|
}
|
140
123
|
@media only screen and (min-width: 480px) and (max-width: 767px) {
|