flashgrid 1.0.10 → 1.0.11

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: e3c9c20514f73115cb1c118c8e4928f53ac68e00
4
- data.tar.gz: 3404d59637cddb66563105ba0c2a2c1b67cb1c5d
3
+ metadata.gz: c5539727f235343b91aa0e983350f3583dda15a0
4
+ data.tar.gz: 94f94e2e4e1e5c7b39ca1e0eb5ec4d33524ef1a0
5
5
  SHA512:
6
- metadata.gz: e5f529e08b7bffc419edd7588306223970015313b9f99b7a079e2fbe01773d96fe739f63600f6a9128d8e0859947b16c06dceda35b704b49ff791b663714550c
7
- data.tar.gz: 83121fcae5e9b9f9d8e46a033a843decb460c9cc5ee1e7f8b986393ae81ba7509e67913a9809528c25376945fde9dcae61db09965db78543121c63afa92859b4
6
+ metadata.gz: fe12673525d12467e07c7fdfe3ff897e21c38ee0ce2f06ec8b03a6df55fcc0a382186a95000a3467dfff404ecbea935f520f3b4b9b08544628ab731cd4b3f61c
7
+ data.tar.gz: ee494809b937c0116637b81355ded941540dae9daa8800b4f029211ec25f8eacf1816892e019309046d9eb01060ad26f39ddc8fda3a30016d57db4b8840906e0
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "1.0.10"
2
+ VERSION = "1.0.11"
3
3
  end
@@ -167,6 +167,11 @@ select[disabled],
167
167
  font-weight: 200;
168
168
  }
169
169
  .uneditable-input { font-weight: normal; }
170
+ input.form-input-initial-width,
171
+ select.form-input-initial-width {
172
+ display: inline-block;
173
+ width: initial;
174
+ }
170
175
  .form-header {
171
176
  border-bottom: 1px solid rgba(236,238,241,1);
172
177
  margin-bottom: 30px;
@@ -208,7 +213,7 @@ select[disabled],
208
213
  }
209
214
  .form-error-messages li:first-child { padding-top: 10px; }
210
215
  .form-error-messages li:last-child { padding-bottom: 10px; }
211
- .form-img { margin-top: -5px; }
216
+ .form-textarea-small { height: 80px; }
212
217
  .form-textarea-large { height: 200px; }
213
218
  .form-input-inline {
214
219
  display: inline-block;
@@ -29,14 +29,14 @@
29
29
  margin-left: -280px;
30
30
  outline: none;
31
31
  position: fixed;
32
- top: 10%;
32
+ top: 0;
33
33
  width: 560px;
34
34
  z-index: 1050;
35
35
  }
36
36
  .modal.fade {
37
37
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
38
38
  transition: opacity 0.3s linear, top 0.3s ease-out;
39
- top: -35%;
39
+ top: -100%;
40
40
  }
41
41
  .modal.fade.in { top: 15%; }
42
42
  .modal-header {
@@ -55,8 +55,8 @@
55
55
  .modal-body {
56
56
  border-top: 1px solid rgba(217,222,225,1);
57
57
  border-bottom: 1px solid rgba(227,232,235,1);
58
- max-height: 400px;
59
- overflow-y: auto;
58
+ max-height: 300px;
59
+ overflow-y: scroll;
60
60
  padding: 15px 18px;
61
61
  position: relative;
62
62
  }
@@ -82,6 +82,8 @@ input[type="submit"].modal-footer-btn {
82
82
  background: transparent;
83
83
  border-bottom-left-radius: 5px;
84
84
  border-bottom-right-radius: 5px;
85
+ -moz-box-sizing: border-box;
86
+ box-sizing: border-box;
85
87
  color: rgba(0,153,255,1);
86
88
  cursor: pointer;
87
89
  float: left;
@@ -104,7 +106,7 @@ input[type="submit"].modal-footer-btn[disabled] { color: rgba(158,171,179,1); }
104
106
  input[type="submit"].modal-footer-btn-left {
105
107
  border-right: 1px solid rgba(217,222,225,1);
106
108
  border-bottom-right-radius: 0;
107
- width: 279px;
109
+ width: 280px;
108
110
  }
109
111
  .modal-footer-btn-right,
110
112
  input[type="submit"].modal-footer-btn-right {
@@ -119,14 +121,19 @@ input[type="submit"].modal-footer-btn-right {
119
121
  margin-left: -150px;
120
122
  width: 300px;
121
123
  }
122
- .modal-footer-btn-left { width: 149px; }
123
- .modal-footer-btn-right { width: 150px; }
124
+ .modal-body { max-height: 180px; }
125
+ .modal-footer-btn-left,
126
+ input[type="submit"].modal-footer-btn-left { width: 150px; }
127
+ .modal-footer-btn-right,
128
+ input[type="submit"].modal-footer-btn-right { width: 150px; }
124
129
  }
125
130
  @media only screen and (min-width: 480px) and (max-width: 767px) {
126
131
  .modal {
127
132
  margin-left: -210px;
128
133
  width: 420px;
129
134
  }
130
- .modal-footer-btn-left { width: 209px; }
131
- .modal-footer-btn-right { width: 210px; }
135
+ .modal-footer-btn-left,
136
+ input[type="submit"].modal-footer-btn-left { width: 210px; }
137
+ .modal-footer-btn-right,
138
+ input[type="submit"].modal-footer-btn-right { width: 210px; }
132
139
  }
@@ -1,14 +1,16 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
- #Timepicker
4
- #Media Queries */
3
+ #Timepicker */
5
4
 
6
5
  /* #Timepicker
7
6
  ================================================== */
8
7
  .timepicker { position: relative; }
9
8
  .timepicker .add-on i { display: inline-block; }
10
9
  .timepicker-widget.dropdown-menu { padding: 5px 1px 5px 0; }
11
- .timepicker-widget.dropdown-menu.open { display: inline-block; }
10
+ .timepicker-widget.dropdown-menu.open {
11
+ display: inline-block;
12
+ z-index: 1060;
13
+ }
12
14
  .timepicker-widget.dropdown-menu:before {
13
15
  border-bottom: 7px solid rgba(246,247,249,1);
14
16
  border-right: 7px solid transparent;
@@ -70,12 +72,4 @@
70
72
  margin: 0;
71
73
  text-align: center;
72
74
  width: 25px;
73
- }
74
- .timepicker-widget .modal-content { padding: 4px; }
75
-
76
- /* #Media Queries
77
- ================================================== */
78
- @media only screen and (max-width: 767px) {
79
- .timepicker { width: 100%; }
80
- .timepicker .dropdown-menu { width: 100%; }
81
75
  }
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.10
4
+ version: 1.0.11
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-02-07 00:00:00.000000000 Z
11
+ date: 2014-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  version: '0'
144
144
  requirements: []
145
145
  rubyforge_project:
146
- rubygems_version: 2.2.1
146
+ rubygems_version: 2.2.2
147
147
  signing_key:
148
148
  specification_version: 4
149
149
  summary: Flashgrid Responsive Web Framework