edit.css 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @media screen {
  2. body {
  3. caret-color: black;
  4. }
  5. .c {
  6. pointer-events: none;
  7. }
  8. .c .t {
  9. pointer-events: all;
  10. }
  11. img {
  12. cursor: default;
  13. pointer-events: none;
  14. }
  15. #page-container, #sidebar {
  16. padding-top: 44px;
  17. }
  18. #page-container ::selection {
  19. background-color: #08f;
  20. }
  21. .toolbar {
  22. position: fixed;
  23. top: 0px;
  24. left: 0px;
  25. right: 0px;
  26. }
  27. .btn svg {
  28. fill: currentColor;
  29. width: 1.5em;
  30. height: 1.5em;
  31. }
  32. /* Whiteout */
  33. .whiteout .pc, .whiteout .pc img {
  34. cursor: crosshair !important;
  35. }
  36. .whiteout-box {
  37. background-color: rgba(255, 255, 255, 0.75);
  38. border: dashed 1px black;
  39. position: absolute;
  40. pointer-events: none;
  41. }
  42. /* Edit Text */
  43. .pf {
  44. user-select: none;
  45. }
  46. .editText .pf {
  47. user-select: auto;
  48. }
  49. }