You are here

chosen-drupal.css in Chosen 3.0.x

Drupal-specific CSS fixes for the Chosen module

File

css/chosen-drupal.css
View source
  1. /**
  2. * @file
  3. * Drupal-specific CSS fixes for the Chosen module
  4. */
  5. .chosen-container.error .chosen-single,
  6. .chosen-container.error .chosen-single span {
  7. line-height: inherit;
  8. }
  9. .chosen-container-single .chosen-search {
  10. display: block;
  11. }
  12. .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  13. height: auto;
  14. }
  15. .chosen-container {
  16. display: inline-block !important;
  17. }
  18. .container-inline div.chosen-container div:not(.chosen-drop) {
  19. display: block;
  20. }
  21. /* Error handling. */
  22. .chosen-container.error .chosen-choices,
  23. .chosen-container.error .chosen-single {
  24. border: 2px solid red;
  25. }
  26. .filter-wrapper {
  27. overflow: visible !important;
  28. }
  29. .filter-wrapper:after {
  30. content: "";
  31. display: block;
  32. clear: both;
  33. }