No Description

AudioPlayer.less 842B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @import "../../lessStyles/globalColor.less";
  2. .wrapper {
  3. max-width: 350px;
  4. background-color: #f5f5f5;
  5. border: 1px solid rgba(210, 210, 210, 1);
  6. border-radius: 4px;
  7. display: flex;
  8. align-items: center;
  9. max-height: 44px;
  10. height: 100%;
  11. .iconWrapper {
  12. cursor: pointer;
  13. width: 28px;
  14. height: 28px;
  15. line-height: 28px;
  16. text-align: center;
  17. border-radius: 14px;
  18. background-color: #fff;
  19. color: if(iscolor(@comment_green), @comment_green, green);;
  20. margin-left: 12px;
  21. font-size: 14px;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .audioSlider {
  27. margin: 0 0 0 16px;
  28. width: 195px;
  29. :global {
  30. .ant-slider-rail {
  31. background-color: #dfdfdf;
  32. }
  33. }
  34. }
  35. .timeText {
  36. margin-left: 14px;
  37. color: #848484;
  38. font-size: 12px;
  39. }
  40. }