Update BlurpleRecolor.css

This commit is contained in:
Mirco Wittrien 2022-08-14 13:04:28 +02:00
parent b73d3c8b5b
commit ad7edc3188
1 changed files with 37 additions and 0 deletions

View File

@ -2606,6 +2606,43 @@ input.input-2g-os5 { /* textinput */
background: var(--accentcolor-active) !important;
}
#bd-editor-controls .checkboxInner-3yjcPe {
position: relative;
cursor: pointer;
}
#bd-editor-controls .checkboxElement-1qV33p {
visibility: hidden;
}
#bd-editor-controls .checkboxElement-1qV33p + span {
position: absolute;
display: block;
top: -2px;
left: -1px;
width: 12px;
height: 12px;
margin: 3px 3px 3px 4px;
border-radius: 2px;
pointer-events: none;
}
#bd-editor-controls .checkboxElement-1qV33p:not(:checked) + span {
border: 1px solid var(--header-primary);
}
#bd-editor-controls .checkboxElement-1qV33p:checked + span {
background: rgb(var(--accentcolor));
}
#bd-editor-controls .checkboxElement-1qV33p:checked + span:before {
content: "";
display: block;
position: relative;
top: 1px;
left: 4px;
width: 2px;
height: 6px;
transform: rotate(45deg);
border-right: 2px solid white;
border-bottom: 2px solid white;
}
html .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
outline-color: rgb(var(--accentcolor));
}