edit.css 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .vdr {
  2. position: absolute;
  3. box-sizing: border-box;
  4. }
  5. .vdr.active:before{
  6. content: '';
  7. width: 100%;
  8. height: 100%;
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. box-sizing: border-box;
  13. outline: 1px dashed #333;
  14. }
  15. .vdr-stick {
  16. box-sizing: border-box;
  17. position: absolute;
  18. font-size: 1px;
  19. background: #ffffff;
  20. border: 1px solid #f00;
  21. box-shadow: 0 0 2px #bbb;
  22. }
  23. .inactive .vdr-stick {
  24. display: none;
  25. }
  26. .vdr-stick-tl {
  27. cursor: nwse-resize;
  28. top:0;
  29. }
  30. .vdr-stick-br{
  31. left:100%;
  32. top:100%;
  33. cursor: se-resize;
  34. }
  35. .vdr-stick-tm{
  36. top:0;
  37. left: 50%;
  38. cursor: ns-resize;
  39. }
  40. .vdr-stick-bm {
  41. left: 50%;
  42. cursor: ns-resize;
  43. }
  44. .vdr-stick-bl {
  45. cursor: nesw-resize;
  46. left: 0;
  47. bottom: 0;
  48. }
  49. .vdr-stick-tr{
  50. cursor: nesw-resize;
  51. top:0;
  52. right:0;
  53. }
  54. .vdr-stick-ml{
  55. top: 50%;
  56. cursor: ew-resize;
  57. }
  58. .vdr-stick-mr {
  59. right: 0;
  60. top:50%;
  61. cursor: ew-resize;
  62. }
  63. .vdr-stick.not-resizable{
  64. display: none;
  65. }