-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Synchronizing code from bitbucket repository * Removing TomSelect because it is no longer updated
- Loading branch information
Showing
14 changed files
with
356 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ yarn.lock | |
/gerrit | ||
|
||
!.env.docker | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
.dark{ | ||
|
||
.multiselect, | ||
.multiselect__input, | ||
.multiselect__single { | ||
font-family: inherit; | ||
font-size: inherit; | ||
} | ||
|
||
.multiselect { | ||
color: inherit; | ||
} | ||
|
||
.multiselect__content-wrapper { | ||
background: theme('colors.darkmode.700'); | ||
|
||
} | ||
|
||
.multiselect--disabled { | ||
background: theme('colors.darkmode.700'); | ||
} | ||
|
||
.multiselect__tag{ | ||
color:inherit; | ||
background: theme('colors.darkmode.600'); | ||
} | ||
|
||
.multiselect__tags { | ||
background: theme('colors.darkmode.800'); | ||
border-radius: theme('borderRadius.DEFAULT'); | ||
font-size:inherit; | ||
|
||
} | ||
.multiselect__tag-icon::after { | ||
color: theme('colors.slate.500'); | ||
} | ||
|
||
.multiselect__tag-icon:focus::after, | ||
.multiselect__tag-icon:hover::after { | ||
color: white; | ||
} | ||
|
||
.multiselect__option--highlight { | ||
background:theme('colors.slate.500'); | ||
outline: none; | ||
color: white; | ||
} | ||
|
||
.multiselect__option--highlight::after { | ||
content: attr(data-select); | ||
background:theme('colors.slate.500'); | ||
color: white; | ||
} | ||
|
||
|
||
.multiselect__option--selected { | ||
background: theme('colors.slate.700'); | ||
color: inherit; | ||
font-weight: bold; | ||
} | ||
|
||
.multiselect__input::placeholder { | ||
color: theme("colors.slate.500"); | ||
} | ||
|
||
.multiselect__input, | ||
.multiselect__single{ | ||
background: theme('colors.darkmode.700'); | ||
} | ||
|
||
|
||
.multiselect__spinner::before, | ||
.multiselect__spinner::after{ | ||
border-color: theme('colors.slate.600') transparent transparent; | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.