No Description

ItemToolBar.less 823B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @import "../../lessStyles/globalColor.less";
  2. .wrapper {
  3. display: flex;
  4. justify-content: flex-end;
  5. align-items: center;
  6. .toolsItem {
  7. margin-left: 8px;
  8. margin-right: 8px;
  9. display: flex;
  10. cursor: pointer;
  11. .btnCount {
  12. margin-left: 2px;
  13. }
  14. .replyBtn {
  15. cursor: pointer;
  16. color: if(iscolor(@comment_blue), @comment_blue, blue);
  17. &:hover {
  18. color: lighten(if(iscolor(@comment_blue), @comment_blue, blue), 10%);
  19. }
  20. }
  21. &.favorBtnWrapper {
  22. min-width: 32px;
  23. .iconWrapper {
  24. min-width: 20px;
  25. display: inline-flex;
  26. }
  27. }
  28. }
  29. .replyCollapseBtn {
  30. cursor: pointer;
  31. color: if(iscolor(@comment_green), @comment_green, green);
  32. &:hover {
  33. color: if(iscolor(@comment_blue), @comment_blue, blue);
  34. }
  35. }
  36. }