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: 0a207472993de41a4318cc62bf8778a19f636c4c
4
- data.tar.gz: 7a6c888f1e79f3f1a9ebcf5bf13491f2f47075ad
3
+ metadata.gz: 6d9bda25c3a94ec9a6b1adeda70ff0fc680eb07b
4
+ data.tar.gz: d06e7017b2154ec3f72789596b69ab6c628a3a4f
5
5
  SHA512:
6
- metadata.gz: e4a0bba82566b1da750f895d770d41085a85773fccb3501b27fc77c2cb4208d97b5a7cebb04f60b5a437a65566e17b56ff028a6f40518e0881fefb6b4d258429
7
- data.tar.gz: 2595fda48cfa0a47d8140f6c2681645fdcf29d2707dc9c241f3c96dbac16f7a1990e38cc98a72d9cc21657154a0f4facef0cabd1351003952bc3a5e5636a20f0
6
+ metadata.gz: f92c5dcb2d5c7e55e6fd472a922296af3a44b971de8e0f7f110f1a5e049a2a46822cc05cc01f531211cd9ff7d30b978e95f5a247afd1954888b91760ae762df6
7
+ data.tar.gz: 7d2b480a0891667832f152035accad74dae4a3d2cafcf59ee0f2725784811425fdfbf1aace81055f9a80d1be13e9adf1629a60d2a67e0110b49ba4bf68042db6
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.1.12"
2
+ VERSION = "0.1.13"
3
3
  end
@@ -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
- &.with-left-icon {
55
+ &.has-left-icon {
56
56
  .icon {
57
57
  margin-right: 4px;
58
58
  }
59
59
  }
60
60
 
61
- &.with-right-icon {
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.12
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
- }