mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Modified a fire other inline entries
This commit is contained in:
parent
d4202e0279
commit
99ddfbd33c
@ -732,9 +732,9 @@
|
||||
.layout-mobile .itemName,
|
||||
.layout-mobile .itemMiscInfo,
|
||||
.layout-mobile .mainDetailButtons {
|
||||
align-items: center !important;
|
||||
justify-content: center !important;
|
||||
text-align: center !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.layout-mobile .mainDetailButtons {
|
||||
@ -798,16 +798,14 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
[dir="ltr"] & {
|
||||
.layout-desktop &,
|
||||
.layout-tv & {
|
||||
.layout-desktop &,
|
||||
.layout-tv & {
|
||||
[dir="ltr"] & {
|
||||
padding-left: 32.45vw;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
.layout-desktop &,
|
||||
.layout-tv & {
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
padding-right: 32.45vw;
|
||||
}
|
||||
}
|
||||
@ -829,18 +827,18 @@
|
||||
flex: 1 0 0;
|
||||
|
||||
.layout-mobile & {
|
||||
@include header-poster-padding;
|
||||
[dir="ltr"] {
|
||||
@include header-poster-padding;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
@include header-poster-padding-rtl;
|
||||
}
|
||||
|
||||
@media all and (max-width: 32em) {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
.layout-mobile & {
|
||||
@include header-poster-padding-rtl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.infoText {
|
||||
|
@ -83,8 +83,15 @@
|
||||
}
|
||||
|
||||
.listViewDragHandle {
|
||||
margin-inline-start: -0.25em !important;
|
||||
touch-action: none;
|
||||
|
||||
[dir="ltr"] & {
|
||||
margin-left: -0.25em !important;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
margin-right: -0.25em !important;
|
||||
}
|
||||
}
|
||||
|
||||
.listItemBody {
|
||||
|
@ -120,7 +120,7 @@ import template from './mediaLibraryCreator.template.html';
|
||||
|
||||
function getFolderHtml(pathInfo, index) {
|
||||
let html = '';
|
||||
html += '<div class="listItem listItem-border lnkPath" style="padding-left:.5em;">';
|
||||
html += '<div class="listItem listItem-border lnkPath">';
|
||||
html += `<div class="${pathInfo.NetworkPath ? 'listItemBody two-line' : 'listItemBody'}">`;
|
||||
html += `<div class="listItemBodyText" dir="ltr">${escapeHtml(pathInfo.Path)}</div>`;
|
||||
|
||||
|
@ -110,7 +110,7 @@ import template from './mediaLibraryEditor.template.html';
|
||||
|
||||
function getFolderHtml(pathInfo, index) {
|
||||
let html = '';
|
||||
html += `<div class="listItem listItem-border lnkPath" data-index="${index}" style="padding-inline-start:.5em;">`;
|
||||
html += `<div class="listItem listItem-border lnkPath" data-index="${index}">`;
|
||||
html += `<div class="${pathInfo.NetworkPath ? 'listItemBody two-line' : 'listItemBody'}">`;
|
||||
html += '<h3 class="listItemBodyText">';
|
||||
html += escapeHtml(pathInfo.Path);
|
||||
|
@ -59,7 +59,6 @@
|
||||
}
|
||||
|
||||
.mediaInfoCriticRating {
|
||||
background-position: left center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto 1.2em;
|
||||
min-height: 1.2em;
|
||||
@ -68,6 +67,7 @@
|
||||
|
||||
[dir="ltr"] & {
|
||||
padding-left: 1.5em;
|
||||
background-position: left center;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
|
@ -17,6 +17,7 @@ import '../../elements/emby-button/paper-icon-button-light';
|
||||
import '../formdialog.scss';
|
||||
import '../../assets/css/clearbutton.scss';
|
||||
import '../../assets/css/flexstyles.scss';
|
||||
import './style.scss';
|
||||
import ServerConnections from '../ServerConnections';
|
||||
import toast from '../toast/toast';
|
||||
import { appRouter } from '../appRouter';
|
||||
|
@ -3,7 +3,7 @@
|
||||
<h3 class="formDialogHeaderTitle">
|
||||
${Edit}
|
||||
</h3>
|
||||
<div style="margin-inline-start: auto;" class="flex align-items-center justify-content-center">
|
||||
<div class="dialogHeader flex align-items-center justify-content-center">
|
||||
<button is="emby-button" type="button" class="btnHeaderSave button-accent-flat button-flat hide" tabindex="-1">
|
||||
<span class="material-icons check" aria-hidden="true"></span>
|
||||
<span>${Save}</span>
|
||||
@ -194,7 +194,7 @@
|
||||
<h2 style="margin:.6em 0;vertical-align:middle;display:inline-block;">
|
||||
${Genres}
|
||||
</h2>
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit" style="margin-inline-start:1em;" title="${Add}">
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit marginLeft" title="${Add}">
|
||||
<span class="material-icons add" aria-hidden="true"></span>
|
||||
</button>
|
||||
<div class="paperList" id="listGenres"></div>
|
||||
@ -203,7 +203,7 @@
|
||||
<h2 style="margin:.6em 0;vertical-align:middle;display:inline-block;">
|
||||
${People}
|
||||
</h2>
|
||||
<button is="emby-button" type="button" id="btnAddPerson" class="fab btnAddPerson" style="margin-inline-start:1em;" title="${Add}">
|
||||
<button is="emby-button" type="button" id="btnAddPerson" class="fab btnAddPerson marginLeft" title="${Add}">
|
||||
<span class="material-icons add" aria-hidden="true"></span>
|
||||
</button>
|
||||
<div id="peopleList" class="paperList">
|
||||
@ -213,7 +213,7 @@
|
||||
<h2 style="margin:.6em 0;vertical-align:middle;display:inline-block;">
|
||||
${Studios}
|
||||
</h2>
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit" style="margin-inline-start:1em;" title="${Add}">
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit marginLeft" title="${Add}">
|
||||
<span class="material-icons add" aria-hidden="true"></span>
|
||||
</button>
|
||||
<div class="paperList" id="listStudios"></div>
|
||||
@ -222,7 +222,7 @@
|
||||
<h2 style="margin:.6em 0;vertical-align:middle;display:inline-block;">
|
||||
${Tags}
|
||||
</h2>
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit" style="margin-inline-start:1em;" title="${Add}">
|
||||
<button is="emby-button" type="button" class="fab btnAddTextItem submit marginLeft" title="${Add}">
|
||||
<span class="material-icons add" aria-hidden="true"></span>
|
||||
</button>
|
||||
<div class="paperList" id="listTags"></div>
|
||||
|
19
src/components/metadataEditor/style.scss
Normal file
19
src/components/metadataEditor/style.scss
Normal file
@ -0,0 +1,19 @@
|
||||
.dialogHeader {
|
||||
[dir="ltr"] & {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.marginLeft {
|
||||
[dir="ltr"] & {
|
||||
margin-left:1em;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
margin-right:1em;
|
||||
}
|
||||
}
|
@ -310,7 +310,10 @@ import cardBuilder from '../../components/cardbuilder/cardBuilder';
|
||||
html += '<div class="cardFooter visualCardBox-cardFooter">'; // always show menu unless explicitly hidden
|
||||
|
||||
if (virtualFolder.showMenu !== false) {
|
||||
html += '<div style="text-align:end; float:inline-end;padding-top:5px;">';
|
||||
let dirTextAlign = 'right';
|
||||
if (globalize.getIsRTL())
|
||||
dirTextAlign = 'left';
|
||||
html += '<div style="text-align:' + dirTextAlign + '; float:' + dirTextAlign + ';padding-top:5px;">';
|
||||
html += '<button type="button" is="paper-icon-button-light" class="btnCardMenu autoSize"><span class="material-icons more_vert" aria-hidden="true"></span></button>';
|
||||
html += '</div>';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user