From 25b3dcc0e4abdda72af19d4e87cc5a3857ca58eb Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Wed, 9 Dec 2015 11:00:06 -0600 Subject: [PATCH] Resolves #771 checkbox color inconsistent --- index.html | 6 +++--- less/_variables.less | 2 +- sass/_variables.scss | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 0679bf03..0f8de1de 100644 --- a/index.html +++ b/index.html @@ -226,12 +226,12 @@

Auto-update apps over wifi only

-

Horizontal form with column label variations and checkbox-primary color

+

Horizontal form with column label variations

-
+
@@ -242,7 +242,7 @@
-
+
diff --git a/less/_variables.less b/less/_variables.less index 90fdb3fe..1798c832 100644 --- a/less/_variables.less +++ b/less/_variables.less @@ -118,7 +118,7 @@ @mdb-checkbox-size: 20px; @mdb-checkbox-animation-ripple: 500ms; @mdb-checkbox-animation-check: 0.3s; -@mdb-checkbox-checked-color: #4caf50; +@mdb-checkbox-checked-color: @brand-primary; @mdb-checkbox-label-color: rgba(0, 0, 0, .54); @mdb-checkbox-border-color: @mdb-checkbox-label-color; diff --git a/sass/_variables.scss b/sass/_variables.scss index 856201d5..8fcc5642 100644 --- a/sass/_variables.scss +++ b/sass/_variables.scss @@ -120,7 +120,7 @@ $background-disabled: #eaeaea !default; $mdb-checkbox-size: 20px !default; $mdb-checkbox-animation-ripple: 500ms !default; $mdb-checkbox-animation-check: 0.3s !default; -$mdb-checkbox-checked-color: #4caf50 !default; +$mdb-checkbox-checked-color: $brand-primary !default; $mdb-checkbox-label-color: rgba(0, 0, 0, .54) !default; $mdb-checkbox-border-color: $mdb-checkbox-label-color !default;