dlegr250_material_design 0.5.92 → 0.5.93

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9aebf36f4392b1d166fa517afcaf6289ea72ebf1
4
- data.tar.gz: '099c3dfbd06326dfafc8c293f17a5af339a66d7e'
3
+ metadata.gz: f99ee52eb21fda9bd01d9dda762025825809ea5e
4
+ data.tar.gz: 86b46f7b39f151ee0815b47a77aa9615072bac49
5
5
  SHA512:
6
- metadata.gz: 412a38b57fb25408ae471cc3693a15a5b1f695e4a72d43882cd8f0080a16585322f98844bb740aff8214eee2ba718467e3fb90a72ce26523da2f3fef9dc34a0c
7
- data.tar.gz: 22f7342d0272f17fc1977395126e2d7c65acea11e89a83fbbdb21a2442d418b14646e1bd316a4b49fd58935c6e58e4705a17fe64d015c27c9704b9d7867867ab
6
+ metadata.gz: 7aaf90b694403049562866fbae37f8c0ed7170443c1404e90972d2dbdb7509df92ed155515a31e131539df34d9bcc080badb20e52aa347a9e3229a21210f5623
7
+ data.tar.gz: ffc640d2cd8e1364a092aadfcde58740cf802c5957bb7202b467a684e60667a22443cd70049bd6acbaebd430f7a5b4bec8ed58aa1fe519f07f40664a3ffbb82d
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.5.92"
2
+ VERSION = "0.5.93"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  // Defaults to override
2
2
  //----------------------------------------------------------------------
3
3
 
4
- $body-background-color: #ececec !default;
4
+ $body-background-color: #eaeaea !default;
5
5
  $color-primary: #2196f3 !default;
6
6
  $color-primary: #4285f4 !default;
7
7
  $color-secondary: #db4437 !default;
@@ -124,7 +124,7 @@ $spacing-xlarge: 32px;
124
124
  //----------------------------------------------------------------------
125
125
 
126
126
  $device-xsmall: 320px; // Small phone
127
- $device-small: 400px; // Larger phone
127
+ $device-small: 460px; // Larger phone
128
128
  $device-medium: 760px; // Tablet
129
129
  $device-large: 1000px; // Desktop
130
130
  $device-xlarge: 1200px; // Large desktop
@@ -20,7 +20,8 @@ $default-button-rounded-corners: 4px;
20
20
  border: 1px solid transparent;
21
21
  box-sizing: border-box;
22
22
  cursor: pointer;
23
- font-size: $font-size-normal;
23
+ // font-size: $font-size-normal;
24
+ font-size: 16px;
24
25
  font-weight: 500;
25
26
  height: $button-height;
26
27
  line-height: 1.2;
@@ -34,6 +35,7 @@ $default-button-rounded-corners: 4px;
34
35
  white-space: nowrap;
35
36
  @include flex-parent();
36
37
  display: inline-flex;
38
+ @include font-smoothing();
37
39
  @include no-touch-highlight;
38
40
  @include rounded-corners($default-button-rounded-corners);
39
41
  @include transition(all 0.2s ease-in-out);
@@ -184,7 +186,7 @@ $default-button-rounded-corners: 4px;
184
186
  }
185
187
 
186
188
  // @include box-shadow(0 1px 2px 0 rgba(0, 0, 0, 0.4));
187
- @include box-shadow(0 1px 2px rgba(0, 0, 0, 0.24));
189
+ // @include box-shadow(0 1px 2px rgba(0, 0, 0, 0.24));
188
190
 
189
191
  &:hover {
190
192
  background-color: lighten($color, 10%);
@@ -390,4 +392,8 @@ $default-button-rounded-corners: 4px;
390
392
  .button:last-child {
391
393
  @include rounded-right-corners();
392
394
  }
395
+
396
+ .button:not(:first-child) {
397
+ border-left: none;
398
+ }
393
399
  }
@@ -32,6 +32,7 @@
32
32
 
33
33
  .card-header {
34
34
  @include list-item();
35
+ @include rounded-top-corners();
35
36
  border-bottom: 1px solid color("divider");
36
37
  }
