fix: bugs in general
This commit is contained in:
@@ -109,7 +109,7 @@ textarea {
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: repeating-linear-gradient(45deg, #c0c0c0 0 2px, #b5b5b5 2px 4px);
|
||||
background: repeating-linear-gradient(45deg, #808080 0 2px, #8f8f8f 2px 4px);
|
||||
border-top: 1px solid #808080;
|
||||
border-left: 1px solid #808080;
|
||||
border-right: 1px solid #ffffff;
|
||||
@@ -126,8 +126,57 @@ textarea {
|
||||
box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button {
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
background-color: #c0c0c0;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 7px 7px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:vertical:decrement {
|
||||
background-image: linear-gradient(45deg, transparent 50%, #000000 50%), linear-gradient(135deg, #000000 50%, transparent 50%);
|
||||
background-position: 5px 6px, 8px 6px;
|
||||
background-size: 4px 4px, 4px 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:vertical:increment {
|
||||
background-image: linear-gradient(225deg, transparent 50%, #000000 50%), linear-gradient(315deg, #000000 50%, transparent 50%);
|
||||
background-position: 5px 7px, 8px 7px;
|
||||
background-size: 4px 4px, 4px 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:horizontal:decrement {
|
||||
background-image: linear-gradient(135deg, transparent 50%, #000000 50%), linear-gradient(45deg, #000000 50%, transparent 50%);
|
||||
background-position: 6px 5px, 6px 8px;
|
||||
background-size: 4px 4px, 4px 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:horizontal:increment {
|
||||
background-image: linear-gradient(315deg, transparent 50%, #000000 50%), linear-gradient(225deg, #000000 50%, transparent 50%);
|
||||
background-position: 7px 5px, 7px 8px;
|
||||
background-size: 4px 4px, 4px 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover,
|
||||
::-webkit-scrollbar-button:single-button:hover {
|
||||
background-color: #d0d0d0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:active,
|
||||
::-webkit-scrollbar-button:single-button:active {
|
||||
border-top-color: #000000;
|
||||
border-left-color: #000000;
|
||||
border-right-color: #ffffff;
|
||||
border-bottom-color: #ffffff;
|
||||
box-shadow: inset -1px -1px 0 #dfdfdf, inset 1px 1px 0 #808080;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background: #c0c0c0;
|
||||
border-top: 1px solid #808080;
|
||||
border-left: 1px solid #808080;
|
||||
}
|
||||
|
||||
.win98-button {
|
||||
@@ -231,10 +280,12 @@ textarea:disabled {
|
||||
.popup-body li { margin: 0 0 4px; }
|
||||
.popup-body .code-block {
|
||||
margin: 6px 0 10px;
|
||||
padding: 8px 8px 22px;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
overscroll-behavior: contain;
|
||||
padding: 8px;
|
||||
color: #00ff66;
|
||||
background: #000000;
|
||||
border: 0;
|
||||
@@ -243,13 +294,20 @@ textarea:disabled {
|
||||
line-height: 15px;
|
||||
white-space: pre;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
cursor: text;
|
||||
box-sizing: border-box;
|
||||
contain: layout paint;
|
||||
}
|
||||
|
||||
.popup-body .code-block::after {
|
||||
content: "\A";
|
||||
white-space: pre;
|
||||
.popup-body .code-block code {
|
||||
display: inline-block;
|
||||
min-width: 100%;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
white-space: inherit;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
|
||||
.copy-fallback-text {
|
||||
|
||||
@@ -284,6 +284,14 @@ body.fit-window .box-window {
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.preview-frame.is-text code {
|
||||
display: inline-block;
|
||||
min-width: 100%;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
white-space: inherit;
|
||||
}
|
||||
|
||||
.box-empty {
|
||||
margin: 0;
|
||||
padding: 12px;
|
||||
|
||||
@@ -775,7 +775,7 @@ body.fit-window .desktop-wrap {
|
||||
font-family: 'MonoCraft', 'PixelOperatorMono', 'Courier New', monospace;
|
||||
font-size: 13px;
|
||||
line-height: 16px;
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.terminal-box::after {
|
||||
@@ -910,10 +910,12 @@ body.fit-window .desktop-wrap {
|
||||
.popup-body li { margin: 0 0 4px; }
|
||||
.popup-body .code-block {
|
||||
margin: 6px 0 10px;
|
||||
padding: 8px;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
overscroll-behavior: contain;
|
||||
padding: 8px;
|
||||
color: #00ff66;
|
||||
background: #000000;
|
||||
border: 0;
|
||||
@@ -921,7 +923,10 @@ body.fit-window .desktop-wrap {
|
||||
font-size: 12px;
|
||||
line-height: 15px;
|
||||
white-space: pre;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
box-sizing: border-box;
|
||||
contain: layout paint;
|
||||
}
|
||||
|
||||
.popup-window.is-about-popup .popup-body {
|
||||
@@ -1064,13 +1069,18 @@ body.fit-window .desktop-wrap {
|
||||
|
||||
.popup-body .code-block {
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
cursor: text;
|
||||
padding-bottom: 22px;
|
||||
}
|
||||
|
||||
.popup-body .code-block::after {
|
||||
content: "\A";
|
||||
white-space: pre;
|
||||
.popup-body .code-block code {
|
||||
display: inline-block;
|
||||
min-width: 100%;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
white-space: inherit;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
|
||||
.kbd {
|
||||
|
||||
Reference in New Issue
Block a user