Added basic panel logic.

This commit is contained in:
rainbownapkin 2024-11-16 05:25:06 -05:00
parent 4168635c51
commit 3eccc6d24c
9 changed files with 184 additions and 1 deletions

View file

@ -77,6 +77,7 @@ div#chat-panel-div{
div#chat-panel-main-div{
display: flex;
position: relative;
flex: 1;
height: 1%;
}
@ -88,6 +89,7 @@ div#chat-panel-main-div{
bottom: 0;
left: 0;
width: 0.4em;
z-index: 8;
}
#chat-panel-multipanel-div{
@ -210,4 +212,37 @@ input#chat-panel-prompt{
#chat-panel-show-video-icon{
display: none;
}
#cpanel-active-div{
display: none;
position: absolute;
flex-direction: column;
overflow: hidden;
z-index: 3;
top: 0;
bottom: 0;
left: 0;
width: 30%;
}
#cpanel-active-header-div{
display: flex;
margin: 0 auto;
width: 96%;
height: 1.2em;
}
#cpanel-active-title{
margin: 0;
white-space: nowrap;
overflow: hidden;
}
#cpanel-active-title-spacer{
flex: 1;
}
#cpanel-active-close-icon{
cursor: pointer;
}