1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Some library rtl fixes

This commit is contained in:
Hadi Charara 2022-07-04 11:56:38 -04:00
parent 5301a98ea1
commit 7b1afeef82
4 changed files with 60 additions and 10 deletions

View file

@ -107,7 +107,7 @@
}
.alphaPicker-fixed-right {
right: 0.4em;
inset-inline-end: 0.4em;
}
@media all and (min-width: 62.5em) {
@ -116,6 +116,15 @@
}
}
[dir="rtl"] {
@media all and (min-width: 62.5em) {
.alphaPicker-fixed-right {
right: unset;
left: 1em;
}
}
}
@media all and (max-height: 31.25em) {
.alphaPicker-fixed {
display: none !important;

View file

@ -149,7 +149,7 @@ import ServerConnections from '../ServerConnections';
elem.classList.add('listItemBodyText');
elem.innerText = text;
elem.innerHTML = '<bdi>' + text + '</bdi>';
html += elem.outerHTML;
}
@ -422,7 +422,7 @@ import ServerConnections from '../ServerConnections';
if (enableOverview && item.Overview) {
html += '<div class="secondary listItem-overview listItemBodyText">';
html += item.Overview;
html += '<bdi>' + item.Overview + '</bdi>';
html += '</div>';
}