| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @media screen {
- body {
- caret-color: black;
- background-color: black;
- }
- .saving {
- opacity: .5;
- }
- .saving * {
- pointer-events: none!important;
- }
- .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;
- }
- }
|