flashgrid 3.6.0 → 4.0.0
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: a3c94126a9a837e477c52030feb619440298b17a
|
4
|
+
data.tar.gz: 300ce9d1b55e50a1e45333e71a3c9dfd7506930c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e9d6cf7f02601c70ef7820a0689650f5a5b1dc90916ed1f7daf0cb770d6e7142a6bc0fd46291df192b87072eaa7de686d019fc3e1593ef8c204217c8e816763
|
7
|
+
data.tar.gz: fbc36a8ca43397193d01efa22a7ca0993e8b03449cdec5e89e1d33e284c309c8be8048a87fbf32c80766d6eff5309d4458884da2af5ab3c6c0d78bb925745d86
|
data/lib/flashgrid/version.rb
CHANGED
@@ -8,13 +8,15 @@
|
|
8
8
|
/* #Header
|
9
9
|
================================================== */
|
10
10
|
.header {
|
11
|
-
background: rgba(
|
11
|
+
background: rgba(255,255,255,1);
|
12
|
+
border-bottom: 1px solid rgba(225,232,237,1);
|
13
|
+
box-sizing: border-box;
|
12
14
|
height: 86px;
|
13
15
|
margin-bottom: 40px;
|
14
16
|
width: 100%;
|
15
17
|
}
|
16
18
|
.header-brand a {
|
17
|
-
color: rgba(
|
19
|
+
color: rgba(15,135,226,1);
|
18
20
|
float: left;
|
19
21
|
font-size: 44px;
|
20
22
|
margin-top: 21px;
|
@@ -25,16 +27,16 @@
|
|
25
27
|
}
|
26
28
|
.header-search input {
|
27
29
|
background: transparent;
|
28
|
-
border-color: rgba(
|
29
|
-
color: rgba(
|
30
|
+
border-color: rgba(215,222,227,1);
|
31
|
+
color: rgba(43,50,53,1);
|
30
32
|
font-weight: 200;
|
31
33
|
margin: 0;
|
32
34
|
width: 280px;
|
33
35
|
}
|
34
|
-
.header-search input:focus { border-color: rgba(
|
35
|
-
.header-search input:-moz-placeholder { color: rgba(
|
36
|
-
.header-search input:-ms-input-placeholder { color: rgba(
|
37
|
-
.header-search input::-webkit-input-placeholder { color: rgba(
|
36
|
+
.header-search input:focus { border-color: rgba(195,202,207,1); }
|
37
|
+
.header-search input:-moz-placeholder { color: rgba(136,153,166,1); }
|
38
|
+
.header-search input:-ms-input-placeholder { color: rgba(136,153,166,1); }
|
39
|
+
.header-search input::-webkit-input-placeholder { color: rgba(136,153,166,1); }
|
38
40
|
.header-nav {
|
39
41
|
float: right;
|
40
42
|
list-style-type: none;
|
@@ -42,7 +44,7 @@
|
|
42
44
|
padding: 0;
|
43
45
|
}
|
44
46
|
.header-nav > li {
|
45
|
-
color: rgba(
|
47
|
+
color: rgba(102,117,127,1);
|
46
48
|
display: inline-block;
|
47
49
|
font-size: 13px;
|
48
50
|
font-weight: 500;
|
@@ -52,23 +54,23 @@
|
|
52
54
|
.header-nav > li > a {
|
53
55
|
border: 1px solid transparent;
|
54
56
|
border-radius: 2px;
|
55
|
-
color: rgba(
|
57
|
+
color: rgba(102,117,127,1);
|
56
58
|
letter-spacing: 1px;
|
57
59
|
padding: 14px 0 13px 0;
|
58
60
|
text-transform: uppercase;
|
59
61
|
}
|
60
62
|
.header-nav > li.bordered > a {
|
61
|
-
border-color: rgba(
|
63
|
+
border-color: rgba(215,222,227,1);
|
62
64
|
padding: 14px 20px 13px 20px;
|
63
65
|
}
|
64
|
-
.header-nav > li.bordered > a:hover { border-color: rgba(
|
66
|
+
.header-nav > li.bordered > a:hover { border-color: rgba(195,202,207,1); }
|
65
67
|
.header-user {
|
66
68
|
float: right;
|
67
69
|
font-size: 13px;
|
68
70
|
margin: 22px 0 0 15px;
|
69
71
|
}
|
70
72
|
.header-user a {
|
71
|
-
color: rgba(
|
73
|
+
color: rgba(102,117,127,1);
|
72
74
|
text-decoration: none;
|
73
75
|
}
|
74
76
|
.header-user img,
|
@@ -88,7 +90,7 @@
|
|
88
90
|
}
|
89
91
|
.header-user .dropdown-menu { margin-right: 10px; }
|
90
92
|
.header-toggle a {
|
91
|
-
color: rgba(
|
93
|
+
color: rgba(102,117,127,1);
|
92
94
|
float: right;
|
93
95
|
font-size: 40px;
|
94
96
|
padding: 4px 0px 3px 14px;
|
@@ -105,7 +107,10 @@
|
|
105
107
|
|
106
108
|
/* #Header Alternate
|
107
109
|
================================================== */
|
108
|
-
.header-alt
|
110
|
+
.header-alt {
|
111
|
+
background: transparent;
|
112
|
+
border-color: transparent;
|
113
|
+
}
|
109
114
|
.header-alt .header-brand a { color: rgba(176,193,206,1); }
|
110
115
|
.header-alt .header-brand a:hover { color: rgba(136,153,166,1); }
|
111
116
|
.header-alt .header-nav > li.bordered > a {
|
@@ -24,11 +24,10 @@ table {
|
|
24
24
|
}
|
25
25
|
.table th,
|
26
26
|
.table tfoot td {
|
27
|
-
background: rgba(
|
28
|
-
color: rgba(71,74,84,1);
|
27
|
+
background: rgba(255,255,255,1);
|
29
28
|
font-size: 15px;
|
30
29
|
font-weight: bold;
|
31
|
-
padding: 7px 10px
|
30
|
+
padding: 7px 10px 7px 10px;
|
32
31
|
}
|
33
32
|
.table th a { color: rgba(71,74,84,1); }
|
34
33
|
.table th a:hover { text-decoration: underline; }
|
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:
|
4
|
+
version: 4.0.0
|
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-12-
|
11
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|