flashgrid 1.0.1 → 1.0.2
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/.gitignore +1 -0
- data/lib/flashgrid/version.rb +1 -1
- data/vendor/assets/stylesheets/code.css.scss +1 -0
- data/vendor/assets/stylesheets/form.css.scss +12 -0
- data/vendor/assets/stylesheets/list.css.scss +6 -9
- data/vendor/assets/stylesheets/typography.css.scss +28 -6
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcf83bb4b1ba7771014366880d40944b0aa5dd5d
|
4
|
+
data.tar.gz: ae122ff4a1087bd710bb3a20df0aafee86b2fbfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f227208429d0746a1d3fc16064029dc12adbfd5ed7fa503ae43645a0379deae4268f665b447830245e62922c4e4b220be92a8dcb0c09803e7610068eb2206ca
|
7
|
+
data.tar.gz: 336d14e246916eff0e1cae205b467c1fc6694574982757eb25b147e54dd2edc00941d11787fb933a0189b96f76ad60229051f18aa7089c9fd79ac6adccff88be
|
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
/.gem
|
data/lib/flashgrid/version.rb
CHANGED
@@ -85,6 +85,7 @@ pre {
|
|
85
85
|
.kt { color: rgba(122,179,23,1); } /* Keyword.Type */
|
86
86
|
.m { color: rgba(122,179,23,1); } /* Literal.Number */
|
87
87
|
.s { color: rgba(58,144,216,1); } /* Literal.String */
|
88
|
+
.sa { color: rgba(122,179,23,1); } /* Literal.String.Alternate */
|
88
89
|
.na { color: rgba(58,144,216,1); } /* Name.Attribute */
|
89
90
|
.nb { color: rgba(122,179,23,1); } /* Name.Builtin */
|
90
91
|
.nc {
|
@@ -161,6 +161,18 @@ select:focus:invalid:focus { border-color: rgba(254,79,50,1); }
|
|
161
161
|
.form-header h4,
|
162
162
|
.form-header h5,
|
163
163
|
.form-header h6 { margin-bottom: 0; }
|
164
|
+
.form-cap {
|
165
|
+
background-color: rgba(58,144,216,1);
|
166
|
+
border-top-left-radius: 3px;
|
167
|
+
border-top-right-radius: 3px;
|
168
|
+
color: rgba(255,255,255,1);
|
169
|
+
display: block;
|
170
|
+
font-size: 14px;
|
171
|
+
font-weight: bold;
|
172
|
+
line-height: 20px;
|
173
|
+
margin-bottom: 15px;
|
174
|
+
padding: 10px 15px;
|
175
|
+
}
|
164
176
|
.form-error-messages { margin-bottom: 40px; }
|
165
177
|
.form-error-messages h4 {
|
166
178
|
background-color: rgba(236,238,241,1);
|
@@ -10,22 +10,19 @@ ul, ol {
|
|
10
10
|
}
|
11
11
|
ul { padding-left: 17px; }
|
12
12
|
ol { padding-left: 23px; }
|
13
|
-
|
14
|
-
ol.list-small {
|
13
|
+
.list-small {
|
15
14
|
font-size: 14px;
|
16
15
|
line-height: 22px;
|
17
16
|
}
|
18
|
-
|
17
|
+
.list-unstyled {
|
19
18
|
list-style-type: none;
|
20
19
|
padding: 0;
|
21
20
|
}
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
margin-right: 10px;
|
21
|
+
.list-inline li {
|
22
|
+
display: inline-block;
|
23
|
+
margin-right: 10px;
|
26
24
|
}
|
27
|
-
|
28
|
-
ol.list-inline li:last-child { margin-right: 0; }
|
25
|
+
.list-inline li:last-child { margin-right: 0; }
|
29
26
|
dl dt,
|
30
27
|
dl dd {
|
31
28
|
font-size: 16px;
|
@@ -62,12 +62,34 @@ h1, h2, h3, h4, h5, h6 {
|
|
62
62
|
font-weight: bold;
|
63
63
|
}
|
64
64
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
|
65
|
-
h1 {
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
65
|
+
h1 {
|
66
|
+
font-size: 46px;
|
67
|
+
line-height: 50px;
|
68
|
+
margin-bottom: 15px;
|
69
|
+
}
|
70
|
+
h2 {
|
71
|
+
font-size: 35px;
|
72
|
+
line-height: 40px;
|
73
|
+
margin-bottom: 10px;
|
74
|
+
}
|
75
|
+
h3 {
|
76
|
+
font-size: 28px;
|
77
|
+
line-height: 34px;
|
78
|
+
margin-bottom: 8px;
|
79
|
+
}
|
80
|
+
h4 {
|
81
|
+
font-size: 21px;
|
82
|
+
line-height: 30px;
|
83
|
+
margin-bottom: 4px;
|
84
|
+
}
|
85
|
+
h5 {
|
86
|
+
font-size: 17px;
|
87
|
+
line-height: 24px;
|
88
|
+
}
|
89
|
+
h6 {
|
90
|
+
font-size: 14px;
|
91
|
+
line-height: 21px;
|
92
|
+
}
|
71
93
|
p {
|
72
94
|
font-size: 16px;
|
73
95
|
line-height: 25px;
|
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.2
|
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-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -46,6 +46,7 @@ executables: []
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- ".gitignore"
|
49
50
|
- Gemfile
|
50
51
|
- Gemfile.lock
|
51
52
|
- LICENSE.txt
|