Added pop-out Canopy Panels.

Also added un-pin button to pinned Canopy Panel
This commit is contained in:
rainbownapkin 2024-11-16 12:34:24 -05:00
parent 9a17dc5c86
commit 3c185b4e28
10 changed files with 213 additions and 48 deletions

View file

@ -214,12 +214,6 @@ input#chat-panel-prompt{
display: none;
}
.cpanel-div{
display: none;
flex-direction: column;
overflow: hidden;
width: 30%;
}
#cpanel-active-div{
position: absolute;
z-index: 3;
@ -228,23 +222,7 @@ input#chat-panel-prompt{
left: 0;
}
.cpanel-header-div{
display: flex;
margin: 0 auto;
width: 96%;
height: 1.2em;
}
.cpanel-title{
margin: 0;
white-space: nowrap;
overflow: hidden;
}
.cpanel-title-spacer{
flex: 1;
}
.cpanel-header-icon{
cursor: pointer;
.cpanel-div{
display: none;
width: 30%;
}

25
www/css/panel.css Normal file
View file

@ -0,0 +1,25 @@
.cpanel-div{
flex-direction: column;
overflow: hidden;
}
.cpanel-header-div{
display: flex;
margin: 0 auto;
width: calc(100% - 0.5em);
height: 1.2em;
}
.cpanel-title{
margin: 0;
white-space: nowrap;
overflow: hidden;
}
.cpanel-title-spacer{
flex: 1;
}
.cpanel-header-icon{
cursor: pointer;
}