| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @media screen {
- body {
- caret-color: black;
- }
- .c {
- pointer-events: none;
- }
- .c .t {
- pointer-events: all;
- }
- img {
- cursor: default;
- pointer-events: none;
- }
- #page-container, #sidebar {
- padding-top: 44px;
- }
- #page-container ::selection {
- background-color: #08f;
- }
- .toolbar {
- position: fixed;
- top: 0px;
- left: 0px;
- right: 0px;
- }
- .btn svg {
- fill: currentColor;
- width: 1.5em;
- height: 1.5em;
- }
- /* Whiteout */
- .whiteout .pc, .whiteout .pc img {
- cursor: crosshair !important;
- }
- .whiteout-box {
- background-color: rgba(255, 255, 255, 0.75);
- border: dashed 1px black;
- position: absolute;
- pointer-events: none;
- }
- /* Edit Text */
- .pf {
- user-select: none;
- }
- .editText .pf {
- user-select: auto;
- }
- }
|