waterfall_bourbon_neat_rails 0.1.9.1 → 0.1.9.2

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: 5f180781c95b10ad19c6c08886eff4dc81eedf8d
4
- data.tar.gz: 10b852ae52ec7cfc833a7bb664ac27e0ea131273
3
+ metadata.gz: d0d93fc94aab1b0e2f75df7b7fd474119763ee11
4
+ data.tar.gz: 9971bdd11726a6e4a5704fba305b1a76b3b19418
5
5
  SHA512:
6
- metadata.gz: ac48bcc27e5885385a739f30db6db71b4fef4964eff11996bcfb8cc005137a68c42f54d28af901aa905a9b3fa852b58b5dd58a034301fa4178f5167369c6a8b1
7
- data.tar.gz: 2bdc928f629c6203f1f0a5c92bd488fdafb7c0010b726179af1d8a73cbb4627b8b3b614f7718530e5b474e95cba767e25d18c9d1c830a5da87aeda48f82ea1b7
6
+ metadata.gz: a258bdd962bcb47acf13b59531234ea12f23b1f3a3b5d84c7c6c5ec0f0b8f75ca0d364ec2ca1a88855f476e985ef4e6cbfd8599f0bf37390c1daae99c708cc59
7
+ data.tar.gz: 6240e98e4bb45c540af1c0e559933131bfd03080b00c815640aa9808400729d6cc36bf82b357b7a28f67fe9cef9e56a77d2722509862ac331a916ce38ae297dd
@@ -71,6 +71,7 @@ input.error{
71
71
 
72
72
  &:hover{
73
73
  box-shadow: 1px 1px 4px 1px #1C1D1F;
74
+ font-size: 1.0em;
74
75
  }
75
76
  }
76
77
 
@@ -189,8 +190,7 @@ input.error{
189
190
  table-layout: auto;
190
191
  color: #295158;
191
192
  overflow: hidden;
192
- tr {
193
- border-color: lighten(#34495E, 10%);
193
+ tr > td:first-child {
194
194
  cursor: pointer;
195
195
  }
196
196
  tr.item.selected{
@@ -200,13 +200,22 @@ input.error{
200
200
  th, td {
201
201
  margin: .5em 1em;
202
202
  @media (min-width: $breakpoint-alpha) {
203
- padding: 1em !important;
203
+ padding: 10px!important;
204
204
  }
205
205
  }
206
206
  thead tr:first-child{
207
207
  background: #2399C7;
208
208
  @include font-attr(18px, whitesmoke, bolder);
209
209
  }
210
+
211
+ thead tr{
212
+ th{
213
+ min-width: 100px;
214
+ }
215
+ th:first-child{
216
+ min-width: 40px;
217
+ }
218
+ }
210
219
  }
211
220
 
212
221
 
@@ -290,4 +299,38 @@ input.error{
290
299
  margin-top: 10px;
291
300
  display: none;
292
301
  }
302
+ }
303
+
304
+ //dialog component
305
+
306
+ .dialog-wrapper{
307
+ position: absolute;
308
+ top: 0;
309
+ left: 0;
310
+ bottom: 0;
311
+ right: 0;
312
+ background: rgba(133, 133, 133, 0.56);
313
+ z-index: 9999;
314
+ display: none;
315
+ }
316
+
317
+ .dialog-content{
318
+ width: 500px;
319
+ display: table;
320
+ border-radius: 5px;
321
+ margin: 100px auto;
322
+ padding: 20px;
323
+ background: rgb(255, 255, 255);
324
+ border: solid 2px #2AB9E6;
325
+ box-shadow: 0px 0px 6px 1px #2AB9E6;
326
+ }
327
+
328
+ .dialog-content-buttons{
329
+ margin-top: 20px;
330
+ }
331
+
332
+ .dialog-button{
333
+ margin: 0 5px 0 5px;
334
+ float: right;
335
+ @include btn(#fff, 100px, 40px, 1.3em, $light_blue, transparent, $light_blue);
293
336
  }
@@ -43,21 +43,23 @@
43
43
  margin: 0 auto;
44
44
  }
45
45
 
46
- @mixin btn($color, $width, $height, $line-height, $font-size, $hover-bck, $hover-color) {
46
+ @mixin btn($color, $width, $height, $font-size, $background, $hover-bck, $hover-color) {
47
47
  @include border-radius();
48
48
  color: $color;
49
49
  width: $width;
50
50
  height: $height;
51
- line-height: $line-height;
51
+ line-height: $height;
52
+ font-weight: bold;
52
53
  text-align: center;
53
54
  padding: 0;
54
55
  cursor: pointer;
55
- background-color: transparent;
56
+ background-color: $background;
56
57
  border: solid 2px $color;
57
58
  font-size: $font-size;
58
59
 
59
60
  &:hover{
60
61
  background-color: $hover-bck;
61
62
  color: $hover-color;
63
+ border: solid 2px $hover-color;
62
64
  }
63
65
  }
@@ -92,6 +92,12 @@ body#main{
92
92
  }
93
93
  }
94
94
  .password-reset{
95
+ .error_container{
96
+ height: 30px;
97
+ line-height: 30px;
98
+ color:$font_error_color;
99
+ }
100
+
95
101
  form{
96
102
  display: block;
97
103
  @include clearfix;
@@ -99,10 +105,8 @@ body#main{
99
105
  padding: 10px;
100
106
  @include clearfix;
101
107
  input, .btn_back{
102
- @include btn(#fff, 120px, 40px, 40px, 1.3em, transparent,white);
103
- border:none;
104
- }
105
- input{
108
+ @include btn(#fff, 120px, 40px, 1.3em, transparent,transparent,$sky_blue);
109
+ border:none!important;
106
110
  float: left;
107
111
  }
108
112
  .btn_back{
@@ -236,7 +240,7 @@ body#main{
236
240
  float: right;
237
241
  }
238
242
  input, .btn_back{
239
- @include btn($light_blue, 120px, 40px, 40px, 1em, $light_blue, white);
243
+ @include btn(#fff, 120px, 40px, 1em, $light_blue, transparent, $light_blue);
240
244
  }
241
245
 
242
246
  }
@@ -268,6 +272,9 @@ body#landing-page{
268
272
  }
269
273
  }
270
274
  .content{
275
+ #table_structure{
276
+ padding: 20px 0;
277
+ }
271
278
  .container{
272
279
  min-height: 400px;
273
280
  margin-top:10px;
@@ -297,7 +304,7 @@ body#landing-page{
297
304
  color: $light_blue;
298
305
 
299
306
  input, .btn_back {
300
- @include btn($light_blue, 120px, 40px, 40px, 1em, $light_blue, white);
307
+ @include btn(#fff, 120px, 40px,1em, $light_blue, transparent, $light_blue);
301
308
  }
302
309
  input{
303
310
  float: left;
@@ -418,10 +425,6 @@ body#landing-page{
418
425
  }
419
426
  }
420
427
  }
421
- .container2{
422
- width: 80%;
423
- margin:10px auto;
424
- }
425
428
  }
426
429
  .footer{
427
430
  footer{
@@ -1,3 +1,3 @@
1
1
  module WaterfallBourbonNeatRails
2
- VERSION = "0.1.9.1".freeze
2
+ VERSION = "0.1.9.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterfall_bourbon_neat_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.1
4
+ version: 0.1.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Waterfall Software Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-25 00:00:00.000000000 Z
11
+ date: 2014-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails