EllipsisList.less 365 B

1234567891011121314151617181920212223242526
  1. .moreList {
  2. width: 90px;
  3. display: table;
  4. &:hover {
  5. cursor: pointer;
  6. }
  7. .more {
  8. width: 32px;
  9. height: 32px;
  10. display: table-cell;
  11. position: relative;
  12. }
  13. .more:after {
  14. width: 16px;
  15. height: 16px;
  16. background-color: #1B98E0;
  17. border-radius: 50%;
  18. position: absolute;
  19. top: 8px;
  20. left: 8px;
  21. content: '';
  22. }
  23. }