fix: relocate information panel expand button bump:patch
This commit is contained in:
@@ -95,6 +95,7 @@ button.selected {
|
||||
flex-wrap: unset;
|
||||
overflow-y: scroll !important;
|
||||
position: sticky;
|
||||
min-width: min(305px, 100%) !important;
|
||||
}
|
||||
|
||||
.setting-answer-mode-description {
|
||||
@@ -160,13 +161,13 @@ mark {
|
||||
#toggle-dark-button {
|
||||
position: fixed;
|
||||
top: 6px;
|
||||
right: 60px;
|
||||
right: 30px;
|
||||
}
|
||||
|
||||
#info-expand-button {
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 85px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
#new-conv-button > img {
|
||||
@@ -175,6 +176,10 @@ mark {
|
||||
right: -50%;
|
||||
}
|
||||
|
||||
span.icon {
|
||||
color: #cecece;
|
||||
}
|
||||
|
||||
.upload-button {
|
||||
display: none;
|
||||
}
|
||||
|
@@ -11,6 +11,11 @@ function run() {
|
||||
version_node.style = "position: fixed; top: 10px; right: 10px;";
|
||||
main_parent.appendChild(version_node);
|
||||
|
||||
// move info-expand-button
|
||||
let info_expand_button = document.getElementById("info-expand-button");
|
||||
let chat_info_panel = document.getElementById("info-expand");
|
||||
chat_info_panel.insertBefore(info_expand_button, chat_info_panel.childNodes[2]);
|
||||
|
||||
// clpse
|
||||
globalThis.clpseFn = (id) => {
|
||||
var obj = document.getElementById('clpse-btn-' + id);
|
||||
|
Reference in New Issue
Block a user