Fix ServiceWorker, update MBViewer, misc app fixes

This commit is contained in:
2024-07-01 20:45:14 +02:00
parent d481847470
commit 53204d067b
8 changed files with 172 additions and 33 deletions

View File

@ -14,3 +14,33 @@ div.tgme_widget_message_text > div.MbPost * {
div.tgme_widget_message_text > div.MbPost figure {
margin: 1em;
}
section.tgme_right_column > div.tgme_channel_info {
overflow-y: auto;
width: calc(100% - 36px);
}
main.tgme_main > div.ChatList div.ChatButton {
background-color: var(--bubble-bgcolor);
margin-top: 4px;
}
main.tgme_main > div.ChatList div.ChatButton > a {
display: flex;
}
main.tgme_main > div.ChatList div.ChatButton > a > * {
float: left;
}
main.tgme_main > div.ChatList div.ChatButton > a > i.tgme_widget_message_user_photo {
margin: 4px;
background-color: unset;
}
main.tgme_main > div.ChatList div.ChatButton > a > span {
display: block;
padding-top: 0.8em;
padding-left: 4px;
}

View File

@ -3,9 +3,11 @@ body {
color: black;
}
img {
max-width: 100%;
img, video, iframe {
max-width: 40em;
max-height: 30em;
height: auto;
width: auto;
}
div.tgme_background_wrap,
@ -35,3 +37,9 @@ div.tgme_widget_message_footer a {
width: 36px;
height: 36px;
}
div.tgme_widget_message_wrap {
border-top: 2px solid black;
margin-top: 16px;
margin-bottom: 8px;
}