Merge pull request #8 from prayag17/cssEditor

Few bug fix
This commit is contained in:
Daniel
2020-12-04 16:10:07 +01:00
committed by GitHub
3 changed files with 5 additions and 6 deletions

View File

@@ -42,7 +42,6 @@
loadSkins(); loadSkins();
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();
}); });
function loadSkins(){ function loadSkins(){
var cssOptions = document.getElementById("cssOptions"); var cssOptions = document.getElementById("cssOptions");
var skinVersions = document.getElementById("skinVersions"); var skinVersions = document.getElementById("skinVersions");
@@ -255,4 +254,4 @@
</div> </div>
</body> </body>
</html> </html>

View File

@@ -1,4 +1,4 @@
<h1 align="center">Jellyfin Theme Songs Plugin</h1> <h1 align="center">Jellyfin Skin Manager Plugin</h1>
<h3 align="center">Part of the <a href="https://jellyfin.media">Jellyfin Project</a></h3> <h3 align="center">Part of the <a href="https://jellyfin.media">Jellyfin Project</a></h3>
<p align="center"> <p align="center">

View File

@@ -220,15 +220,15 @@
{ {
"type": "number", "type": "number",
"name": "Border Radius", "name": "Border Radius",
"description": "Change the roundness of text box and more default is zero", "description": ":root {--rounding: 0px;}.formDialogHeader {border-top-left-radius: var(--rounding);border-top-right-radius: var(--rounding);}.formDialogFooter {border-bottom-left-radius: var(--rounding);border-bottom-right-radius: var(--rounding);}.cardOverlayContainer {border-radius: var(--rounding) !important;}.toast,.paperList,.cardContent,.sessionNowPlayingInnerContent, .listItem:hover, .cardImage,.fab,.multiSelectCheckboxOutline,.itemSelectionPanel,.cardContent-button, .cardContent-shadow, .itemDetailImage, .cardOverlayButton-hover,.cardImageContainer,.cardPadder,.listItemImage,.listItemImageButton,.listItemButton,.headerButton,.paper-icon-button-light,.innerCardFooter,.blurhash-canvas,.actionSheetMenuItem:hover,.dialog,.listItemIcon,.listItem-border,.button-flat,.visualCardBox,.checkboxOutline,.emby-select-withcolor,.chapterThumbTextContainer,.chapterThumbContainer,.chapterThumb,.emby-input, .emby-textarea, .emby-select-withcolor,.cardOverlayButtonIcon,.subtitleappearance-preview.flex.align-items-center.justify-content-center {border-radius: var(--rounding) !important;}.osdPoster img {border-radius: var(--rounding); border: none;}.mdl-slider::-moz-range-thumb {border-radius: var(--rounding);}.mdl-slider::-ms-thumb {border-radius: var(--rounding);}.mdl-slider::-webkit-slider-thumb {border-radius: var(--rounding);}div[data-role="controlgroup"] a[data-role="button"]:first-child {border-bottom-left-radius: var(--rounding);border-top-left-radius: var(--rounding);}div[data-role="controlgroup"] a[data-role="button"]:last-child {border-bottom-right-radius: var(--rounding);border-top-right-radius: var(--rounding);}",
"css": "@import url('https://prayag17.github.io/jellyfin-plugin-skin-manager/src/border-radius.css'); :root{--rounding: $px;}", "css": "",
"default":"0" "default":"0"
}, },
{ {
"type": "number", "type": "number",
"name": "Backdrop Blur", "name": "Backdrop Blur",
"description": "adds blur to the backdrop images default is zero", "description": "adds blur to the backdrop images default is zero",
"css": "@import url('https://prayag17.github.io/jellyfin-plugin-skin-manager/src/bgBlur.css'); :root{--bgblur: blur($px)}", "css": ":root{--bgblur: blur($px)}.backdropImage {filter: var(--bgblur);}.backgroundContainer.withBackdrop {background-color: rgba(0,0,0,0);}",
"default": "0" "default": "0"
} }
] ]