chosen.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .chosen-container {
  2. padding: 0 !important;
  3. border: 0 !important;
  4. }
  5. .chosen-container .chosen-drop {
  6. top: 38px !important;
  7. box-shadow: none;
  8. border-radius: 0 !important;
  9. flex-direction: column;
  10. border: 1px solid #d1d1d1;
  11. }
  12. .chosen-container-single .chosen-single,
  13. .chosen-container-multi .chosen-choices {
  14. background: #fcfcf9;
  15. border: 1px solid #d1d1d1;
  16. border-radius: 0;
  17. height: 40px;
  18. display: flex;
  19. align-items: center;
  20. box-shadow: none;
  21. }
  22. .chosen-container-single .chosen-search {
  23. width: 100%;
  24. }
  25. .chosen-container-single .chosen-single div b {
  26. background-position: 0 10px;
  27. }
  28. .chosen-container-active.chosen-with-drop .chosen-single div b {
  29. background-position: -18px 10px;
  30. }
  31. .chosen-container-active.chosen-with-drop .chosen-single {
  32. background: #fcfcf9;
  33. }
  34. .chosen-container .chosen-results {
  35. width: 100%;
  36. padding: 0 4px;
  37. }
  38. .chosen-container .chosen-results li {
  39. padding: 8px 6px;
  40. }
  41. .chosen-container .chosen-results li.highlighted {
  42. background-color: #0071b8;
  43. background-image: none;
  44. }
  45. .chosen-container-multi .chosen-choices {
  46. background-image: none;
  47. }
  48. .chosen-container-multi .chosen-choices li.search-choice {
  49. background-image: none;
  50. background-color: #e2e2e2;
  51. box-shadow: none;
  52. border: 0;
  53. }
  54. .chosen-container-active .chosen-choices {
  55. box-shadow: none;
  56. }
  57. .chosen-container-multi {
  58. width: 100% !important;
  59. }