materialize-sass 0.95.3.1 → 0.95.3.2

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: aaf47340405cbffb70684bbdb2d14325b511cad3
4
- data.tar.gz: d137e4e6df3b3612808fae5c32e8039ee92bdc3d
3
+ metadata.gz: 68b8f0f177cdaed33844262a2fa236ff7f6b4e33
4
+ data.tar.gz: 7943d77bef3e058923e26f5567498b8a1d659c62
5
5
  SHA512:
6
- metadata.gz: c075346381df37f66b9261be0167acc48084707cc4f52504f3d8daa73eb9483329bedcc2472fba768a7fd511d7d153075975375c7c2341e82be6b51967b24a05
7
- data.tar.gz: f414c710ee480cb5dbe5f678b55c2ed09ed30599c408beedfe2ec3bfc8aa410abad45aa5f883a45b8733b965429e9047bf93703dc3f9c897ea80667942f48d01
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: false !default;
4
- $primary-color-dark: false !default;
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: #999 !default;
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;
@@ -1,6 +1,6 @@
1
1
  module Materialize
2
2
  module Sass
3
- VERSION = "0.95.3.1"
3
+ VERSION = "0.95.3.2"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: materialize-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.95.3.1
4
+ version: 0.95.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mkhairi