testing some theme modifications
Some checks failed
Lint CSS / Lint CSS (push) Failing after 7s

This commit is contained in:
Seaswimmer 2023-11-01 21:05:23 -04:00
parent 54104368fc
commit fb07538789
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -14,6 +14,8 @@
/* Old Windows titlebar - remove this @import if you wish to use default titlebar */
@import url("https://gibbu.github.io/BetterDiscord-Themes/addons/windows-titlebar.css");
@import url(//dablulite.github.io/css-snippets/SuperUserArea/import.css);
:root {
/*
* Background image variables
@ -89,3 +91,15 @@
*/
--update-notice-1: none;
}
/* Custom CSS */
/* Add danger colours to dangerous user actions */
#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;
color: var(--white-500)!important;
}
#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);
}