index.less 873 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .form-drawing-table{
  2. user-select: none;
  3. position: relative;
  4. background-color: rgba(236,245,255,.3);
  5. border: 1px dashed #999;
  6. margin: 2px;
  7. padding: 1px;
  8. &.is-active{
  9. border: 1px solid @warning;
  10. outline: 2px solid @warning;
  11. >.show-focus{
  12. visibility: visible;
  13. }
  14. .handle-icon{
  15. padding: 4px;
  16. color: #fff;
  17. background-color: @warning;
  18. }
  19. }
  20. .item-field-key{
  21. color: @success;
  22. }
  23. .show-focus{
  24. visibility: hidden;
  25. line-height: 1em;
  26. }
  27. .handle-icon{
  28. cursor: pointer;
  29. }
  30. .move-icon{
  31. cursor: move;
  32. position: absolute;
  33. top: 0;
  34. left:0;
  35. z-index: 1;
  36. }
  37. .right-top{
  38. position: absolute;
  39. right: 0;
  40. top: 0;
  41. z-index: 1;
  42. }
  43. .right-bottom{
  44. position: absolute;
  45. right: 0;
  46. bottom: 0;
  47. z-index: 1;
  48. }
  49. }