TableForm.less 728 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @import "~antd/lib/style/themes/default.less";
  2. .editable {
  3. td {
  4. height: 32px;
  5. padding: 10px !important;
  6. }
  7. }
  8. /*
  9. .select {
  10. :global(.ant-select-selection) {
  11. border: unset;
  12. }
  13. }
  14. */
  15. .qrWrapper {
  16. position: relative;
  17. width: 100%;
  18. height: 100%;
  19. .qrBtn {
  20. z-index: 10;
  21. display: none;
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. width: 100%;
  26. height: 100%;
  27. a {
  28. position: relative;
  29. font-size: 10px;
  30. top: 30%;
  31. transform: translateY(-30%);
  32. padding: 5px 10px;
  33. background: #fff;
  34. color: #73777a;
  35. }
  36. }
  37. img {
  38. width: 50px;
  39. height: 50px;
  40. }
  41. &:hover {
  42. .qrBtn {
  43. display: block;
  44. background: rgba(0,193,222,.8);
  45. }
  46. }
  47. }