FIX: use pastel color for background of the selected poll options

This commit is contained in:
Régis Hanol 2015-06-03 12:28:03 +02:00
parent 9df9cd2c66
commit 0013a94692

View file

@ -3,6 +3,7 @@ $text-color: #9E9E9E;
$option-foreground: $primary; $option-foreground: $primary;
$option-background: dark-light-diff($primary, $secondary, 90%, -65%); $option-background: dark-light-diff($primary, $secondary, 90%, -65%);
$option-background-selected: #dbffdb;
$option-shadow: dark-light-diff($option-background, $primary, 10%, -10%); $option-shadow: dark-light-diff($option-background, $primary, 10%, -10%);
div.poll { div.poll {
@ -42,7 +43,7 @@ div.poll {
} }
&[data-poll-selected="selected"] { &[data-poll-selected="selected"] {
background: $success !important; background: $option-background-selected !important;
} }
} }