select.css 521 B

1234567891011121314151617181920212223242526272829303132333435
  1. .select {
  2. }
  3. .select__option {
  4. }
  5. /* Override some Choices.js defaults */
  6. .choices {
  7. margin-bottom: 0px;
  8. font-size: inherit;
  9. }
  10. .choices__list--multiple .choices__item {
  11. font-size: inherit;
  12. }
  13. /* Actual styling */
  14. .choices__list--multiple {
  15. display: flex;
  16. flex-wrap: wrap;
  17. }
  18. .choices__list--multiple .choices__item {
  19. background-color: maroon;
  20. border: 1px solid maroon;
  21. color: #fff;
  22. }
  23. .choices__list--multiple .choices__item.is-highlighted {
  24. background-color: #00a5bb;
  25. border: 1px solid #008fa1;
  26. }