leather 0.2.20 → 0.2.21

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: 319d8fbefca30bc3327d40a296676d1e056365ba
4
- data.tar.gz: 2a6bd1ebcc2eb37d5183ebae16d3c982388fd2c4
3
+ metadata.gz: d0578cfbf6d87d6b0e7c490008341639f68fef51
4
+ data.tar.gz: c04b800e15fa27c48b3e1951d2ea3f1507eee156
5
5
  SHA512:
6
- metadata.gz: 66b2cd7c0c5a7b3b65d674006cfa9e509f492f8b323ffbb6e5703634acd590df08153dc3b77ab6e6e072496722daa5763ee39c9e1bd024da202caa67f63ac2f1
7
- data.tar.gz: dc56347694347f705bbf0c17076d324ffde584b38533c63cc9902591faec9e288afe20f37ccf18b68fd8c69a8c069372c1833458b2232593e9dc00db9ebb17ec
6
+ metadata.gz: 768ef9b7788ced8b459aea28862783c84c59e375dbf1ff77384278fa0dc619fce037e7657a3e1d0ac3dfa1d82eda0a252d518f6119839e5ac1e1fe3b145db94d
7
+ data.tar.gz: 3931faabd3f368b590a49f485b3d3a81ff84fdc12e0ed55b6d329ebe3f6c93b7bc90ad9ffc4b015cf4fb9f78982cc432f134dbc244e7f688cceefb7eecace392
@@ -0,0 +1,3 @@
1
+ @import "leather/variables.css.scss";
2
+ @import "leather/devise";
3
+ @import "leather/off_canvas";
@@ -1,8 +1,3 @@
1
- $white: #FFFFFF;
2
- $devise-bg-gradient-start: #355069;
3
- $devise-bg-gradient-end: #5E7A9B;
4
- $devise-box-border-color: #6ED5E4;
5
-
6
1
  html, body {
7
2
  height: 100%;
8
3
  }
@@ -1,6 +1,6 @@
1
- $off-canvas-width: 300px;
2
- $off-canvas-bg-color: #f1f1f1;
3
- $off-canvas-color: #333;
1
+ html, body {
2
+ overflow-x: hidden;
3
+ }
4
4
 
5
5
  .off-canvas {
6
6
  position: fixed;
@@ -17,15 +17,11 @@ $off-canvas-color: #333;
17
17
  left: -$off-canvas-width;
18
18
  }
19
19
  }
20
-
21
- html, body {
22
- overflow-x: hidden;
23
- }
24
20
 
25
21
  .off-canvas-show-right {
26
22
  position: relative;
27
23
  right: $off-canvas-width;
28
- overflow-x: hidden;
24
+ overflow: hidden;
29
25
  .off-canvas-right {
30
26
  right: 0;
31
27
  }
@@ -34,7 +30,7 @@ html, body {
34
30
  .off-canvas-show-left {
35
31
  position: relative;
36
32
  left: $off-canvas-width;
37
- overflow-x: hidden;
33
+ overflow: hidden;
38
34
  .off-canvas-left {
39
35
  left: 0;
40
36
  }
@@ -0,0 +1,9 @@
1
+ $white: #FFFFFF;
2
+
3
+ $devise-bg-gradient-start: #355069;
4
+ $devise-bg-gradient-end: #5E7A9B;
5
+ $devise-box-border-color: #6ED5E4;
6
+
7
+ $off-canvas-width: 300px;
8
+ $off-canvas-bg-color: #f1f1f1;
9
+ $off-canvas-color: #333;
@@ -12,9 +12,6 @@ module Leather
12
12
 
13
13
  def copy_ui_kit_styles
14
14
  copy_file("bootstrap_variables.css.scss", Rails.root.join("app", "assets", "stylesheets", "bootstrap_variables.css.scss"))
15
- copy_file("_devise.css.scss", Rails.root.join("app", "assets", "stylesheets", "_devise.css.scss"))
16
- copy_file("_off_canvas.css.scss", Rails.root.join("app", "assets", "stylesheets", "_off_canvas.css.scss"))
17
- copy_file("off_canvas.js.coffee", Rails.root.join("app", "assets", "javascripts", "off_canvas.js.coffee"))
18
15
  end
19
16
 
20
17
  def copy_high_voltage_config
@@ -1,3 +1,3 @@
1
1
  module Leather
2
- VERSION = "0.2.20"
2
+ VERSION = "0.2.21"
3
3
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leather
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.20
4
+ version: 0.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Van Der Beek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-12 00:00:00.000000000 Z
11
+ date: 2014-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rails
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -145,6 +159,11 @@ extra_rdoc_files: []
145
159
  files:
146
160
  - MIT-LICENSE
147
161
  - Rakefile
162
+ - app/assets/javascripts/leather.js.coffee
163
+ - app/assets/stylesheets/leather.css.scss
164
+ - app/assets/stylesheets/leather/_devise.css.scss
165
+ - app/assets/stylesheets/leather/_off_canvas.css.scss
166
+ - app/assets/stylesheets/leather/_variables.css.scss
148
167
  - app/helpers/navigation_helper.rb
149
168
  - app/views/leather/_dropdown_nav_item.html.haml
150
169
  - app/views/leather/_modal.html.haml
@@ -161,11 +180,8 @@ files:
161
180
  - lib/leather/railtie.rb
162
181
  - lib/leather/version.rb
163
182
  - lib/tasks/leather_tasks.rake
164
- - templates/_devise.css.scss
165
- - templates/_off_canvas.css.scss
166
183
  - templates/bootstrap_variables.css.scss
167
184
  - templates/high_voltage.rb
168
- - templates/off_canvas.js.coffee
169
185
  - templates/views/devise/passwords/edit.html.erb
170
186
  - templates/views/devise/passwords/new.html.erb
171
187
  - templates/views/devise/registrations/new.html.erb