dlegr250_material_design 0.4.98 → 0.4.99
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: b46b31edc1a06de38b178ebd551dcb3118763dbc
|
4
|
+
data.tar.gz: 5281398173ca0f7a1ff84c8b9e8b1689bcec1ee2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b4f6226b8b6ca3cd1b8dee28fadc93a12279a88ec80dadb19eff9dc2548be90bd97884187b5040389a21d641a358d2d01caed413b6fe29f47a313cb7c3e61be
|
7
|
+
data.tar.gz: 823c863c4aae92bd3dfc08e81937bb3c63854e9fbeb6090bd2332fb10f6359c77b9d2cec3182d9183fcbf566a487472b15fbc890f53016bc354d9c6517a0fa0a
|
@@ -195,7 +195,7 @@ $colors: (
|
|
195
195
|
$body-background-color: #fafafa !default;
|
196
196
|
|
197
197
|
// appbar and any colored component
|
198
|
-
// $primary
|
198
|
+
// $color-primary: color("blue") !default;
|
199
199
|
// $secondary-color: color("red") !default;
|
200
200
|
|
201
201
|
// Hover color for lists, menus, etc...
|
@@ -212,7 +212,7 @@ $appbar-button-color: color("helper") !default;
|
|
212
212
|
//----------------------------------------------------------------------
|
213
213
|
|
214
214
|
// $app-config: (
|
215
|
-
// "primary": $primary
|
215
|
+
// "primary": $color-primary,
|
216
216
|
// "secondary": $secondary-color,
|
217
217
|
// "hover": $hover-color
|
218
218
|
// );
|
@@ -17,7 +17,7 @@
|
|
17
17
|
//----------------------------------------------------------------------
|
18
18
|
|
19
19
|
.appbar {
|
20
|
-
background-color: $primary
|
20
|
+
background-color: $color-primary;
|
21
21
|
bottom: auto;
|
22
22
|
box-sizing: border-box;
|
23
23
|
color: $appbar-text-color;
|
@@ -34,7 +34,7 @@
|
|
34
34
|
//----------------------------------------------------------------------
|
35
35
|
|
36
36
|
.appbar-button {
|
37
|
-
background-color: $primary
|
37
|
+
background-color: $color-primary;
|
38
38
|
box-sizing: border-box;
|
39
39
|
color: $appbar-button-color;
|
40
40
|
cursor: pointer;
|
@@ -53,7 +53,7 @@
|
|
53
53
|
@include transition(background 0.2s ease-in-out);
|
54
54
|
|
55
55
|
&:active {
|
56
|
-
background-color: darken($primary
|
56
|
+
background-color: darken($color-primary, 12%);
|
57
57
|
}
|
58
58
|
}
|
59
59
|
|
@@ -61,11 +61,11 @@
|
|
61
61
|
@media (hover: hover) {
|
62
62
|
.appbar-button {
|
63
63
|
&:hover {
|
64
|
-
background-color: darken($primary
|
64
|
+
background-color: darken($color-primary, 7%);
|
65
65
|
}
|
66
66
|
|
67
67
|
&:active {
|
68
|
-
background-color: darken($primary
|
68
|
+
background-color: darken($color-primary, 12%);
|
69
69
|
}
|
70
70
|
}
|
71
71
|
}
|
@@ -134,7 +134,7 @@
|
|
134
134
|
|
135
135
|
.appbar-divider,
|
136
136
|
.appbar-spacer {
|
137
|
-
background-color: darken($primary
|
137
|
+
background-color: darken($color-primary, 10%);
|
138
138
|
content: "";
|
139
139
|
display: inline-block;
|
140
140
|
height: $appbar-button-height - $spacing-normal;
|