You are here

shs.formatter.css in Simple hierarchical select 8

Same filename and directory in other branches
  1. 2.0.x css/shs.formatter.css

Styles for formatted output of shs module.

File

css/shs.formatter.css
View source
  1. /**
  2. * @file
  3. * Styles for formatted output of shs module.
  4. */
  5. .item-list ul.shs {
  6. display: inline-block;
  7. list-style: none;
  8. margin: 0;
  9. padding: 0;
  10. }
  11. ul.shs li {
  12. float: left;
  13. padding: 0 5px 0 0;
  14. white-space: nowrap;
  15. }
  16. ul.shs li:after {
  17. content: '>';
  18. margin: 0 0 0 5px;
  19. }
  20. ul.shs li:last-of-type {
  21. padding-right: 0;
  22. }
  23. ul.shs li:last-of-type:after {
  24. content: '';
  25. margin: 0;
  26. }