flashgrid 1.0.5 → 1.0.6
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: 5c4a77bcf00c4c1d8f6e1b12d16c5e906a7c1422
|
4
|
+
data.tar.gz: c43d6491a3c8f30f369308ac8972de5b8f42899f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b5418e0a841b5ae69756a56d9fdabff9833e2c289d8ea7c8a8d484e68187880df8cb33752397befc7d3d523a747f2695c768c6d0a515365b9208d222720a365
|
7
|
+
data.tar.gz: 010befa9cf3275df112b3358dc140856b56638dbf67ad1f31d8a4eb0dbfbf350fcf0016cd06f44a15e6f17d062b4bed3c38caeda6a0d830d21b6ba77c7509f75
|
data/lib/flashgrid/version.rb
CHANGED
@@ -78,12 +78,21 @@ input.btn-block {
|
|
78
78
|
|
79
79
|
/* #Button Colors
|
80
80
|
================================================== */
|
81
|
+
.btn-black,
|
81
82
|
.btn-blue,
|
82
83
|
.btn-green,
|
83
|
-
.btn-red,
|
84
|
-
.btn-
|
85
|
-
|
86
|
-
|
84
|
+
.btn-red { color: rgba(255,255,255,1); }
|
85
|
+
.btn-black {
|
86
|
+
background: rgba(71,74,84,1);
|
87
|
+
border-color: rgba(21,24,34,1);
|
88
|
+
}
|
89
|
+
.btn-black:hover { background: rgba(61,64,74,1); }
|
90
|
+
.btn-black[disabled],
|
91
|
+
.btn-black[disabled]:hover {
|
92
|
+
background: rgba(101,104,114,1);
|
93
|
+
border-color: rgba(81,84,94,1);
|
94
|
+
color: rgba(255,255,255,1);
|
95
|
+
}
|
87
96
|
.btn-blue {
|
88
97
|
background: rgba(85,115,194,1);
|
89
98
|
border-color: rgba(25,55,134,1);
|
@@ -93,16 +102,19 @@ input.btn-block {
|
|
93
102
|
.btn-blue[disabled]:hover {
|
94
103
|
background: rgba(125,155,234,1);
|
95
104
|
border-color: rgba(75,105,184,1);
|
105
|
+
color: rgba(255,255,255,1);
|
96
106
|
}
|
97
107
|
.btn-green {
|
98
108
|
background: rgba(75,180,122,1);
|
99
109
|
border-color: rgba(25,130,72,1);
|
110
|
+
color: rgba(255,255,255,1);
|
100
111
|
}
|
101
112
|
.btn-green:hover { background: rgba(65,170,112,1); }
|
102
113
|
.btn-green[disabled],
|
103
114
|
.btn-green[disabled]:hover {
|
104
115
|
background: rgba(105,210,152,1);
|
105
116
|
border-color: rgba(55,160,132,1);
|
117
|
+
color: rgba(255,255,255,1);
|
106
118
|
}
|
107
119
|
.btn-red {
|
108
120
|
background: rgba(220,74,56,1);
|
@@ -113,6 +125,14 @@ input.btn-block {
|
|
113
125
|
.btn-red[disabled]:hover {
|
114
126
|
background: rgba(240,94,76,1);
|
115
127
|
border-color: rgba(200,54,36,1);
|
128
|
+
color: rgba(255,255,255,1);
|
129
|
+
}
|
130
|
+
.btn-white { background: rgba(255,255,255,1); }
|
131
|
+
.btn-white:hover { background: rgba(236,238,241,1); }
|
132
|
+
.btn-white[disabled],
|
133
|
+
.btn-white[disabled]:hover {
|
134
|
+
background: rgba(250,250,250,1);
|
135
|
+
border-color: rgba(216,218,221,1);
|
116
136
|
}
|
117
137
|
|
118
138
|
/* #Button Links
|
@@ -214,9 +234,11 @@ input.btn-block {
|
|
214
234
|
border-radius: 0;
|
215
235
|
position: relative;
|
216
236
|
}
|
237
|
+
.btn-group > .btn-black { border-color: rgba(21,24,34,1); }
|
217
238
|
.btn-group > .btn-blue { border-color: rgba(25,55,134,1); }
|
218
239
|
.btn-group > .btn-green { border-color: rgba(25,130,72,1); }
|
219
240
|
.btn-group > .btn-red { border-color: rgba(180,34,16,1); }
|
241
|
+
.btn-group > .btn-white { border-color: rgba(196,198,201,1); }
|
220
242
|
.btn-group > .btn:first-child {
|
221
243
|
border-bottom-left-radius: 2px;
|
222
244
|
border-top-left-radius: 2px;
|
@@ -18,11 +18,16 @@ ol { padding-left: 23px; }
|
|
18
18
|
list-style-type: none;
|
19
19
|
padding: 0;
|
20
20
|
}
|
21
|
-
.list-inline li {
|
21
|
+
.list-inline > li {
|
22
22
|
display: inline-block;
|
23
23
|
margin-right: 10px;
|
24
24
|
}
|
25
|
-
.list-inline li:last-child { margin-right: 0; }
|
25
|
+
.list-inline > li:last-child { margin-right: 0; }
|
26
|
+
.list-scrollable {
|
27
|
+
max-height: 200px;
|
28
|
+
max-width: 100%;
|
29
|
+
overflow: scroll;
|
30
|
+
}
|
26
31
|
dl dt,
|
27
32
|
dl dd {
|
28
33
|
font-size: 16px;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
/* Table of Contents
|
2
2
|
==================================================
|
3
|
-
#Table
|
3
|
+
#Table
|
4
|
+
#Media Queries */
|
4
5
|
|
5
6
|
/* #Table
|
6
7
|
================================================== */
|
@@ -42,9 +43,9 @@ table {
|
|
42
43
|
font-size: 14px;
|
43
44
|
padding: 5px 5px 3px 5px;
|
44
45
|
}
|
45
|
-
.table-condensed th {
|
46
|
+
.table-condensed th {
|
46
47
|
font-size: 12px;
|
47
|
-
padding: 5px;
|
48
|
+
padding: 5px;
|
48
49
|
}
|
49
50
|
.table-bordered {
|
50
51
|
border: 1px solid rgba(217,222,225,1);
|
@@ -70,4 +71,14 @@ table {
|
|
70
71
|
.table-unbordered thead,
|
71
72
|
.table-unbordered tbody,
|
72
73
|
.table-unbordered th,
|
73
|
-
.table-unbordered td { border: 0; }
|
74
|
+
.table-unbordered td { border: 0; }
|
75
|
+
|
76
|
+
/* #Media Queries
|
77
|
+
================================================== */
|
78
|
+
@media only screen and (max-width: 767px) {
|
79
|
+
.table-responsive {
|
80
|
+
max-height: 200px;
|
81
|
+
max-width: 100%;
|
82
|
+
overflow: scroll;
|
83
|
+
}
|
84
|
+
}
|
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.6
|
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-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|