flashgrid 1.0.8 → 1.0.9

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: 2375d4846a8656998a88493fd036c2d513182591
4
- data.tar.gz: ccbbf85d7807f92ea3ecffe509d7cc0f9e396ce7
3
+ metadata.gz: 85eb184da0536fee3d6acb6308e1bbea9de954d1
4
+ data.tar.gz: 79ea7fff274d4cadd11ded1bc556c5f1eb093fef
5
5
  SHA512:
6
- metadata.gz: 9750292260369e145c7afa733ffb658a2de25a2ab160fea0eb5e215b4738b54ea7303ee82ec14164b8ff013a82b0f95aaff4b4d57d3f174bdd9677507bd35776
7
- data.tar.gz: 9f7a9fa3ac2422598348f7a0a8d1f9a5464f3ee5a9d79df701bf52c4e8a257b68c7a22059a74b941a656b9836becc47a8dd9cf5799569da61c521a804ee20bba
6
+ metadata.gz: 279eb25bd90369401b30d2bfd585a818da4635fd5df53b73a8a1c11c4ad50e8e90cfba9c5ff1e94689e3f1c81262098831e24eba414417574dc3b5242bf7d6b8
7
+ data.tar.gz: 954e8b92820e28668d2f5202134bb5a93e45220c157372ec15a0b98cbecc92866391b6d418b4f0ba792893d7aa1aa815dfbee8ec471f41565f1c7cc6538cd8da
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "1.0.8"
2
+ VERSION = "1.0.9"
3
3
  end
@@ -237,6 +237,10 @@ input.btn-block {
237
237
  vertical-align: middle;
238
238
  }
239
239
  .btn-group + .btn-group { margin-left: 5px; }
240
+ .btn-group.pull-right + .btn-group.pull-right {
241
+ margin-left: 0;
242
+ margin-right: 10px;
243
+ }
240
244
  .btn-group > .btn {
241
245
  border-right: 1px solid rgba(196,198,201,1);
242
246
  border-radius: 0;
@@ -27,7 +27,6 @@
27
27
  .dropdown-menu.pull-right {
28
28
  left: auto;
29
29
  right: 0;
30
- margin-right: 10px;
31
30
  }
32
31
  .dropdown-menu .divider {
33
32
  background-color: rgba(0,0,0,0.1);
@@ -74,7 +74,8 @@
74
74
  line-height: 0;
75
75
  }
76
76
  .modal-footer:after { clear: both; }
77
- .modal-footer-btn {
77
+ .modal-footer-btn,
78
+ input[type="submit"].modal-footer-btn {
78
79
  -webkit-appearance: none;
79
80
  -moz-appearance: none;
80
81
  border: none;
@@ -96,13 +97,16 @@
96
97
  vertical-align: middle;
97
98
  width: 100%;
98
99
  }
99
- .modal-footer-btn[disabled] { color: rgba(158,171,179,1); }
100
- .modal-footer-btn-left {
100
+ .modal-footer-btn[disabled],
101
+ input[type="submit"].modal-footer-btn[disabled] { color: rgba(158,171,179,1); }
102
+ .modal-footer-btn-left,
103
+ input[type="submit"].modal-footer-btn-left {
101
104
  border-right: 1px solid rgba(217,222,225,1);
102
105
  border-bottom-right-radius: 0;
103
106
  width: 279px;
104
107
  }
105
- .modal-footer-btn-right {
108
+ .modal-footer-btn-right,
109
+ input[type="submit"].modal-footer-btn-right {
106
110
  border-bottom-left-radius: 0;
107
111
  width: 280px;
108
112
  }
@@ -10,10 +10,13 @@
10
10
  border: 1px solid rgba(217,222,225,1);
11
11
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
12
12
  display: none;
13
+ font-style: normal;
13
14
  left: 0;
14
15
  max-width: 276px;
15
16
  position: absolute;
16
17
  text-align: left;
18
+ text-decoration: none;
19
+ text-transform: none;
17
20
  top: 0;
18
21
  white-space: normal;
19
22
  z-index: 1010;
@@ -27,6 +30,7 @@
27
30
  border-bottom: 1px solid rgba(217,222,225,1);
28
31
  color: rgba(71,74,84,1);
29
32
  font-size: 14px;
33
+ font-weight: bold;
30
34
  line-height: 18px;
31
35
  margin: 0;
32
36
  padding: 10px 15px 8px 15px;
@@ -35,7 +39,9 @@
35
39
  .popover-content {
36
40
  background-color: rgba(255,255,255,1);
37
41
  color: rgba(43,50,53,1);
42
+ font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
38
43
  font-size: 14px;
44
+ font-weight: normal;
39
45
  line-height: 20px;
40
46
  padding: 10px 15px;
41
47
  }
@@ -5,13 +5,18 @@
5
5
  /* #Tooltip
6
6
  ================================================== */
7
7
  .tooltip {
8
+ color: rgba(255,255,255,1);
8
9
  display: block;
10
+ font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
9
11
  font-size: 11px;
12
+ font-style: normal;
10
13
  font-weight: bold;
11
14
  line-height: 17px;
12
15
  opacity: 0;
13
16
  filter: alpha(opacity=0);
14
17
  position: absolute;
18
+ text-decoration: none;
19
+ text-transform: none;
15
20
  visibility: visible;
16
21
  z-index: 1030;
17
22
  }
@@ -40,9 +45,10 @@
40
45
  border-radius: 3px;
41
46
  color: rgba(255,255,255,1);
42
47
  max-width: 200px;
43
- padding: 6px 10px 4px 10px;
48
+ padding: 5px 10px;
44
49
  text-align: center;
45
50
  text-decoration: none;
51
+ text-transform: none;
46
52
  }
47
53
  .tooltip-arrow {
48
54
  border-color: transparent;
@@ -134,9 +134,10 @@ blockquote small { color: rgba(158,171,179,1); }
134
134
 
135
135
  /* #Alignments
136
136
  ================================================== */
137
- .text-left { text-align: left; }
138
- .text-center { text-align: center; }
139
- .text-right { text-align: right; }
137
+ .text-left { text-align: left; }
138
+ .text-center { text-align: center; }
139
+ .text-justify { text-align: justify; }
140
+ .text-right { text-align: right; }
140
141
 
141
142
  /* #Colors
142
143
  ================================================== */
@@ -149,6 +150,7 @@ blockquote small { color: rgba(158,171,179,1); }
149
150
 
150
151
  /* #Scripts
151
152
  ================================================== */
153
+ .text-monospace { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; }
152
154
  .text-sans-serif { font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif; }
153
155
  .text-serif { font-family: 'Times New Roman', Times, serif; }
154
156
 
@@ -165,8 +167,9 @@ blockquote small { color: rgba(158,171,179,1); }
165
167
 
166
168
  /* #Transform
167
169
  ================================================== */
168
- .text-uppercase { text-transform: uppercase; }
169
- .text-lowercase { text-transform: lowercase; }
170
+ .text-capitalize { text-transform: capitalize; }
171
+ .text-lowercase { text-transform: lowercase; }
172
+ .text-uppercase { text-transform: uppercase; }
170
173
 
171
174
  /* #Weights
172
175
  ================================================== */
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.8
4
+ version: 1.0.9
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-27 00:00:00.000000000 Z
11
+ date: 2014-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler