jetpack-rails 0.6.1 → 0.6.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.
data/CHANGELOG CHANGED
@@ -1,4 +1,7 @@
1
1
  Changelog:
2
+ 0.6.2:
3
+ - Adjusted resetize style of disabled elements.
4
+ - Added definition of disabled elements to forms stylesheet and matched to link button styles.
2
5
  0.6.1:
3
6
  - Added image max-width to grid containers so images will automatically downscale as needed.
4
7
 
@@ -1,3 +1,3 @@
1
1
  module Jetpack
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.2"
3
3
  end
@@ -6,6 +6,18 @@
6
6
  // Standard Input Mixin for one-off useage
7
7
  @mixin standard_input { @include border-radius(3px); border: 1px solid $light2; box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); color: $dark1; }
8
8
 
9
+ // Adjustment to disabled elements to match link buttons
10
+ button[disabled],
11
+ input[disabled],
12
+ select[disabled],
13
+ select[disabled] option,
14
+ select[disabled] optgroup,
15
+ textarea[disabled] {
16
+ color: $light2;
17
+ }
18
+
19
+
20
+ // Common Form Styles
9
21
  form { margin-bottom: $baseline; @include font; @include clearfix;
10
22
  fieldset {
11
23
  margin: 0 0 $baseline; padding: 0; border: 0; position: relative; clear: both;
@@ -459,7 +459,7 @@ input[type="text"][disabled],
459
459
  input[type="time"][disabled],
460
460
  input[type="url"][disabled],
461
461
  input[type="week"][disabled] {
462
- background-color: #eee;
462
+ background-color: #CCC;
463
463
  }
464
464
 
465
465
  button[disabled],
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jetpack-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-01 00:00:00.000000000 Z
12
+ date: 2012-11-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass-rails