You are here

better_exposed_filters.css in Better Exposed Filters 8.3

Same filename and directory in other branches
  1. 8.5 css/better_exposed_filters.css
  2. 8.4 css/better_exposed_filters.css

better_exposed_filters.css

Basic styling for features added by Better Exposed Filters

File

css/better_exposed_filters.css
View source
  1. /**
  2. * @file
  3. * better_exposed_filters.css
  4. *
  5. * Basic styling for features added by Better Exposed Filters
  6. */
  7. .bef-exposed-form .form--inline .form-item {
  8. float: none;
  9. }
  10. .bef-exposed-form .form--inline > .form-item {
  11. float: left; /* LRT */
  12. }
  13. /*
  14. * Visually hiding the autosubmit button if the setting is set.
  15. * We're doing it this way, instead of the regular .js-hide dispay: none;
  16. * core way for two reasons:
  17. * - This way, the button is still visible for screenreaders
  18. * - There is an issue with Safari, where pressing enter in an textfield that
  19. * has display: none; does not trigger a ajax submit.
  20. */
  21. .js .js-bef-hide {
  22. position: absolute;
  23. left: -99999px;
  24. height: 0;
  25. width: 0;
  26. overflow: hidden;
  27. }
  28. /* Commenting out CSS additions until they are proven to be needed in D8. */
  29. /*
  30. * Prevents collapsed filters from disappearing completely
  31. fieldset.bef-select-as-radios-fieldset.collapsed legend,
  32. fieldset.bef-select-as-checkboxes-fieldset.collapsed legend
  33. {
  34. position: relative;
  35. }
  36. */
  37. /*
  38. * Styles for the jQuery UI slider widgets.
  39. .bef-slider.ui-slider-horizontal {
  40. margin-top: 6px;
  41. }
  42. .bef-slider.ui-slider-vertical {
  43. margin-top: 12px;
  44. }
  45. */