Changing choices background. Fixes #48

This commit is contained in:
Dessalines 2020-10-03 10:32:36 -05:00
parent be939c90a9
commit 05065608f3
2 changed files with 2 additions and 8 deletions

View File

@ -204,12 +204,6 @@ hr {
-ms-transform: scale(1.2); -ms-transform: scale(1.2);
} }
.selectr-selected, .selectr-options-container {
background-color: var(--secondary);
color: var(--white);
border: unset;
}
.mini-overlay { .mini-overlay {
position: absolute; position: absolute;
top: 0; top: 0;

View File

@ -532,14 +532,14 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
shouldSort: false, shouldSort: false,
classNames: { classNames: {
containerOuter: 'choices', containerOuter: 'choices',
containerInner: 'choices__inner bg-secondary border-0', containerInner: 'choices__inner bg-light border-0',
input: 'form-control', input: 'form-control',
inputCloned: 'choices__input--cloned', inputCloned: 'choices__input--cloned',
list: 'choices__list', list: 'choices__list',
listItems: 'choices__list--multiple', listItems: 'choices__list--multiple',
listSingle: 'choices__list--single', listSingle: 'choices__list--single',
listDropdown: 'choices__list--dropdown', listDropdown: 'choices__list--dropdown',
item: 'choices__item bg-secondary', item: 'choices__item bg-light',
itemSelectable: 'choices__item--selectable', itemSelectable: 'choices__item--selectable',
itemDisabled: 'choices__item--disabled', itemDisabled: 'choices__item--disabled',
itemChoice: 'choices__item--choice', itemChoice: 'choices__item--choice',