dlegr250_material_design 0.5.93 → 0.5.94
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dlegr250_material_design/version.rb +1 -1
- data/vendor/assets/stylesheets/base/mixins.scss +4 -0
- data/vendor/assets/stylesheets/base/variables/colors.scss +1 -1
- data/vendor/assets/stylesheets/components/layout/main.scss +0 -1
- data/vendor/assets/stylesheets/components/tables.scss +6 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 669e1501cb83b3e4072d22cd1344572bf89a123f
|
4
|
+
data.tar.gz: 8cce131f9adaf0f9bc6b4a77a1bbec4b6ddee3eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cffaa2f18b3ba681cb286a9192c7daa3c3922e63f5eb84c9e021fc9e78c07d90984cde2455a8bba61514964f863cf72018fb33cc5aba402c40e11b7ac8967170
|
7
|
+
data.tar.gz: ed66984d8a0c526016df196d393acd98338db2ca501df493b87cf44cf4f3b6d211165782533633ad5c04e52bf027fb856cb5800670b05243a5b61f32920e756a
|
@@ -137,6 +137,10 @@ $default-rounded-corners-radius: 2px; // As per Material Design spec
|
|
137
137
|
-webkit-box-shadow: $shadow;
|
138
138
|
}
|
139
139
|
|
140
|
+
@mixin box-shadow-border($color) {
|
141
|
+
@include box-shadow(0 -1px 0 $color, 1px 0 0 $color, 0 1px 0 $color, -1px 0 0 $color);
|
142
|
+
}
|
143
|
+
|
140
144
|
@mixin text-shadow($shadow) {
|
141
145
|
text-shadow: $shadow;
|
142
146
|
-moz-text-shadow: $shadow;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
// Defaults to override
|
2
2
|
//----------------------------------------------------------------------
|
3
3
|
|
4
|
-
$body-background-color: #
|
4
|
+
$body-background-color: #ebebeb !default;
|
5
5
|
$color-primary: #2196f3 !default;
|
6
6
|
$color-primary: #4285f4 !default;
|
7
7
|
$color-secondary: #db4437 !default;
|
@@ -88,16 +88,16 @@
|
|
88
88
|
.table-align-top .td { vertical-align: top; }
|
89
89
|
|
90
90
|
.table-bordered {
|
91
|
-
@include box-shadow(
|
91
|
+
@include box-shadow-border(color("divider"));
|
92
92
|
}
|
93
93
|
|
94
|
-
.table-divided {
|
95
|
-
|
94
|
+
.table-divided .tr .td {
|
95
|
+
border-bottom: 1px solid color("divider");
|
96
96
|
}
|
97
97
|
|
98
|
-
|
99
|
-
|
100
|
-
|
98
|
+
.table-divided .tbody:last-child .tr:last-child .td {
|
99
|
+
border-bottom: none;
|
100
|
+
}
|
101
101
|
|
102
102
|
.table-hoverable .tbody .tr:active { background-color: darken(color("grey-200"), 3%); }
|
103
103
|
.table-hoverable .tbody .tr .button-icon:active { background-color: darken(color("grey-200"), 12%); }
|
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.94
|
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-
|
11
|
+
date: 2017-10-28 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
|