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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 445ea72d1c776947421ae4a6f25b2a68e9d37c63
4
- data.tar.gz: 6cedbb9f32715ff1212eb67cb23ae353dc24676d
3
+ metadata.gz: dcf83bb4b1ba7771014366880d40944b0aa5dd5d
4
+ data.tar.gz: ae122ff4a1087bd710bb3a20df0aafee86b2fbfc
5
5
  SHA512:
6
- metadata.gz: 905156e1550095cc23afe29d69adf92ff4738126d4a72b417bd5937b1d2af3baf76644ad02646302cd5d617487f6e09eef1703677da2f0d08a5af36b242d8a02
7
- data.tar.gz: bb1d07e9b6c2e99dfde3c03c58581da9a73c57455544196afa486f6db4967a3fa095011e12d90eddde715d3cc988d934d949ab6b7dc30fa3717eeac2ea7e35be
6
+ metadata.gz: 9f227208429d0746a1d3fc16064029dc12adbfd5ed7fa503ae43645a0379deae4268f665b447830245e62922c4e4b220be92a8dcb0c09803e7610068eb2206ca
7
+ data.tar.gz: 336d14e246916eff0e1cae205b467c1fc6694574982757eb25b147e54dd2edc00941d11787fb933a0189b96f76ad60229051f18aa7089c9fd79ac6adccff88be
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ /.gem
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -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
- ul.list-small,
14
- ol.list-small {
13
+ .list-small {
15
14
  font-size: 14px;
16
15
  line-height: 22px;
17
16
  }
18
- ul.list-unstyled {
17
+ .list-unstyled {
19
18
  list-style-type: none;
20
19
  padding: 0;
21
20
  }
22
- ul.list-inline li,
23
- ol.list-inline li {
24
- display: inline-block;
25
- margin-right: 10px;
21
+ .list-inline li {
22
+ display: inline-block;
23
+ margin-right: 10px;
26
24
  }
27
- ul.list-inline li:last-child,
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 { font-size: 46px; line-height: 50px; margin-bottom: 15px; }
66
- h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
67
- h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
68
- h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
69
- h5 { font-size: 17px; line-height: 24px; }
70
- h6 { font-size: 14px; line-height: 21px; }
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.1
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-13 00:00:00.000000000 Z
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