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 +4 -4
- data/{templates/off_canvas.js.coffee → app/assets/javascripts/leather.js.coffee} +0 -0
- data/app/assets/stylesheets/leather.css.scss +3 -0
- data/{templates → app/assets/stylesheets/leather}/_devise.css.scss +0 -5
- data/{templates → app/assets/stylesheets/leather}/_off_canvas.css.scss +5 -9
- data/app/assets/stylesheets/leather/_variables.css.scss +9 -0
- data/lib/generators/leather/install/install_generator.rb +0 -3
- data/lib/leather/version.rb +1 -1
- metadata +21 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0578cfbf6d87d6b0e7c490008341639f68fef51
|
|
4
|
+
data.tar.gz: c04b800e15fa27c48b3e1951d2ea3f1507eee156
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 768ef9b7788ced8b459aea28862783c84c59e375dbf1ff77384278fa0dc619fce037e7657a3e1d0ac3dfa1d82eda0a252d518f6119839e5ac1e1fe3b145db94d
|
|
7
|
+
data.tar.gz: 3931faabd3f368b590a49f485b3d3a81ff84fdc12e0ed55b6d329ebe3f6c93b7bc90ad9ffc4b015cf4fb9f78982cc432f134dbc244e7f688cceefb7eecace392
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
|
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
|
|
33
|
+
overflow: hidden;
|
|
38
34
|
.off-canvas-left {
|
|
39
35
|
left: 0;
|
|
40
36
|
}
|
|
@@ -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
|
data/lib/leather/version.rb
CHANGED
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.
|
|
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-
|
|
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
|