Fix vulnerable dependencies.

This commit is contained in:
Seraphim R. Pardee 2022-04-24 22:40:25 -04:00
parent d288b57fc2
commit 639df7450d
3 changed files with 766 additions and 2125 deletions

View File

@ -19,8 +19,8 @@
"css": "seraphimrp.css" "css": "seraphimrp.css"
}, },
"devDependencies": { "devDependencies": {
"stylelint": "^10.1.0", "stylelint": "^14.7.1",
"stylelint-config-standard": "^18.3.0" "stylelint-config-standard": "^25.0.0"
}, },
"scripts": { "scripts": {
"test": "stylelint seraphimrp.css", "test": "stylelint seraphimrp.css",

View File

@ -7,7 +7,7 @@
*/ */
/* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */ /* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */
::-webkit-input-placeholder { ::input-placeholder {
color: var(--body-color-muted); color: var(--body-color-muted);
} }
@ -35,15 +35,15 @@
} }
::-webkit-scrollbar-thumb:vertical { ::-webkit-scrollbar-thumb:vertical {
background: hsla(232, 14%, 31%, 0.4); background: hsl(232deg 14% 31% / 40%);
} }
::-webkit-scrollbar-thumb:vertical:hover { ::-webkit-scrollbar-thumb:vertical:hover {
background: hsla(232, 14%, 31%, 0.5); background: hsl(232deg 14% 31% / 50%);
} }
::-webkit-scrollbar-thumb:vertical:active { ::-webkit-scrollbar-thumb:vertical:active {
background: hsla(232, 14%, 31%, 0.6); background: hsl(232deg 14% 31% / 60%);
} }
html { html {
@ -176,7 +176,7 @@ body {
.btn:active, .btn:active,
.btn:focus, .btn:focus,
.input:focus { .input:focus {
box-shadow: 0 0 0 3px rgba(143, 188, 187, 0.5); box-shadow: 0 0 0 3px rgb(143 188 187 / 50%);
} }
.input:not(:disabled):focus, .input:not(:disabled):focus,
@ -339,7 +339,7 @@ body {
@media (max-width: 768px) { @media (max-width: 768px) {
#sidebar-overlay { #sidebar-overlay {
background: rgba(0, 0, 0, 0.8); background: rgb(0 0 0 / 80%);
} }
} }
@ -391,7 +391,7 @@ body {
/* personal modifications begin here */ /* personal modifications begin here */
body { body {
font: 16px JetBrains Mono; font: 16px "JetBrains Mono";
} }
#form, #form,

2873
yarn.lock

File diff suppressed because it is too large Load Diff