leather 0.2.7 → 0.2.8
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.
|
@@ -12,6 +12,7 @@ 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"))
|
|
15
16
|
end
|
|
16
17
|
|
|
17
18
|
def copy_high_voltage_config
|
data/lib/leather/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -146,7 +146,6 @@ executables: []
|
|
|
146
146
|
extensions: []
|
|
147
147
|
extra_rdoc_files: []
|
|
148
148
|
files:
|
|
149
|
-
- app/assets/stylesheets/devise.css.scss
|
|
150
149
|
- app/helpers/navigation_helper.rb
|
|
151
150
|
- app/views/leather/_dropdown_nav_item.html.haml
|
|
152
151
|
- app/views/leather/_modal.html.haml
|
|
@@ -178,7 +177,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
178
177
|
version: '0'
|
|
179
178
|
segments:
|
|
180
179
|
- 0
|
|
181
|
-
hash:
|
|
180
|
+
hash: -290395140017681461
|
|
182
181
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
182
|
none: false
|
|
184
183
|
requirements:
|
|
@@ -187,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
186
|
version: '0'
|
|
188
187
|
segments:
|
|
189
188
|
- 0
|
|
190
|
-
hash:
|
|
189
|
+
hash: -290395140017681461
|
|
191
190
|
requirements: []
|
|
192
191
|
rubyforge_project:
|
|
193
192
|
rubygems_version: 1.8.24
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
// Remove the rounded corners by uncommenting this line:
|
|
2
|
-
// $border-radius-base: 0px;
|
|
3
|
-
@import 'bootstrap';
|
|
4
|
-
|
|
5
|
-
$white: #FFFFFF;
|
|
6
|
-
$devise-bg-gradient-start: #355069;
|
|
7
|
-
$devise-bg-gradient-end: #5E7A9B;
|
|
8
|
-
$devise-box-border-color: #6ED5E4;
|
|
9
|
-
|
|
10
|
-
html, body {
|
|
11
|
-
height: 100%;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.text-white { color: $white; }
|
|
15
|
-
|
|
16
|
-
.devise_sessions, .devise_registrations, .devise_passwords {
|
|
17
|
-
&.new, &.create {
|
|
18
|
-
@extend .devise;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.devise_passwords.edit {
|
|
23
|
-
@extend .devise;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// For compatibility with Flutie body_class
|
|
27
|
-
.devise-sessions-new, .devise-sessions-create, .devise-registrations-new, .devise-registrations-create, .devise-passwords-new, .devise-passwords-create, .devise-passwords-edit {
|
|
28
|
-
@extend .devise;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.devise {
|
|
32
|
-
@include gradient-vertical($devise-bg-gradient-start, $devise-bg-gradient-end);
|
|
33
|
-
background-attachment: fixed !important;
|
|
34
|
-
.devise-welcome {
|
|
35
|
-
@extend .text-center;
|
|
36
|
-
@extend .text-white;
|
|
37
|
-
text-shadow: 1px 1px 3px $gray-dark;
|
|
38
|
-
padding: 50px 0 20px 0;
|
|
39
|
-
h2 {
|
|
40
|
-
margin-bottom: 50px;
|
|
41
|
-
a {
|
|
42
|
-
@extend .text-white;
|
|
43
|
-
text-decoration: none;
|
|
44
|
-
@include transition(color 0.25s linear);
|
|
45
|
-
&:hover {
|
|
46
|
-
color: darken($white, 20%);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
h2, h3 {
|
|
51
|
-
font-weight: lighter;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
form {
|
|
55
|
-
@include border-top-radius($border-radius-base);
|
|
56
|
-
@include border-bottom-radius($border-radius-base);
|
|
57
|
-
border: 1px solid $white;
|
|
58
|
-
background: $white;
|
|
59
|
-
box-shadow: 1px 1px 3px $gray-dark;
|
|
60
|
-
padding: 40px 40px 20px;
|
|
61
|
-
border-top: 6px solid $devise-box-border-color;
|
|
62
|
-
#error_explanation {
|
|
63
|
-
@extend .alert;
|
|
64
|
-
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
|
|
65
|
-
h2 {
|
|
66
|
-
margin-top: 0;
|
|
67
|
-
font-size: 15px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
.actions {
|
|
71
|
-
@extend .text-center;
|
|
72
|
-
padding-top: 30px;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
.devise-links {
|
|
76
|
-
@extend .text-center;
|
|
77
|
-
@extend .text-white;
|
|
78
|
-
margin-top: 20px;
|
|
79
|
-
margin-bottom: 70px;
|
|
80
|
-
a {
|
|
81
|
-
text-decoration: underline;
|
|
82
|
-
@extend .text-white;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|