You are here

chosen-drupal.css in Chosen 7.3

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-multi .chosen-choices li.search-field input[type="text"] {
  10. height: auto;
  11. }
  12. .container-inline div.chosen-container {
  13. display: inline-block;
  14. }
  15. .container-inline div.chosen-container div {
  16. display: block;
  17. }
  18. /* Error handling. */
  19. .chosen-container.error .chosen-choices,
  20. .chosen-container.error .chosen-single {
  21. border: 2px solid red;
  22. }