linter fixes
Some checks failed
Lint CSS / Lint CSS (push) Failing after 1m1s

This commit is contained in:
Seaswimmer 2024-02-15 12:13:40 -05:00
parent f89a3b9c5d
commit 094434bf57
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -18,7 +18,7 @@
/* /*
* Background image variables * Background image variables
*/ */
--background-image: url("https://cdn.seaswimmer.cc/u/o856V4.jpg"); /* Main background image | URL MUST BE A DIRECT LINK (ending in .jpg, .jpeg, .png, .gif) */ --background-image: url("https://seafsh.cc/u/o856V4.jpg"); /* Main background image | URL MUST BE A DIRECT LINK (ending in .jpg, .jpeg, .png, .gif) */
--background-image-blur: 0px; /* Blur intensity of --background-image | Must end in px | DEFAULT: 5px */ --background-image-blur: 0px; /* Blur intensity of --background-image | Must end in px | DEFAULT: 5px */
--background-image-size: cover; /* Size of the background image | DEFAUT: cover | OPTIONS: cover, contain */ --background-image-size: cover; /* Size of the background image | DEFAUT: cover | OPTIONS: cover, contain */
--background-image-position: center; /* Position of background image | DEAFULT: center | OPTIONS: top, right, bottom, left, center */ --background-image-position: center; /* Position of background image | DEAFULT: center | OPTIONS: top, right, bottom, left, center */
@ -91,13 +91,16 @@
} }
/* Custom CSS */ /* Custom CSS */
/* Add danger colours to dangerous user actions */
#user-context-close-dm, #user-context-remove-friend, #user-context-block { color: var(--status-danger) } /* Add danger colours to dangerous user actions */
#user-context-close-dm:active, #user-context-remove-friend:active, #user-context-block:active { #user-context-close-dm, #user-context-remove-friend, #user-context-block { color: var(--status-danger) }
background-color: var(--red-500)!important;
color: var(--white-500)!important; #user-context-close-dm:active, #user-context-remove-friend:active, #user-context-block:active {
} background-color: var(--red-500)!important;
#user-context-close-dm[class*="focused-"], #user-context-remove-friend[class*="focused-"], #user-context-block[class*="focused-"] { color: var(--white-500)!important;
background-color: var(--button-danger-background); }
color: var(--white-500);
} #user-context-close-dm[class*="focused-"], #user-context-remove-friend[class*="focused-"], #user-context-block[class*="focused-"] {
background-color: var(--button-danger-background);
color: var(--white-500);
}