diff --git a/public/index.html b/public/index.html index 4470c3f52..0a8e6a7fd 100644 --- a/public/index.html +++ b/public/index.html @@ -2033,32 +2033,36 @@
-
+ Back to parent chat
-
+ Save bookmark
+ + + Convert to group + -
+ Start new chat
-
+ View past chats

-
+ Delete messages
-
+ Impersonate
-
+ Regenerate
diff --git a/public/scripts/bookmarks.js b/public/scripts/bookmarks.js index 102dbc8e4..0ab4f80aa 100644 --- a/public/scripts/bookmarks.js +++ b/public/scripts/bookmarks.js @@ -77,22 +77,26 @@ function showBookmarksButtons() { if (selected_group || !characters[this_chid].chat) { $("#option_back_to_main").hide(); $("#option_new_bookmark").hide(); + $("#option_convert_to_group").hide(); } // In main chat else if (!chat_metadata['main_chat']) { $("#option_back_to_main").hide(); $("#option_new_bookmark").show(); + $("#option_convert_to_group").show(); } // In bookmark chat else { $("#option_back_to_main").show(); $("#option_new_bookmark").show(); + $("#option_convert_to_group").show(); } } catch { $("#option_back_to_main").hide(); $("#option_new_bookmark").hide(); + $("#option_convert_to_group").hide(); } } diff --git a/public/style.css b/public/style.css index a8123c84d..b9927d98c 100644 --- a/public/style.css +++ b/public/style.css @@ -402,6 +402,14 @@ code { margin-bottom: 3px; } +.options-content i { + height: 20px; + width: 20px; + display: flex; + align-items: center; + justify-content: center; +} + .options-content hr { margin: 0; padding: 0;