materialize-sass 0.95.3.1 → 0.95.3.2
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: 68b8f0f177cdaed33844262a2fa236ff7f6b4e33
|
|
4
|
+
data.tar.gz: 7943d77bef3e058923e26f5567498b8a1d659c62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 444b4c933c427269da97175e67f4c2310b1a9161177aed6182413b1674194ad04e6e08ff38d86a526a154396ecfd4f98c9eeef68175a55e101abbde00fadf467
|
|
7
|
+
data.tar.gz: 0f2610ba6c4a2ca46ca3e23e51e08926c14e8b4242dfaba8dfe027a97b87d39b14069f8136ad7f766c2ae36d757c3ab6c22aac45adedb8c982eabac420377dab
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
/*** Colors ***/
|
|
2
2
|
$primary-color: color("materialize-red", "lighten-2") !default;
|
|
3
|
-
$primary-color-light:
|
|
4
|
-
$primary-color-dark:
|
|
5
|
-
@if not $primary-color-light {
|
|
6
|
-
$primary-color-light: lighten($primary-color, 15%);
|
|
7
|
-
}
|
|
8
|
-
@if not $primary-color-dark {
|
|
9
|
-
$primary-color-dark: darken($primary-color, 15%);
|
|
10
|
-
}
|
|
3
|
+
$primary-color-light: lighten($primary-color, 15%) !default;
|
|
4
|
+
$primary-color-dark: darken($primary-color, 15%) !default;
|
|
11
5
|
|
|
12
6
|
$secondary-color: color("teal", "lighten-1") !default;
|
|
13
7
|
$success-color: color("green", "base") !default;
|
|
@@ -43,8 +37,8 @@ $collapsible-border-color: #ddd !default;
|
|
|
43
37
|
$dropdown-color: $secondary-color;
|
|
44
38
|
|
|
45
39
|
/*** Fonts ***/
|
|
46
|
-
$roboto-font-path: "roboto/" !default;
|
|
47
|
-
$icons-font-path: "material-design-icons/" !default;
|
|
40
|
+
$roboto-font-path: "../font/roboto/" !default;
|
|
41
|
+
$icons-font-path: "../font/material-design-icons/" !default;
|
|
48
42
|
|
|
49
43
|
/*** Forms ***/
|
|
50
44
|
// Text Inputs + Textarea
|
|
@@ -54,12 +48,28 @@ $input-success-color: $success-color !default;
|
|
|
54
48
|
$input-focus-color: $secondary-color !default;
|
|
55
49
|
$label-font-size: .8rem !default;
|
|
56
50
|
$input-disabled-color: rgba(0,0,0, .26) !default;
|
|
51
|
+
$input-disabled-solid-color: #BDBDBD !default;
|
|
57
52
|
|
|
58
53
|
|
|
59
54
|
// Radio Buttons
|
|
60
55
|
$radio-fill-color: $secondary-color !default;
|
|
61
56
|
$radio-empty-color: #5a5a5a !default;
|
|
62
57
|
|
|
58
|
+
// Switches
|
|
59
|
+
$switch-bg-color: $secondary-color !default;
|
|
60
|
+
$switch-checked-lever-bg: desaturate(lighten($secondary-color, 25%), 25%) !default;
|
|
61
|
+
$switch-unchecked-bg: #F1F1F1 !default;
|
|
62
|
+
$switch-unchecked-lever-bg: #818181 !default;
|
|
63
|
+
|
|
64
|
+
// Date Picker
|
|
65
|
+
$datepicker-weekday-bg: darken($secondary_color, 7%) !default;
|
|
66
|
+
$datepicker-date-bg: $secondary_color !default;
|
|
67
|
+
$datepicker-year: rgba(255, 255, 255, .4) !default;
|
|
68
|
+
$datepicker-focus: rgba(0,0,0, .05) !default;
|
|
69
|
+
$datepicker-selected: $secondary-color;
|
|
70
|
+
$datepicker-selected-outfocus: desaturate(lighten($secondary-color, 35%), 15%);
|
|
71
|
+
|
|
72
|
+
|
|
63
73
|
/*** Global ***/
|
|
64
74
|
// Media Query Ranges
|
|
65
75
|
$small-screen-up: 601px !default;
|
|
@@ -91,7 +101,7 @@ $navbar-height-mobile: 56px !default;
|
|
|
91
101
|
|
|
92
102
|
|
|
93
103
|
/*** Tabs ***/
|
|
94
|
-
$tabs-underline-color: $primary-color-light;
|
|
104
|
+
$tabs-underline-color: $primary-color-light !default;
|
|
95
105
|
$tabs-text-color: $primary-color;
|
|
96
106
|
|
|
97
107
|
/*** Tables ***/
|
|
@@ -123,13 +133,10 @@ $interval-size: $range / $intervals !default;
|
|
|
123
133
|
|
|
124
134
|
/*** Collections ***/
|
|
125
135
|
$collection-border-color: #e0e0e0 !default;
|
|
126
|
-
$collection-bg-color: #
|
|
127
|
-
$collection-item-color: #fff !default;
|
|
136
|
+
$collection-bg-color: #fff !default;
|
|
128
137
|
$collection-active-bg-color: $secondary-color !default;
|
|
129
138
|
$collection-active-color: lighten($secondary-color, 55%) !default;
|
|
130
139
|
$collection-hover-bg-color: #ddd !default;
|
|
131
|
-
$collection-header-color: #fff !default;
|
|
132
|
-
// $collection-hover-bg-color: rgba(0,0,0,.08) !default;
|
|
133
140
|
|
|
134
141
|
/* Progress Bar */
|
|
135
142
|
$progress-bar-color: $secondary-color;
|