This commit is contained in:
parent
f89a3b9c5d
commit
094434bf57
1 changed files with 14 additions and 11 deletions
|
@ -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) }
|
||||||
|
|
||||||
|
#user-context-close-dm:active, #user-context-remove-friend:active, #user-context-block:active {
|
||||||
background-color: var(--red-500)!important;
|
background-color: var(--red-500)!important;
|
||||||
color: var(--white-500)!important;
|
color: var(--white-500)!important;
|
||||||
}
|
}
|
||||||
#user-context-close-dm[class*="focused-"], #user-context-remove-friend[class*="focused-"], #user-context-block[class*="focused-"] {
|
|
||||||
|
#user-context-close-dm[class*="focused-"], #user-context-remove-friend[class*="focused-"], #user-context-block[class*="focused-"] {
|
||||||
background-color: var(--button-danger-background);
|
background-color: var(--button-danger-background);
|
||||||
color: var(--white-500);
|
color: var(--white-500);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue