Added clickDragger to active and pinned cPanels.

This commit is contained in:
rainbownapkin 2024-11-16 15:36:09 -05:00
parent 3c185b4e28
commit b994f58bd0
6 changed files with 48 additions and 10 deletions

View file

@ -17,6 +17,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
:root{
--main-font: "open-sans", sans-serif;
--bg0: rgb(158, 158, 158);
--bg0-alpha0: rgba(158, 158, 158, 0.75);
--bg1: rgb(70, 70, 70);
--bg2: rgb(220, 220, 220);
--bg1-alt0: rgb(30, 30, 30);
@ -41,6 +42,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
--userlist-color6:rgb(111, 61, 204);
--media-header-gradient: linear-gradient(180deg, var(--bg1-alt0) 0%, #FFFFFF00 76%);
/*--active-panel-effect: blur(1em);*/
--active-panel-effect: none;
}
body{
@ -244,6 +248,11 @@ select.panel-head-element{
margin: auto;
}
#cpanel-active-div{
background-color: var(--bg0-alpha0);
backdrop-filter: var(--active-panel-effect);
}
.cpanel-div{
background-color: var(--bg0);
}