mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
avatar popups enabled on mobile normal mode
This commit is contained in:
@ -5458,7 +5458,7 @@ $(document).ready(function () {
|
||||
|
||||
$(document).on('click', '.mes .avatar', function () {
|
||||
|
||||
if (window.innerWidth > 1000 || $('body').hasClass('waifuMode')) {
|
||||
//if (window.innerWidth > 1000 || $('body').hasClass('waifuMode')) {
|
||||
|
||||
let thumbURL = $(this).children('img').attr('src');
|
||||
let charsPath = '/characters/'
|
||||
@ -5473,7 +5473,7 @@ $(document).ready(function () {
|
||||
}
|
||||
$('#avatar_zoom_popup').toggle();
|
||||
|
||||
} else { return; }
|
||||
//} else { return; }
|
||||
});
|
||||
|
||||
$(document).on('click', '#OpenAllWIEntries', function () {
|
||||
|
@ -3967,6 +3967,12 @@ body.waifuMode #avatar_zoom_popup {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
body:not(.waifuMode) #avatar_zoom_popup {
|
||||
z-index: 999;
|
||||
width: fit-content;
|
||||
max-height: calc(60svh - 60px);
|
||||
}
|
||||
|
||||
body.waifuMode #avatar_zoom_popup {
|
||||
width: fit-content;
|
||||
max-height: calc(60svh - 60px);
|
||||
|
Reference in New Issue
Block a user