lists.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .list-like-table {
  2. border: 1px solid @hr-border;
  3. border-radius: @border-radius-base;
  4. list-style: none;
  5. margin: 0;
  6. padding: 0 @padding-sm;
  7. li {
  8. border-top: 1px solid @hr-border;
  9. div {
  10. display: table-cell;
  11. float: none;
  12. vertical-align: middle;
  13. }
  14. .row {
  15. display: table;
  16. margin: 0;
  17. width: 100%;
  18. }
  19. &:first-child {
  20. border-top: 0;
  21. }
  22. }
  23. }
  24. .list-style-check-green {
  25. list-style-image: url('../../../public/img/fa-check-green.svg');
  26. }
  27. .icon-bullet-list {
  28. @icon-bullet-list-icon-size: 30px;
  29. ul {
  30. list-style: none;
  31. margin-top: 30px;
  32. padding-left: 20px;
  33. }
  34. &.checked {
  35. li {
  36. background: url('../../../public/img/material-icons/circle-green-24.svg')
  37. no-repeat left top;
  38. background-size: @icon-bullet-list-icon-size @icon-bullet-list-icon-size;
  39. min-height: @icon-bullet-list-icon-size;
  40. margin-bottom: 18px;
  41. padding-left: 42px;
  42. &:first-line {
  43. line-height: @icon-bullet-list-icon-size;
  44. }
  45. }
  46. }
  47. }