dlegr250_material_design 0.5.66 → 0.5.67
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: 50d44d6a7663208d8d2352be34fa2be664e59f3a
|
4
|
+
data.tar.gz: ccf5e38e6460d17a5c2dac2676f125fa8ed4173f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a2ffdb0c946069b5392cf662f6049c60a87c8125d8f30c8796dac6458b328dd6f8207f8f0e0efb92d52659d7f3ca253eef429998d378eb4cdf756128eb6f4a2
|
7
|
+
data.tar.gz: 172376e999f6339d67c73b486a273ba4a116bd6861401c727c2d00f226c710425892931e765daa7778b0929ff57c89c4e49e264120d601e683e93209ff079d9e
|
@@ -1,64 +1,64 @@
|
|
1
|
-
//======================================================================
|
2
|
-
// Note: Uses DIVs styled as table instead of TABLE element because
|
3
|
-
// you cannot make a LINK a TABLE ROW, and it is easier to re-style
|
4
|
-
// DIVs if you want to make responsive tables.
|
5
|
-
// EXAMPLE:
|
6
|
-
//======================================================================
|
7
|
-
|
8
|
-
.table {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
}
|
18
|
-
|
19
|
-
.thead {
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
}
|
24
|
-
|
25
|
-
.th {
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
35
|
-
|
36
|
-
.tr {
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
}
|
41
|
-
|
42
|
-
.td {
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
}
|
48
|
-
|
49
|
-
.table-hoverable .tr {
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
}
|
56
|
-
|
57
|
-
// Striped rows
|
58
|
-
//----------------------------------------------------------------------
|
59
|
-
|
60
|
-
.table-striped-rows {
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
}
|
1
|
+
// //======================================================================
|
2
|
+
// // Note: Uses DIVs styled as table instead of TABLE element because
|
3
|
+
// // you cannot make a LINK a TABLE ROW, and it is easier to re-style
|
4
|
+
// // DIVs if you want to make responsive tables.
|
5
|
+
// // EXAMPLE:
|
6
|
+
// //======================================================================
|
7
|
+
//
|
8
|
+
// .table {
|
9
|
+
// background-color: color("white");
|
10
|
+
// border: 1px solid color("divider");
|
11
|
+
// display: table;
|
12
|
+
// width: 100%;
|
13
|
+
//
|
14
|
+
// a {
|
15
|
+
// color: color("text");
|
16
|
+
// }
|
17
|
+
// }
|
18
|
+
//
|
19
|
+
// .thead {
|
20
|
+
// border-bottom: 2px solid color("hover");
|
21
|
+
// display: table-row;
|
22
|
+
// height: 56px;
|
23
|
+
// }
|
24
|
+
//
|
25
|
+
// .th {
|
26
|
+
// border-bottom: 2px solid color("hover");
|
27
|
+
// color: lighten(color("text"), 10%);
|
28
|
+
// display: table-cell;
|
29
|
+
// font-size: $font-size-normal;
|
30
|
+
// font-weight: bold;
|
31
|
+
// padding: 0 $spacing-normal;
|
32
|
+
// text-transform: uppercase;
|
33
|
+
// vertical-align: middle;
|
34
|
+
// }
|
35
|
+
//
|
36
|
+
// .tr {
|
37
|
+
// border-bottom: 1px solid color("hover");
|
38
|
+
// display: table-row;
|
39
|
+
// height: 48px;
|
40
|
+
// }
|
41
|
+
//
|
42
|
+
// .td {
|
43
|
+
// border-bottom: 1px solid color("hover");
|
44
|
+
// display: table-cell;
|
45
|
+
// padding: 0 $spacing-normal;
|
46
|
+
// vertical-align: middle;
|
47
|
+
// }
|
48
|
+
//
|
49
|
+
// .table-hoverable .tr {
|
50
|
+
// @include transition(background-color 0.2s);
|
51
|
+
//
|
52
|
+
// &:hover {
|
53
|
+
// background-color: color("hover");
|
54
|
+
// }
|
55
|
+
// }
|
56
|
+
//
|
57
|
+
// // Striped rows
|
58
|
+
// //----------------------------------------------------------------------
|
59
|
+
//
|
60
|
+
// .table-striped-rows {
|
61
|
+
// tr:nth-child(even) {
|
62
|
+
// background-color: lighten(color("hover"), 3%);
|
63
|
+
// }
|
64
|
+
// }
|
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.
|
4
|
+
version: 0.5.67
|
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-04-
|
11
|
+
date: 2017-04-21 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
|