Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ <h3 id="chat-contact" class="cutoff chat-contact-with-status btn"></h3>
</div>
<span class="cutoff chat-contact-status status-hidden btn" id="chat-contact-status"></span>
</div>
<div id="chat-menu-btn" class="btn nav-menu-btn" title="Chat options">
<div id="chat-menu-btn" class="btn nav-menu-btn" title="Chat Options">
<span class="icon icon-dots-horizontal nav-icon"></span>
</div>
<!-- Wallpaper edit-mode overlay — mirrors the Profile edit bar,
Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6067,8 +6067,8 @@ async function removeWallpaper(chatId) {
if (!chatId) return;
const ok = await popupConfirm(
'Remove wallpaper?',
'This chat returns to the default Vector theme. The change syncs to your contact and your other devices.',
false,
'This will remove the wallpaper and revert to the default theme. This change syncs to your contact and your other devices.',
false, '', 'vector_warning.svg'
);
if (!ok) return;
try {
Expand Down
13 changes: 12 additions & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5758,6 +5758,7 @@ select {
button {
backdrop-filter: blur(6px);
cursor: pointer;
font-weight: 600;
}

button:active {
Expand Down Expand Up @@ -7494,6 +7495,8 @@ select:focus::-ms-value {

.icon-dots-horizontal {
mask-image: url("./icons/dots-horizontal.svg");
transform: scale(1.1);
filter: blur(0.5px);
}

/* For downloaded models - make it more prominent */
Expand Down Expand Up @@ -7586,10 +7589,14 @@ select:disabled:hover {
position: absolute;
top: 10px;
right: 0;
margin-right: 5px;
margin-right: 10px;
padding: 5px;
}

.nav-menu-btn .icon-dots-horizontal {
background-color: #b2b2b2;
}

/* Text-accompanied "Back" Navigation button */
.chat-new-back-text-btn {
display: flex;
Expand Down Expand Up @@ -15095,6 +15102,8 @@ hr {
}
.profile-switcher-trash-toggle svg {
transition: color 160ms ease;
width: 24px;
height: 24px;
}
body.profile-switcher-editing .profile-switcher-trash-toggle {
color: #e84545;
Expand Down Expand Up @@ -15217,6 +15226,8 @@ body.profile-switcher-editing .profile-switcher-row.active {
}
.profile-switcher-add svg {
flex-shrink: 0;
width: 24px;
height: 24px;
}
.profile-switcher-add.disabled {
color: rgba(255, 255, 255, 0.35);
Expand Down
Loading