flashgrid 1.0.7 → 1.0.8
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: 2375d4846a8656998a88493fd036c2d513182591
|
4
|
+
data.tar.gz: ccbbf85d7807f92ea3ecffe509d7cc0f9e396ce7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9750292260369e145c7afa733ffb658a2de25a2ab160fea0eb5e215b4738b54ea7303ee82ec14164b8ff013a82b0f95aaff4b4d57d3f174bdd9677507bd35776
|
7
|
+
data.tar.gz: 9f7a9fa3ac2422598348f7a0a8d1f9a5464f3ee5a9d79df701bf52c4e8a257b68c7a22059a74b941a656b9836becc47a8dd9cf5799569da61c521a804ee20bba
|
data/lib/flashgrid/version.rb
CHANGED
@@ -83,10 +83,10 @@ input.btn-block {
|
|
83
83
|
.btn-green,
|
84
84
|
.btn-red { color: rgba(255,255,255,1); }
|
85
85
|
.btn-black {
|
86
|
-
background: rgba(
|
87
|
-
border-color: rgba(
|
86
|
+
background: rgba(61,64,74,1);
|
87
|
+
border-color: rgba(11,14,24,1);
|
88
88
|
}
|
89
|
-
.btn-black:hover { background: rgba(
|
89
|
+
.btn-black:hover { background: rgba(51,54,64,1); }
|
90
90
|
.btn-black[disabled],
|
91
91
|
.btn-black[disabled]:hover {
|
92
92
|
background: rgba(101,104,114,1);
|
@@ -202,6 +202,10 @@ input.btn-block {
|
|
202
202
|
.btn-large.btn-icon.btn-outline { padding: 11px 13px 11px 13px; }
|
203
203
|
.btn-small.btn-icon.btn-outline { padding: 6px 7px 6px 6px; }
|
204
204
|
.btn-mini.btn-icon.btn-outline { padding: 4px 6px 4px 6px; }
|
205
|
+
.btn-outline-black {
|
206
|
+
border-color: rgba(71,74,84,1);
|
207
|
+
color: rgba(71,74,84,1);
|
208
|
+
}
|
205
209
|
.btn-outline-blue {
|
206
210
|
border-color: rgba(58,144,216,1);
|
207
211
|
color: rgba(58,144,216,1);
|
@@ -214,6 +218,10 @@ input.btn-block {
|
|
214
218
|
border-color: rgba(220,74,56,1);
|
215
219
|
color: rgba(220,74,56,1);
|
216
220
|
}
|
221
|
+
.btn-outline-white {
|
222
|
+
border-color: rgba(255,255,255,1);
|
223
|
+
color: rgba(225,255,255,1);
|
224
|
+
}
|
217
225
|
|
218
226
|
/* #Button Styles
|
219
227
|
================================================== */
|
@@ -234,7 +242,7 @@ input.btn-block {
|
|
234
242
|
border-radius: 0;
|
235
243
|
position: relative;
|
236
244
|
}
|
237
|
-
.btn-group > .btn-black { border-color: rgba(
|
245
|
+
.btn-group > .btn-black { border-color: rgba(11,14,24,1); }
|
238
246
|
.btn-group > .btn-blue { border-color: rgba(25,55,134,1); }
|
239
247
|
.btn-group > .btn-green { border-color: rgba(25,130,72,1); }
|
240
248
|
.btn-group > .btn-red { border-color: rgba(180,34,16,1); }
|
@@ -73,7 +73,7 @@ table {
|
|
73
73
|
.table-unbordered th,
|
74
74
|
.table-unbordered td { border: 0; }
|
75
75
|
.table-scrollable {
|
76
|
-
height:
|
76
|
+
height: 300px;
|
77
77
|
overflow: auto;
|
78
78
|
}
|
79
79
|
|
@@ -81,7 +81,33 @@ table {
|
|
81
81
|
================================================== */
|
82
82
|
@media only screen and (max-width: 767px) {
|
83
83
|
.table-responsive {
|
84
|
-
height:
|
85
|
-
overflow:
|
84
|
+
max-height: 300px;
|
85
|
+
overflow: scroll;
|
86
|
+
-webkit-overflow-scrolling: touch;
|
87
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
88
|
+
border: 1px solid rgba(217,222,225,1);
|
86
89
|
}
|
90
|
+
.table-responsive > .table > thead > tr > th,
|
91
|
+
.table-responsive > .table > tbody > tr > th,
|
92
|
+
.table-responsive > .table > tfoot > tr > th,
|
93
|
+
.table-responsive > .table > thead > tr > td,
|
94
|
+
.table-responsive > .table > tbody > tr > td,
|
95
|
+
.table-responsive > .table > tfoot > tr > td { white-space: nowrap; }
|
96
|
+
.table-responsive > .table-bordered { border: 0; }
|
97
|
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
98
|
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
99
|
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
100
|
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
101
|
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
102
|
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
|
103
|
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
104
|
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
105
|
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
106
|
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
107
|
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
108
|
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
|
109
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
110
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
111
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
112
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
|
87
113
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flashgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|