37
38
 
@@ -46,7 +47,8 @@
46
47
  .card-header-primary {
47
48
  @include list-item-primary();
48
49
  font-size: $font-size-normal + 2px;
49
- font-weight: bold;
50
+ font-weight: normal;
51
+ @include font-smoothing();
50
52
  }
51
53
 
52
54
  .card-header-primary-subtext {
@@ -37,6 +37,7 @@
37
37
  min-width: 280px;
38
38
  overflow: hidden;
39
39
  width: $dialog-width-xsmall;
40
+ @include box-shadow(0 12px 15px 0 rgba(0,0,0,0.24));
40
41
  @include elevation(24);
41
42
  @include rounded-corners();
42
43
  }
@@ -62,7 +63,6 @@
62
63
  max-width: 90%;
63
64
  position: relative;
64
65
  width: auto;
65
- @include box-shadow(0 12px 15px 0 rgba(0,0,0,0.24));
66
66
  @include rounded-corners();
67
67
  }
68
68
  }
@@ -81,9 +81,9 @@
81
81
 
82
82
  .dialog-title {
83
83
  font-size: $font-size-large;
84
- font-weight: bold;
84
+ font-weight: normal;
85
85
  padding: $spacing-normal;
86
- padding-bottom: 0;
86
+ @include font-smoothing();
87
87
  }
88
88
 
89
89
  // .dialog-toolbar
@@ -99,6 +99,10 @@
99
99
  @include transition(box-shadow 0.2s ease);
100
100
  }
101
101
 
102
+ .dialog-toolbar-title-subtext {
103
+ @include list-item-primary-subtext();
104
+ }
105
+
102
106
  @media (min-width: $device-medium) {
103
107
  .dialog-toolbar {
104
108
  height: $toolbar-height-device-medium;
@@ -126,10 +130,10 @@
126
130
  //----------------------------------------------------------------------
127
131
 
128
132
  .dialog-toolbar-title {
129
- color: color("icon");
133
+ color: color("text");
130
134
  flex: 1;
131
- font-size: $font-size-normal + 2px;
132
- font-weight: 400;
135
+ font-size: 20px;
136
+ font-weight: normal;
133
137
  margin-left: $spacing-small;
134
138
  @include font-smoothing();
135
139
  @include truncate-text();
@@ -128,6 +128,7 @@
128
128
  @include flex-parent();
129
129
  display: inline-flex;
130
130
  flex: 1;
131
+ height: 100%;
131
132
  }
132
133
 
133
134
  // Toolbar - spacer/divider
@@ -112,9 +112,9 @@ ol {
112
112
  }
113
113
 
114
114
  // Remove duplicate border on last item in list
115
- // .list-bordered.list-divided .list-item:last-child {
116
- // border-bottom: none;
117
- // }
115
+ .list-divided .list-item:last-child {
116
+ border-bottom: none;
117
+ }
118
118
 
119
119
  // Dividers between items
120
120
  .list-divided .list-item {
@@ -64,6 +64,7 @@
64
64
  .td-actions {
65
65
  padding: $spacing-small;
66
66
  text-align: right;
67
+ vertical-align: top;
67
68
  width: 64px;
68
69
  }
69
70
 
@@ -14,7 +14,7 @@
14
14
  display: inline-flex;
15
15
  flex: none;
16
16
  font-size: $font-size-small;
17
- font-weight: 500;
17
+ font-weight: 600;
18
18
  justify-content: center;
19
19
  height: 100%;
20
20
  letter-spacing: 0;
@@ -24,9 +24,9 @@
24
24
  padding: 0 12px;
25
25
  position: relative;
26
26
  text-align: center;
27
- // text-transform: uppercase;
27
+ text-transform: uppercase;
28
28
  vertical-align: middle;
29
- // @include font-smoothing();
29
+ @include font-smoothing();
30
30
  @include transition(color 0.30s ease, border-color 0.30s ease, background-color 0.30s ease);
31
31
 
32
32
  &:hover {
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.5.92
4
+ version: 0.5.93
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel LeGrand
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-25 00:00:00.000000000 Z
11
+ date: 2017-10-27 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