dlegr250_material_design 0.4.39 → 0.4.40

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: 309af1c2f9c86f2f8558e404cd0fbc55dd74aa60
4
- data.tar.gz: aa8b41fbaaeca7b0f2e1fb41140bb01dcfcb75cf
3
+ metadata.gz: f97423bd3567a783469ad4940598aed726497208
4
+ data.tar.gz: 7493a8d28c6ab803627df6db7a3d1ea328961b3e
5
5
  SHA512:
6
- metadata.gz: 5d126f74594ea301c7296e0d4c17643ef7e1592c84e0e73489632a116d1d6c1100af56d33e79c6d273a5a45b2d13b29e11955e3027973474d507e1f26c532922
7
- data.tar.gz: 164de4227c0b76a292212d85cd0341162d27a196d6a835e9b87c34424b4039f48b73f92dc110ea0daaa40c9cf958f40b301e38f4e45db8498296f133b3abf25c
6
+ metadata.gz: e6bb72a350383ee6627674f94e4f381de8bb6e93cfdec1e835bb1cb3a3c4f05a33ebd1cd3e30f98b3afa48d7678feedbca2bd179f862f7eece67133f0d260008
7
+ data.tar.gz: 6f1b0769e397cc61b6ce8aa12c5bdd7141ea5337eedfd295e7649dd6b6be038066326c3fe32651db8de3a7e0ed8c82d2e8bf91b9df1543978520de0a70510e55
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.4.39"
2
+ VERSION = "0.4.40"
3
3
  end
@@ -75,41 +75,40 @@
75
75
  // Padding
76
76
  //----------------------------------------------------------------------
77
77
 
78
- .padding-xsmall {
79
- padding: $spacing-xsmall;
80
- }
81
-
82
- .padding-small {
83
- padding: $spacing-small;
84
- }
85
-
86
- .padding-normal {
87
- padding: $spacing-normal;
88
- }
89
-
90
- .padding-large {
91
- padding: $spacing-large;
92
- }
93
-
94
- .padding-xlarge {
95
- padding: $spacing-xlarge;
96
- }
97
-
98
- .no-padding-top {
99
- padding-top: 0 !important;
100
- }
101
-
102
- .no-padding-right {
103
- padding-right: 0 !important;
104
- }
105
-
106
- .no-padding-bottom {
107
- padding-bottom: 0 !important;
108
- }
109
-
110
- .no-padding-left {
111
- padding-left: 0 !important;
112
- }
78
+ .padding-xsmall { padding: $spacing-xsmall; }
79
+ .padding-small { padding: $spacing-small;
80
+ .padding-normal { padding: $spacing-normal; }
81
+ .padding-large { padding: $spacing-large; }
82
+ .padding-xlarge { padding: $spacing-xlarge; }
83
+
84
+ .padding-top-xsmall { padding-bottom: $spacing-xsmall; }
85
+ .padding-top-small { padding-bottom: $spacing-small; }
86
+ .padding-top-normal { padding-bottom: $spacing-normal; }
87
+ .padding-top-large { padding-bottom: $spacing-large; }
88
+ .padding-top-xlarge { padding-bottom: $spacing-xlarge; }
89
+
90
+ .padding-right-xsmall { padding-bottom: $spacing-xsmall; }
91
+ .padding-right-small { padding-bottom: $spacing-small; }
92
+ .padding-right-normal { padding-bottom: $spacing-normal; }
93
+ .padding-right-large { padding-bottom: $spacing-large; }
94
+ .padding-right-xlarge { padding-bottom: $spacing-xlarge; }
95
+
96
+ .padding-bottom-xsmall { padding-bottom: $spacing-xsmall; }
97
+ .padding-bottom-small { padding-bottom: $spacing-small; }
98
+ .padding-bottom-normal { padding-bottom: $spacing-normal; }
99
+ .padding-bottom-large { padding-bottom: $spacing-large; }
100
+ .padding-bottom-xlarge { padding-bottom: $spacing-xlarge; }
101
+
102
+ .padding-left-xsmall { padding-bottom: $spacing-xsmall; }
103
+ .padding-left-small { padding-bottom: $spacing-small; }
104
+ .padding-left-normal { padding-bottom: $spacing-normal; }
105
+ .padding-left-large { padding-bottom: $spacing-large; }
106
+ .padding-left-xlarge { padding-bottom: $spacing-xlarge; }
107
+
108
+ .no-padding-top { padding-top: 0 !important; }
109
+ .no-padding-right { padding-right: 0 !important; }
110
+ .no-padding-bottom { padding-bottom: 0 !important; }
111
+ .no-padding-left { padding-left: 0 !important; }
113
112
 
114
113
  // Margins
115
114
  //----------------------------------------------------------------------
@@ -276,7 +276,6 @@ $default-rounded-corners-radius: 3px;
276
276
  font-size: $font-size-small;
277
277
  font-weight: normal;
278
278
  padding-top: $spacing-xsmall;
279
- @include flex-parent-row();
280
279
  }
281
280
 
282
281
  @mixin list-item-secondary() {
@@ -40,6 +40,8 @@ textarea {
40
40
  // Underline text fields
41
41
  //----------------------------------------------------------------------
42
42
 
43
+ // DEPRECATED: 2016-12-14 / dan.legrand@gmail.com
44
+ // Use updated .text-field-underline class below.
43
45
  .text-field-underline-container {
44
46
  #{$text-fields} {
45
47
  border: none;
@@ -54,6 +56,31 @@ textarea {
54
56
  }
55
57
  }
56
58
 
59
+ #{$text-fields} {
60
+ &.text-field-underline,
61
+ &.text-field-underline-full-width {
62
+ border: none;
63
+ border-bottom: 1px solid color("divider");
64
+ padding: $spacing-small 0;
65
+ @include rounded-corners(0);
66
+
67
+ &:focus {
68
+ border-color: color("primary");
69
+ @include box-shadow(0 1px 0 color("primary"));
70
+ }
71
+ }
72
+
73
+ // Full bleed from edge to edge
74
+ &.text-field-underline-full-width {
75
+ padding: $spacing-normal;
76
+
77
+ &:focus {
78
+ border-color: color("divider");
79
+ @include box-shadow(none);
80
+ }
81
+ }
82
+ }
83
+
57
84
  // text fields - responsive full width
58
85
  // On smaller screens, expand to entire width
59
86
  //----------------------------------------------------------------------
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dlegr250_material_design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.39
4
+ version: 0.4.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel LeGrand
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-13 00:00:00.000000000 Z
11
+ date: 2016-12-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'WARNING: ALPHA CODE, NOT PRODUCTION READY. ACTIVELY UNDER DEVELOPMENT
14
14
  AS OF AUG 2016. Implement Google Material Design spec with modern browsers in mind