dlegr250_material_design 0.1.12 → 0.1.13
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d9bda25c3a94ec9a6b1adeda70ff0fc680eb07b
|
4
|
+
data.tar.gz: d06e7017b2154ec3f72789596b69ab6c628a3a4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f92c5dcb2d5c7e55e6fd472a922296af3a44b971de8e0f7f110f1a5e049a2a46822cc05cc01f531211cd9ff7d30b978e95f5a247afd1954888b91760ae762df6
|
7
|
+
data.tar.gz: 7d2b480a0891667832f152035accad74dae4a3d2cafcf59ee0f2725784811425fdfbf1aace81055f9a80d1be13e9adf1629a60d2a67e0110b49ba4bf68042db6
|
@@ -52,13 +52,13 @@ $buttons: "button, .button, input[type='submit'], input[type='reset'], input[typ
|
|
52
52
|
}
|
53
53
|
|
54
54
|
// Must mark icon element with class "icon"
|
55
|
-
&.
|
55
|
+
&.has-left-icon {
|
56
56
|
.icon {
|
57
57
|
margin-right: 4px;
|
58
58
|
}
|
59
59
|
}
|
60
60
|
|
61
|
-
&.
|
61
|
+
&.has-right-icon {
|
62
62
|
.icon {
|
63
63
|
margin-left: 4px;
|
64
64
|
}
|
@@ -12,9 +12,6 @@
|
|
12
12
|
// Layouts
|
13
13
|
//----------------------------------------------------------------------
|
14
14
|
|
15
|
-
// For authentication pages like login/signup/password_reset...
|
16
|
-
@import "layouts/authentication/base";
|
17
|
-
|
18
15
|
@import "layouts/application/base";
|
19
16
|
@import "layouts/application/appbar";
|
20
17
|
@import "layouts/application/sidebars";
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dlegr250_material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel LeGrand
|
@@ -127,7 +127,6 @@ files:
|
|
127
127
|
- vendor/assets/stylesheets/layouts/application/base.scss
|
128
128
|
- vendor/assets/stylesheets/layouts/application/main.scss
|
129
129
|
- vendor/assets/stylesheets/layouts/application/sidebars.scss
|
130
|
-
- vendor/assets/stylesheets/layouts/authentication/base.scss
|
131
130
|
homepage: http://www.github.com/dlegr250/dlegr250_material_design
|
132
131
|
licenses: []
|
133
132
|
metadata: {}
|
@@ -1,53 +0,0 @@
|
|
1
|
-
// Authentication - container
|
2
|
-
//----------------------------------------------------------------------
|
3
|
-
|
4
|
-
#authentication-container {
|
5
|
-
padding: $spacing-normal;
|
6
|
-
|
7
|
-
.authentication-flash {
|
8
|
-
@extend .box;
|
9
|
-
margin-bottom: $spacing-normal;
|
10
|
-
}
|
11
|
-
|
12
|
-
.authentication-flash-notice {
|
13
|
-
@extend .box-green;
|
14
|
-
}
|
15
|
-
|
16
|
-
.authentication-flash-error {
|
17
|
-
@extend .box-red;
|
18
|
-
}
|
19
|
-
}
|
20
|
-
|
21
|
-
@media (min-width: $medium-width) {
|
22
|
-
#authentication-container {
|
23
|
-
padding-top: $spacing-xlarge * 3;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
|
27
|
-
// Authentication - branding
|
28
|
-
//----------------------------------------------------------------------
|
29
|
-
|
30
|
-
#authentication-branding {
|
31
|
-
font-size: $font-size-large;
|
32
|
-
font-weight: bold;
|
33
|
-
margin-bottom: $spacing-normal;
|
34
|
-
text-align: center;
|
35
|
-
}
|
36
|
-
|
37
|
-
// Authentication - footer links
|
38
|
-
//----------------------------------------------------------------------
|
39
|
-
|
40
|
-
#authentication-footer {
|
41
|
-
padding: $spacing-large;
|
42
|
-
text-align: center;
|
43
|
-
|
44
|
-
a {
|
45
|
-
color: color("grey");
|
46
|
-
margin: $spacing-xsmall;
|
47
|
-
text-decoration: none;
|
48
|
-
|
49
|
-
&:hover {
|
50
|
-
text-decoration: underline;
|
51
|
-
}
|
52
|
-
}
|
53
|
-
}
|