dlegr250_material_design 0.4.50 → 0.4.51

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: 9935ce5b42fd83fdb621ac25cd0981766fe94a42
4
- data.tar.gz: 7aa2453dce527f65d74763b04f50233789fa6f3d
3
+ metadata.gz: 12cd951fdcc5ebcc35908b3f23f5cf5524f5b171
4
+ data.tar.gz: 21e5dd33001399c85233e66929d680635d289cd1
5
5
  SHA512:
6
- metadata.gz: f16b3031bd9b549b10878b836b178756ec4605a1231e2c8583d3bea98d772a984b94ffcdb83fd0867d570176ba6baa68cca05fbc0b2be6b2577919890e74a7cd
7
- data.tar.gz: a73a97419e3ca1a6dc2b29ca68bc4597e8c7a696d98e81e38d4a06f3ecabfeeb79c47182d04b0cb03dd7facbcc8eacb8b3a4c1e34fdb9b3aeb3f9ffdbfdd0b81
6
+ metadata.gz: ee40df9bf8aea968e4266b851315b47897c9390d45658395fa7538271057fa9ca8c3d99692322129c8298f4da4f79e9abf8f58851fbe183e6d13bf1eceb3efb4
7
+ data.tar.gz: cf2ea78cb3f4fd82092213939f9fba370d7dcbf4a3e20994abe7144378a8b93d5cda477fe11ff4fa9650d73ded874801480d32d59d88bd36a092fbf07288da60
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.4.50"
2
+ VERSION = "0.4.51"
3
3
  end
@@ -6,25 +6,12 @@
6
6
  // Alignments
7
7
  //----------------------------------------------------------------------
8
8
 
9
- .align-left {
10
- text-align: left;
11
- }
12
-
13
- .align-center {
14
- text-align: center;
15
- }
16
-
17
- .align-right {
18
- text-align: right;
19
- }
20
-
21
- .float-left {
22
- float: left;
23
- }
9
+ .align-left { text-align: left; }
10
+ .align-center { text-align: center; }
11
+ .align-right { text-align: right; }
24
12
 
25
- .float-right {
26
- float: right;
27
- }
13
+ .float-left { float: left; }
14
+ .float-right { float: right; }
28
15
 
29
16
  // Expand entire width and take element padding into consideration.
30
17
  .full-width {
@@ -46,22 +33,16 @@
46
33
 
47
34
  .constrained-small,
48
35
  .constrained-medium,
49
- .constrained-large {
36
+ .constrained-large,
37
+ .constrained-xlarge {
50
38
  margin: auto;
51
39
  @include full-width;
52
40
  }
53
41
 
54
- .constrained-small {
55
- max-width: $small-width;
56
- }
57
-
58
- .constrained-medium {
59
- max-width: $medium-width;
60
- }
61
-
62
- .constrained-large {
63
- max-width: $large-width;
64
- }
42
+ .constrained-small { max-width: $small-width; }
43
+ .constrained-medium { max-width: $medium-width; }
44
+ .constrained-large { max-width: $large-width; }
45
+ .constrained-xlarge { max-width: $xlarge-width; }
65
46
 
66
47
  // Padding
67
48
  //----------------------------------------------------------------------
@@ -225,52 +206,22 @@ $font-sizes: 8, 10, 12, 14, 16, 18, 20, 22, 24;
225
206
  // Borders
226
207
  //----------------------------------------------------------------------
227
208
 
228
- .border-bottom {
229
- border-bottom: 1px solid color("divider") !important;
230
- }
231
-
232
- .border-left {
233
- border-left: 1px solid color("divider") !important;
234
- }
235
-
236
- .border-right {
237
- border-right: 1px solid color("divider") !important;
238
- }
239
-
240
- .border-top {
241
- border-top: 1px solid color("divider") !important;
242
- }
243
-
244
- .no-border-bottom {
245
- border-bottom: 0 !important;
246
- }
247
-
248
- .no-border-left {
249
- border-left: 0 !important;
250
- }
251
-
252
- .no-border-right {
253
- border-right: 0 !important;
254
- }
209
+ .border-bottom { border-bottom: 1px solid color("divider") !important; }
210
+ .border-left { border-left: 1px solid color("divider") !important; }
211
+ .border-right { border-right: 1px solid color("divider") !important; }
212
+ .border-top { border-top: 1px solid color("divider") !important; }
255
213
 
256
- .no-border-top {
257
- border-top: 0 !important;
258
- }
214
+ .no-border-bottom { border-bottom: 0 !important; }
215
+ .no-border-left { border-left: 0 !important; }
216
+ .no-border-right { border-right: 0 !important; }
217
+ .no-border-top { border-top: 0 !important; }
259
218
 
260
219
  // Rotation
261
220
  //----------------------------------------------------------------------
262
221
 
263
- .rotate-90 {
264
- @include transform(rotate(90deg));
265
- }
266
-
267
- .rotate-180 {
268
- @include transform(rotate(180deg));
269
- }
270
-
271
- .rotate-270 {
272
- @include transform(rotate(270deg));
273
- }
222
+ .rotate-90 { @include transform(rotate(90deg)); }
223
+ .rotate-180 { @include transform(rotate(180deg)); }
224
+ .rotate-270 { @include transform(rotate(270deg)); }
274
225
 
275
226
  // disabled
276
227
  //----------------------------------------------------------------------
@@ -104,6 +104,7 @@ $dialog-depth: 50;
104
104
  $small-width: 400px;
105
105
  $medium-width: 760px;
106
106
  $large-width: 1000px;
107
+ $xlarge-width: 1200px;
107
108
 
108
109
  // Convenience variables
109
110
  //----------------------------------------------------------------------
@@ -19,19 +19,20 @@
19
19
  //----------------------------------------------------------------------
20
20
 
21
21
  .box-icon {
22
- color: color("icon");
23
- font-size: $font-size-icon;
24
- height: $list-item-icon-width;
25
- line-height: $list-item-icon-width;
26
- margin-left: $spacing-normal;
27
- padding: 0;
28
- text-align: center;
29
- width: $list-item-icon-width;
30
-
31
- .icon {
32
- color: color("icon");
33
- font-size: $font-size-icon;
34
- }
22
+ @include list-item-icon();
23
+ // color: color("icon");
24
+ // font-size: $font-size-icon;
25
+ // height: $list-item-icon-width;
26
+ // line-height: $list-item-icon-width;
27
+ // margin-left: $spacing-normal;
28
+ // padding: 0;
29
+ // text-align: center;
30
+ // width: $list-item-icon-width;
31
+ //
32
+ // .icon {
33
+ // color: color("icon");
34
+ // font-size: $font-size-icon;
35
+ // }
35
36
  }
36
37
 
37
38
  .box-icon-circle {
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.50
4
+ version: 0.4.51
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-19 00:00:00.000000000 Z
11
+ date: 2016-12-20 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