Add css variables to toggle buttons colors (#966)

This commit is contained in:
Andrey 2018-03-04 20:20:54 +02:00 committed by Paulus Schoutsen
parent 9dc33de49f
commit addad74019

View File

@ -9,11 +9,11 @@
white-space: nowrap; white-space: nowrap;
} }
paper-icon-button { paper-icon-button {
color: var(--primary-text-color); color: var(--paper-icon-button-inactive-color, var(--primary-text-color));
transition: color .5s; transition: color .5s;
} }
paper-icon-button[state-active] { paper-icon-button[state-active] {
color: var(--primary-color); color: var(--paper-icon-button-active-color, var(--primary-color));
} }
paper-toggle-button { paper-toggle-button {
cursor: pointer; cursor: pointer;