mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
FIX: use pastel color for background of the selected poll options
This commit is contained in:
parent
9df9cd2c66
commit
0013a94692
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ $text-color: #9E9E9E;
|
|||
|
||||
$option-foreground: $primary;
|
||||
$option-background: dark-light-diff($primary, $secondary, 90%, -65%);
|
||||
$option-background-selected: #dbffdb;
|
||||
$option-shadow: dark-light-diff($option-background, $primary, 10%, -10%);
|
||||
|
||||
div.poll {
|
||||
|
@ -42,7 +43,7 @@ div.poll {
|
|||
}
|
||||
|
||||
&[data-poll-selected="selected"] {
|
||||
background: $success !important;
|
||||
background: $option-background-selected !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue