select-list.less 636 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import "ui-variables";
  2. @import "octicon-mixins";
  3. .select-list {
  4. .loading {
  5. .loading-message {
  6. .octicon(hourglass);
  7. &:before {
  8. font-size: 1.1em;
  9. width: 1.1em;
  10. height: 1.1em;
  11. margin-right: 5px;
  12. }
  13. }
  14. .badge {
  15. margin-left: 10px;
  16. }
  17. }
  18. ol.list-group {
  19. position: relative;
  20. overflow-y: auto;
  21. max-height: 312px;
  22. margin: @component-padding 0 0 0;
  23. padding: 0;
  24. li {
  25. display: block;
  26. .primary-line,
  27. .secondary-line {
  28. text-overflow: ellipsis;
  29. white-space: nowrap;
  30. overflow: hidden;
  31. }
  32. }
  33. }
  34. }