dlegr250_material_design 0.5.09 → 0.5.10
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0fc5bc192ee1f649f7ec6559a6d2eb1f8ad9706
|
|
4
|
+
data.tar.gz: 7921b59f6cc774eb798be31b830370f8c0a10430
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41c02f64ad3629c823024b5737cb6a1b3ccb04b7e3c46bce12d1f7c9a9ac1685de4611c34251bfd60dd9b0a919396c3e266a637850667b853291c68969e82252
|
|
7
|
+
data.tar.gz: 01184de1843cc06b94459aedcb37356d21551e89568940289af762258fbd13bba5f4d69d7b45707be018f4deb7f8d6be03e58a1a0f617749af445407291b21eb
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
//----------------------------------------------------------------------
|
|
3
3
|
|
|
4
4
|
$body-background-color: #fafafa !default;
|
|
5
|
-
$color-hover: #
|
|
5
|
+
$color-hover: #f2f2f2 !default;
|
|
6
|
+
$color-hover-blue: #f0f7fe !default;
|
|
6
7
|
$color-primary: #2196f3 !default;
|
|
7
8
|
$color-secondary: #db4437 !default;
|
|
8
9
|
|
|
@@ -312,6 +313,7 @@ $colors: (
|
|
|
312
313
|
"primary": $color-primary,
|
|
313
314
|
"secondary": $color-secondary,
|
|
314
315
|
"hover": $color-hover,
|
|
316
|
+
"hover-blue": $color-hover-blue,
|
|
315
317
|
"icon": #737373,
|
|
316
318
|
"offwhite": rgba(255, 255, 255, 0.6),
|
|
317
319
|
"disabled": rgba(0, 0, 0, 0.26),
|
|
@@ -49,6 +49,8 @@ ol {
|
|
|
49
49
|
color: color("text");
|
|
50
50
|
min-height: $list-one-line-height;
|
|
51
51
|
@include flex-parent-row();
|
|
52
|
+
@include no-touch-highlight-color();
|
|
53
|
+
@include transition(background-color 0.30s ease);
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
.list-item-icon {
|
|
@@ -119,7 +121,13 @@ ol {
|
|
|
119
121
|
|
|
120
122
|
// Hoverable
|
|
121
123
|
.list-hoverable {
|
|
124
|
+
.list-item:hover {
|
|
125
|
+
background-color: color("hover");
|
|
126
|
+
}
|
|
122
127
|
|
|
128
|
+
.list-item:active {
|
|
129
|
+
background-color: darken(color("hover"), 3%);
|
|
130
|
+
}
|
|
123
131
|
}
|
|
124
132
|
|
|
125
133
|
// Aligned top instead of centered
|