mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Moved to classes
This commit is contained in:
parent
ac255e0593
commit
67554037db
2 changed files with 15 additions and 11 deletions
|
@ -33,12 +33,12 @@
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectContainer-inline > .emby-select {
|
.selectContainer-inline>.emby-select {
|
||||||
padding: 0.3em 1.9em 0.3em 0.5em;
|
padding: 0.3em 1.9em 0.3em 0.5em;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectContainer-inline > .emby-select[disabled] {
|
.selectContainer-inline>.emby-select[disabled] {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emby-select + .fieldDescription {
|
.emby-select+.fieldDescription {
|
||||||
margin-top: 0.25em;
|
margin-top: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,12 +74,16 @@
|
||||||
margin-bottom: 0.25em;
|
margin-bottom: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectContainer-inline > .selectLabel {
|
.selectContainer-inline>.selectLabel {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.trackSelections>.selectContainer {
|
||||||
|
margin: 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
.emby-select-withcolor {
|
.emby-select-withcolor {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
|
@ -94,13 +98,13 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectContainer-inline > .selectArrowContainer {
|
.selectContainer-inline>.selectArrowContainer {
|
||||||
top: initial;
|
top: initial;
|
||||||
bottom: 0.24em;
|
bottom: 0.24em;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emby-select[disabled] + .selectArrowContainer {
|
.emby-select[disabled]+.selectArrowContainer {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,4 +115,4 @@
|
||||||
|
|
||||||
.emby-select-iconbutton {
|
.emby-select-iconbutton {
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
}
|
}
|
|
@ -116,14 +116,14 @@
|
||||||
<div class="genres hide" style="margin: .7em 0;font-size:92%;"></div>
|
<div class="genres hide" style="margin: .7em 0;font-size:92%;"></div>
|
||||||
<div class="directors hide" style="margin: .7em 0;font-size:92%;"></div>
|
<div class="directors hide" style="margin: .7em 0;font-size:92%;"></div>
|
||||||
|
|
||||||
<form class="trackSelections flex align-items-center flex-wrap-wrap hide focuscontainer-x" style="margin: .5em 0;font-size:92%; padding: 0;">
|
<form class="trackSelections flex align-items-center flex-wrap-wrap hide focuscontainer-x" style="padding:1em 0">
|
||||||
<div class="selectContainer selectContainer-inline selectSourceContainer hide trackSelectionFieldContainer flex-shrink-zero" style="margin-right:1.5em;">
|
<div class="selectContainer selectContainer-inline selectSourceContainer hide trackSelectionFieldContainer flex-shrink-zero">
|
||||||
<select is="emby-select" class="selectSource detailTrackSelect" label=""></select>
|
<select is="emby-select" class="selectSource detailTrackSelect" label=""></select>
|
||||||
</div>
|
</div>
|
||||||
<div class="selectContainer selectContainer-inline selectVideoContainer hide trackSelectionFieldContainer flex-shrink-zero" style="margin-right:1.5em;padding:1em 0">
|
<div class="selectContainer selectContainer-inline selectVideoContainer hide trackSelectionFieldContainer flex-shrink-zero">
|
||||||
<select is="emby-select" class="selectVideo detailTrackSelect" label=""></select>
|
<select is="emby-select" class="selectVideo detailTrackSelect" label=""></select>
|
||||||
</div>
|
</div>
|
||||||
<div class="selectContainer selectContainer-inline selectAudioContainer hide trackSelectionFieldContainer flex-shrink-zero" style="margin-right:1.5em;">
|
<div class="selectContainer selectContainer-inline selectAudioContainer hide trackSelectionFieldContainer flex-shrink-zero">
|
||||||
<select is="emby-select" class="selectAudio detailTrackSelect" label=""></select>
|
<select is="emby-select" class="selectAudio detailTrackSelect" label=""></select>
|
||||||
</div>
|
</div>
|
||||||
<div class="selectContainer selectContainer-inline selectSubtitlesContainer hide trackSelectionFieldContainer">
|
<div class="selectContainer selectContainer-inline selectSubtitlesContainer hide trackSelectionFieldContainer">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue