Compare commits
39 Commits
Fix-font-s
...
2.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84c4462648 | ||
|
|
a970349a1f | ||
|
|
deeb8976f6 | ||
|
|
a00e8b6352 | ||
|
|
4b63aa0c8c | ||
|
|
59a46ae222 | ||
|
|
03b7f0bc25 | ||
|
|
781ef1c9f8 | ||
|
|
6364927f99 | ||
|
|
cd8d71ada7 | ||
|
|
247175d753 | ||
|
|
94f7473108 | ||
|
|
f41d67cf39 | ||
|
|
68e00efcca | ||
|
|
fc8b88ee6b | ||
|
|
57c422ff87 | ||
|
|
d2f65e0060 | ||
|
|
c15c47111b | ||
|
|
438f1bd2fa | ||
|
|
e31d0e4c13 | ||
|
|
7b0ebf6e32 | ||
|
|
4d58525fa6 | ||
|
|
0be80d9956 | ||
|
|
5e10675eea | ||
|
|
426782031b | ||
|
|
814d84f4e6 | ||
|
|
82cdcd904a | ||
|
|
edac2f8254 | ||
|
|
1758ffead2 | ||
|
|
76cbeef6a1 | ||
|
|
b24f0d4b8c | ||
|
|
13383919ca | ||
|
|
583db6ea3d | ||
|
|
0317cc7ef2 | ||
|
|
ddfb13cf18 | ||
|
|
b334cc04df | ||
|
|
c369e8942f | ||
|
|
f696f71b55 | ||
|
|
f7759d1418 |
File diff suppressed because one or more lines are too long
8508
Jellyfin.Plugin.SkinManager/Configuration/fontpicker.js
Normal file
8508
Jellyfin.Plugin.SkinManager/Configuration/fontpicker.js
Normal file
File diff suppressed because it is too large
Load Diff
@@ -3,8 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.1</TargetFramework>
|
<TargetFramework>netstandard2.1</TargetFramework>
|
||||||
<IsPackable>true</IsPackable>
|
<IsPackable>true</IsPackable>
|
||||||
<AssemblyVersion>1.5.0</AssemblyVersion>
|
<AssemblyVersion>2.0.1</AssemblyVersion>
|
||||||
<FileVersion>1.5.0</FileVersion>
|
<FileVersion>2.0.1</FileVersion>
|
||||||
<Authors />
|
<Authors />
|
||||||
<Company />
|
<Company />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@@ -16,6 +16,9 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Remove="Configuration\configurationpage.html" />
|
<None Remove="Configuration\configurationpage.html" />
|
||||||
<EmbeddedResource Include="Configuration\configurationpage.html" />
|
<EmbeddedResource Include="Configuration\configurationpage.html" />
|
||||||
|
|
||||||
|
<None Remove="Configuration\fontpicker.js" />
|
||||||
|
<EmbeddedResource Include="Configuration\fontpicker.js" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -34,6 +34,16 @@ namespace Jellyfin.Plugin.SkinManager
|
|||||||
{
|
{
|
||||||
Name = "SkinManager",
|
Name = "SkinManager",
|
||||||
EmbeddedResourcePath = GetType().Namespace + ".Configuration.configurationpage.html"
|
EmbeddedResourcePath = GetType().Namespace + ".Configuration.configurationpage.html"
|
||||||
|
},
|
||||||
|
new PluginPageInfo
|
||||||
|
{
|
||||||
|
Name = "fontpicker.js",
|
||||||
|
EmbeddedResourcePath = GetType().Namespace + ".Configuration.fontpicker.js"
|
||||||
|
},
|
||||||
|
new PluginPageInfo
|
||||||
|
{
|
||||||
|
Name = "fontpicker.css",
|
||||||
|
EmbeddedResourcePath = GetType().Namespace + ".Configuration.jquery.fontpicker.min.css"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
This will not work if you have installed jellyfin to a custom location
|
@ECHO OFF
|
||||||
|
@echo This will not work if you have installed jellyfin to a custom location
|
||||||
|
set /p ask = Enter 'X' to continue or 'C' to cancel:
|
||||||
|
if "%ask%" neq "x" goto:eof
|
||||||
|
|
||||||
|
@echo starting install...
|
||||||
|
|
||||||
dotnet publish --configuration Release --output bin
|
dotnet publish --configuration Release --output bin
|
||||||
|
|
||||||
move bin\Jellyfin.Plugin.SkinManager.dll C:\ProgramData\Jellyfin\Server\plugins\SkinManager
|
move bin\Jellyfin.Plugin.SkinManager.dll C:\ProgramData\Jellyfin\Server\plugins\SkinManager
|
||||||
589
skins-3.0.json
589
skins-3.0.json
@@ -1,61 +1,416 @@
|
|||||||
[
|
[{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"author": "Jellyfin",
|
"author": "Jellyfin",
|
||||||
"description": "Default, stock, Jellyfin.",
|
"description": "Default, stock, Jellyfin.",
|
||||||
"defaultCss": "",
|
"defaultCss": "",
|
||||||
"previews": [
|
"previews": [{
|
||||||
{
|
|
||||||
"name": "Login Page",
|
"name": "Login Page",
|
||||||
"url": ""
|
"url": "https://raw.githubusercontent.com/danieladov/jellyfin-plugin-skin-manager/master/src/img/Default/1.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Home/Index Page",
|
"name": "Home/Index Page",
|
||||||
"url": ""
|
"url": "https://raw.githubusercontent.com/danieladov/jellyfin-plugin-skin-manager/master/src/img/Default/2.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Library Page",
|
"name": "Library Page",
|
||||||
"url": ""
|
"url": "https://raw.githubusercontent.com/danieladov/jellyfin-plugin-skin-manager/master/src/img/Default/3.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Title page",
|
"name": "Title page",
|
||||||
"url": ""
|
"url": "https://raw.githubusercontent.com/danieladov/jellyfin-plugin-skin-manager/master/src/img/Default/4.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": []
|
"options": []
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JellySkin",
|
||||||
|
"author": "prayagprajapati17",
|
||||||
|
"description": "A very bright and colorful look using lots of drop shadows. Theme is by prayag17.",
|
||||||
|
"defaultCss": "@import url('https://prayag17.github.io/JellySkin/default.css');",
|
||||||
|
"previews": [{
|
||||||
|
"name": "Login Page",
|
||||||
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellySkin/img/login.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Home/Index Page",
|
||||||
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellySkin/img/Home.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Library Page",
|
||||||
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellySkin/img/Movies.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Title page",
|
||||||
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellySkin/img/Title%20Page-Movie.jpg"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [{
|
||||||
|
"name": "Default",
|
||||||
|
"options": [{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Gradient",
|
||||||
|
"description": "Changes the Jellyfin themed Hover gradient",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/$.css');",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Default",
|
||||||
|
"value": "",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/default.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sea Gradient",
|
||||||
|
"value": "seaGradient",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Gradients/seaGradient.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sunset Gradient",
|
||||||
|
"value": "sunsetGradient",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Gradients/sunsetGradient.css');"
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mauve Gradient",
|
||||||
|
"value": "morningGradient",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Gradients/mauveGradient.css');"
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Night Sky Gradient",
|
||||||
|
"value": "nightSkyGradient",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Gradients/nightSkyGradient.css');"
|
||||||
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Theme Logo",
|
||||||
|
"description": "Styles title page in such a way in which logos are used instead of Names.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Logo.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "JellyFlix",
|
"name": "JellyFlix",
|
||||||
"author": "prayagprajapati17",
|
"author": "prayagprajapati17",
|
||||||
"description": "A theme that aims to replicate the red and black look of Netflix. Theme is by prayag17.",
|
"description": "A theme that aims to replicate the red and black look of Netflix. Theme is by prayag17.",
|
||||||
"defaultCss": "@import url(https://prayag17.github.io/JellyFlix/default.css);",
|
"defaultCss": "@import url(https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/default.css);",
|
||||||
"previews": [
|
"previews": [{
|
||||||
{
|
|
||||||
"name": "Login Page",
|
"name": "Login Page",
|
||||||
"url": "https://github.com/prayag17/JellyFlix/raw/main/Public%20Ver%201/LoginMan.png?raw=true"
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/img/Login.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Home/Index Page",
|
"name": "Home/Index Page",
|
||||||
"url": "https://github.com/prayag17/JellyFlix/raw/main/Public%20Ver%201/Home.png?raw=true"
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/img/Home.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Library Page",
|
"name": "Library Page",
|
||||||
"url": "https://github.com/prayag17/JellyFlix/raw/main/Public%20Ver%201/LibPage.png?raw=true"
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/img/Movies.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Title page",
|
"name": "Title page",
|
||||||
"url": "https://github.com/prayag17/JellyFlix/raw/main/Public%20Ver%201/TV-TitlePage.png?raw=true"
|
"url": "https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/img/Title%20Page-TV.jpg"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": []
|
"options": [{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Theme Logo",
|
||||||
|
"description": "Styles title page in such a way in which logos are used instead of Names.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/addons/Logo.css');"
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ultrachromic",
|
||||||
|
"author": "Casper Talvio",
|
||||||
|
"description": "The final form, the true evolution of the chromic theme saga! The old trilogy of chromic themes are deprecated, as their appearances can be replicated using Ultrachromic.",
|
||||||
|
"defaultCss": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/base.css');@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/accentlist.css');",
|
||||||
|
"previews": [{
|
||||||
|
"name": "Login Page",
|
||||||
|
"url": "https://user-images.githubusercontent.com/4365015/127768970-e827c7e4-f4ce-4229-a68a-b2e87a723ef0.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Home/Index Page",
|
||||||
|
"url": "https://user-images.githubusercontent.com/4365015/127774204-03957527-7178-4ea2-8674-d83fe6a97d1c.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Library Page",
|
||||||
|
"url": "https://raw.githubusercontent.com/danieladov/jellyfin-plugin-skin-manager/master/src/img/Monochromic/Lib.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Title page",
|
||||||
|
"url": "https://user-images.githubusercontent.com/4365015/127778994-ddee8235-6bb2-42ae-a8b1-f9023dc69398.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [{
|
||||||
|
"name": "Customization Details",
|
||||||
|
"description": "Recommended only with the Custom theme. Not guaranteed to work with the presets.",
|
||||||
|
"options": [{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Recommended Fixes",
|
||||||
|
"description": "Contains various small tweaks all over the JF UI, an alignment here, a size tweak there.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/fixes.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Jellyfin Fonts",
|
||||||
|
"description": "Make Jellyfin use the same font as its logo, for everything.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/jf_font.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Rounding",
|
||||||
|
"description": "Circlehover keeps the stock circle accent when hovering over things, otherwise the accent will be a rounded square like everythig else.",
|
||||||
|
"css": "/* Rounding */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Default",
|
||||||
|
"value": "default",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/rounding.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Circlehover",
|
||||||
|
"value": "circlehover",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/rounding_circlehover.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Smaller Cast List",
|
||||||
|
"description": "A smaller, square aspect ratio style cast list.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/smallercast.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Compact episode list",
|
||||||
|
"description": "A more easily scrolled episode list, there is the option to keep it as a list that is more compact, or turning the episode list into a grid menu.",
|
||||||
|
"css": "/* Compact list */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Compact List",
|
||||||
|
"value": "compactlist",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/episodelist/episodes_compactlist.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Grid",
|
||||||
|
"value": "grid",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/episodelist/episodes_grid.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Transparent Top Bar",
|
||||||
|
"description": "Transparent top bar.",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/header/header_transparent.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Login Screen",
|
||||||
|
"description": "Login screen styles. The minimalistic option has no frame or prompt text.",
|
||||||
|
"css": "/* Login frame */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Login Frame",
|
||||||
|
"value": "loginframe",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/login/login_frame.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Login Minimalistic",
|
||||||
|
"value": "loginminimalistic",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/login/login_minimalistic.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Input fields",
|
||||||
|
"description": "Input field styles, with borders that highlight when selected, or with no borders, and the background highlights, when selected.",
|
||||||
|
"css": "/* Input fields */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Border",
|
||||||
|
"value": "fieldsborder",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/fields/fields_border.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "No Border",
|
||||||
|
"value": "fieldsnoborder",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/fields/fields_noborder.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Watched/Unwatched indicators",
|
||||||
|
"description": "Two options, should the indicator be floating, or attached to the corner of the title card.",
|
||||||
|
"css": "/* Watched/Unwatched */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Floating",
|
||||||
|
"value": "indicatorfloating",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/cornerindicator/indicator_floating.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Corner",
|
||||||
|
"value": "indicatorcorner",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/cornerindicator/indicator_corner.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Theme",
|
||||||
|
"description": "Dark, light, and colorful type.",
|
||||||
|
"css": "/* Theme */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Dark",
|
||||||
|
"value": "darktheme",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/type/dark.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "White",
|
||||||
|
"value": "whitetheme",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/type/light.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Colorful",
|
||||||
|
"value": "colorfultheme",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/type/colorful.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Dark with Accent",
|
||||||
|
"value": "darkwithaccenttheme",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/type/dark_withaccent.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Title Page",
|
||||||
|
"description": "Four options, two versions, each version can be used with or without a logo replacing title text.",
|
||||||
|
"css": "/* Title page */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Simple",
|
||||||
|
"value": "titlesimple",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/titlepage/title_simple.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Simple with Logo",
|
||||||
|
"value": "titlesimplelogo",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/titlepage/title_simple-logo.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Banner",
|
||||||
|
"value": "titlebanner",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/titlepage/title_banner.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Banner with Logo",
|
||||||
|
"value": "titlebannerlogo",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/titlepage/title_banner-logo.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Progress bar",
|
||||||
|
"description": "Default, overlay or floating style progress indicator for library items.",
|
||||||
|
"css": "/* Progress bar */",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Overlay",
|
||||||
|
"value": "overlayprogress",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/overlayprogress.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Bottom Bar",
|
||||||
|
"value": "bottombarprogress",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/bottombarprogress.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Floating",
|
||||||
|
"value": "floatingprogress",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/progress/floating.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Hoverglow Effect",
|
||||||
|
"description": "",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/effects/hoverglow.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Glassy Effect",
|
||||||
|
"description": "",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/effects/glassy.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Pan-Animation Effect",
|
||||||
|
"description": "Caution: Pan-animation can cause flickering on chromium based browsers when the backdrop is also modified",
|
||||||
|
"css": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/effects/pan-animation.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Backdrop-Hack Effect",
|
||||||
|
"description": "",
|
||||||
|
"css": "@import url('https://ctalvio.github.io/Monochromic/backdrop-hack_style.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"name": "Modify Backdrop Blur",
|
||||||
|
"css": ".backdropImage {filter: blur($px);}",
|
||||||
|
"default": "18",
|
||||||
|
"description": ""
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"name": "Modify Backdrop Saturation",
|
||||||
|
"css": ".backdropImage {filter: saturate($%);}",
|
||||||
|
"default": "120",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"name": "Modify Backdrop Contrast",
|
||||||
|
"css": ".backdropImage {filter: contrast($%);}",
|
||||||
|
"default": "120",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"name": "Modify Backdrop Brightness",
|
||||||
|
"css": ".backdropImage {filter: brightness($%);}",
|
||||||
|
"default": "40",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "text",
|
||||||
|
"name": "Modify Login Background url",
|
||||||
|
"css": "#loginPage {background: url($) !important;}",
|
||||||
|
"default": "https://i.imgur.com/9vL4iNf.png",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "colorPicker",
|
||||||
|
"name": "Modify Accent Color",
|
||||||
|
"css": ":root {--accent: $;}",
|
||||||
|
"mode":"only_numbers",
|
||||||
|
"default": "#6279cd",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"name": "Modify Rounding",
|
||||||
|
"css": ":root {--rounding: $px;}",
|
||||||
|
"default": "12",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -63,9 +418,8 @@
|
|||||||
"name": "Monochromic",
|
"name": "Monochromic",
|
||||||
"author": "EdgeMentality",
|
"author": "EdgeMentality",
|
||||||
"description": "This theme aims to be minimalistic and somewhat muted in color. Add-ons and custom accent colors are possible, but not entirely supported by this plug-in. Visit the github of the theme for more information.",
|
"description": "This theme aims to be minimalistic and somewhat muted in color. Add-ons and custom accent colors are possible, but not entirely supported by this plug-in. Visit the github of the theme for more information.",
|
||||||
"defaultCss": "@import url('https://ctalvio.github.io/Monochromic/default_style.css');",
|
"defaultCss": "@import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/presets/monochromic_preset.css');",
|
||||||
"previews": [
|
"previews": [{
|
||||||
{
|
|
||||||
"name": "Login Page",
|
"name": "Login Page",
|
||||||
"url": "https://github.com/danieladov/jellyfin-plugin-skin-manager/blob/master/src/img/Monochromic/login.jpg?raw=true"
|
"url": "https://github.com/danieladov/jellyfin-plugin-skin-manager/blob/master/src/img/Monochromic/login.jpg?raw=true"
|
||||||
},
|
},
|
||||||
@@ -82,11 +436,9 @@
|
|||||||
"url": "https://github.com/CTalvio/Monochromic/raw/master/screenshots/2.png"
|
"url": "https://github.com/CTalvio/Monochromic/raw/master/screenshots/2.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "checkBox",
|
"type": "checkBox",
|
||||||
"name": "Improve performance",
|
"name": "Improve performance",
|
||||||
"description": "The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect. I may switch to this method being the default.",
|
"description": "The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect. I may switch to this method being the default.",
|
||||||
@@ -114,21 +466,20 @@
|
|||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
"name": "Accent color",
|
"name": "Accent color",
|
||||||
|
"mode":"only_numbers",
|
||||||
"description": "Choose a custom accent color to use with the theme.",
|
"description": "Choose a custom accent color to use with the theme.",
|
||||||
"css": "@import url('https://ctalvio.github.io/Monochromic/customcolor_style.css');:root {--accent: $;}",
|
"css": "@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');:root {--accent: $;}",
|
||||||
"default": ""
|
"default": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}]
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Kaleidochromic",
|
"name": "Kaleidochromic",
|
||||||
"author": "Casper Talvio",
|
"author": "Casper Talvio",
|
||||||
"description": "This theme aims to be more colorful and minimalistic. Add-ons and custom accent colors are possible, but not entirely supported by this plug-in. Visit the github of the theme for more information.",
|
"description": "This theme aims to be more colorful and minimalistic. Add-ons and custom accent colors are possible, but not entirely supported by this plug-in. Visit the github of the theme for more information.",
|
||||||
"defaultCss": "@import url('https://ctalvio.github.io/Kaleidochromic/default_style.css');",
|
"defaultCss": "@import url('https://ctalvio.github.io/Kaleidochromic/default_style.css');",
|
||||||
"previews": [
|
"previews": [{
|
||||||
{
|
|
||||||
"name": "Login Page",
|
"name": "Login Page",
|
||||||
"url": "https://github.com/danieladov/jellyfin-plugin-skin-manager/blob/master/src/img/Kaleidochromic/Login.jpg?raw=true"
|
"url": "https://github.com/danieladov/jellyfin-plugin-skin-manager/blob/master/src/img/Kaleidochromic/Login.jpg?raw=true"
|
||||||
},
|
},
|
||||||
@@ -145,11 +496,9 @@
|
|||||||
"url": "https://github.com/CTalvio/Kaleidochromic/raw/main/screenshots/1.png"
|
"url": "https://github.com/CTalvio/Kaleidochromic/raw/main/screenshots/1.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "checkBox",
|
"type": "checkBox",
|
||||||
"name": "Improve performance",
|
"name": "Improve performance",
|
||||||
"description": "The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect.",
|
"description": "The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect.",
|
||||||
@@ -171,13 +520,13 @@
|
|||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
"name": "Accent color",
|
"name": "Accent color",
|
||||||
|
"mode":"only_numbers",
|
||||||
"description": "Choose a custom accent color to use with the theme.",
|
"description": "Choose a custom accent color to use with the theme.",
|
||||||
"css": ":root {--accent: $;}",
|
"css": ":root {--accent: $;}",
|
||||||
"default": "#6279cd"
|
"default": "#6279cd"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}]
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Novachromic",
|
"name": "Novachromic",
|
||||||
@@ -203,11 +552,9 @@
|
|||||||
"url": "https://github.com/CTalvio/Novachromic/raw/main/screenshots/two.png"
|
"url": "https://github.com/CTalvio/Novachromic/raw/main/screenshots/two.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "checkBox",
|
"type": "checkBox",
|
||||||
"name": "Restore bottom bar style episode progress",
|
"name": "Restore bottom bar style episode progress",
|
||||||
"description": "Don't like my transparent view progress overlay? Use this to go back to the old style.",
|
"description": "Don't like my transparent view progress overlay? Use this to go back to the old style.",
|
||||||
@@ -223,91 +570,53 @@
|
|||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
"name": "Accent color",
|
"name": "Accent color",
|
||||||
|
"mode":"only_numbers",
|
||||||
"description": "Choose a custom accent color to use with the theme.",
|
"description": "Choose a custom accent color to use with the theme.",
|
||||||
"css": ":root {--accent: $;}",
|
"css": ":root {--accent: $;}",
|
||||||
"default": "#ffffff"
|
"default": "#ffffff"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}]
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "JellySkin",
|
"name": "Dark And Green",
|
||||||
"author": "prayagprajapati17",
|
"author": "mbcooper83",
|
||||||
"description": "A very bright and colorful look using lots of drop shadows. Theme is by prayag17.",
|
"description": "A Dark And Green Theme for Jellyfin.",
|
||||||
"defaultCss": "@import url('https://prayag17.github.io/JellySkin/default.css');",
|
"defaultCss": "@import url('https://mbcooper83.github.io/jfcssdrkgrn/jellyfin-darkangreen.css');",
|
||||||
"previews": [
|
"previews": [
|
||||||
{
|
|
||||||
"name": "Login Page",
|
|
||||||
"url": "https://prayag17.github.io/JellySkin/img/login.jpg"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Home/Index Page",
|
"name": "Home/Index Page",
|
||||||
"url": "https://prayag17.github.io/JellySkin/img/Home.jpg"
|
"url": "https://camo.githubusercontent.com/6dd10c355679d68222c4bed4889be5e7c453e623acc0308bf0e5cab464fc5e66/68747470733a2f2f6d62636f6f70657238332e6769746875622e696f2f6a6663737364726b67726e2f6a6663737330312e706e673f7261773d74727565"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Library Page",
|
"name": "Settings Page",
|
||||||
"url": "https://prayag17.github.io/JellySkin/img/Movies.jpg"
|
"url": "https://camo.githubusercontent.com/fe309944755cf16b8a78ded952c28758bbf2fa8a2cd4a9f035953e9404747a50/68747470733a2f2f6d62636f6f70657238332e6769746875622e696f2f6a6663737364726b67726e2f6a6663737330322e706e673f7261773d74727565"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Title page",
|
"name": "Episode/season page",
|
||||||
"url": "https://prayag17.github.io/JellySkin/img/Title%20Page-Movie.jpg"
|
"url": "https://camo.githubusercontent.com/6d8dd75114e06bffbc9ea87f4fb2845dc8a49b9408b5f79322a6d4ce80b4ee50/68747470733a2f2f6d62636f6f70657238332e6769746875622e696f2f6a6663737364726b67726e2f6a6663737330332e706e673f7261773d74727565"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Player",
|
||||||
|
"url": "https://camo.githubusercontent.com/fcef7d4e498abf47f9dc44337436b2664ee2ce63195b93ec6ea564f1f689300c/68747470733a2f2f6d62636f6f70657238332e6769746875622e696f2f6a6663737364726b67726e2f6a6663737330342e706e673f7261773d74727565"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"options": [
|
"options": []
|
||||||
{
|
}]
|
||||||
"type": "selector",
|
|
||||||
"name": "Gradient",
|
|
||||||
"description": "Changes the Jellyfin themed Hover gradient",
|
|
||||||
"css": "@import url('https://prayag17.github.io/JellySkin/$.css');",
|
|
||||||
"selections": [
|
|
||||||
{
|
|
||||||
"name": "Default",
|
|
||||||
"value": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Sea Gradient",
|
|
||||||
"value": "seaGradient"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Sunset Gradient",
|
|
||||||
"value": "sunsetGradient"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Night Sky Gradient",
|
|
||||||
"value": "nightSkyGradient"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Morning Gradient",
|
|
||||||
"value": "morningGradient"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type":"checkBox",
|
|
||||||
"name":"Theme Logo",
|
|
||||||
"description":"Styles title page in such a way in which logos are used instead of Names.",
|
|
||||||
"css":"@import url('https://prayag17.github.io/JellySkin/Logo.css');"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Custom",
|
"name": "Custom",
|
||||||
"author": "you",
|
"author": "you",
|
||||||
"description": "customize the look of jellyfin by your needs",
|
"description": "customize the look of jellyfin by your needs",
|
||||||
"defaultCss": "/*Custom*/",
|
"defaultCss": "/*Custom*/",
|
||||||
"categories": [
|
"categories": [{
|
||||||
{
|
|
||||||
"name": "Fonts",
|
"name": "Fonts",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "googleFonts",
|
"type": "googleFonts",
|
||||||
"css": "/*googleFonts*/"
|
"name": "Change Font",
|
||||||
|
"css": "html {font-family: '$',sans-serif ; } body,h1,h2,h3 { font-family: '$' ,sans-serif;}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "number",
|
"type": "number",
|
||||||
@@ -321,25 +630,21 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Home/Dashboard Page",
|
"name": "Home/Dashboard Page",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "checkBox",
|
"type": "checkBox",
|
||||||
"name": "Enlarge Tab Buttons",
|
"name": "Enlarge Tab Buttons",
|
||||||
"description": "Enlarges the tab buttons, suggested, genres, etc. By default they are really tiny, especially on mobile.",
|
"description": "Enlarges the tab buttons, suggested, genres, etc. By default they are really tiny, especially on mobile.",
|
||||||
"css": ".headerTabs.sectionTabs {text-size-adjust: 110%; font-size: 110%;}.pageTitle {margin-top: auto; margin-bottom: auto;}.emby-tab-button {padding: 1.75em 1.7em;}"
|
"css": ".headerTabs.sectionTabs {text-size-adjust: 110%; font-size: 110%;}.pageTitle {margin-top: auto; margin-bottom: auto;}.emby-tab-button {padding: 1.75em 1.7em;}"
|
||||||
}
|
}]
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Miscellaneous",
|
"name": "Miscellaneous",
|
||||||
"options": [
|
"options": [{
|
||||||
{
|
|
||||||
"type": "selector",
|
"type": "selector",
|
||||||
"name": "Poster card hover effect",
|
"name": "Poster card hover effect",
|
||||||
"description": "Changes the hover effect on Movie/TV show/Music poster card.",
|
"description": "Changes the hover effect on Movie/TV show/Music poster card.",
|
||||||
"css": "",
|
"css": "/*poster-eff*/",
|
||||||
"selections": [
|
"selections": [{
|
||||||
{
|
|
||||||
"name": "Scale in and out",
|
"name": "Scale in and out",
|
||||||
"css": " /* Dynamic Poster effect-option1*/ .cardBox-bottompadded{margin-bottom; 1em !important;}.itemsContainer>.card>.cardBox {margin: 1em;background: rgba(0,0,0,0.5);transition: transform .2s;}.card:hover .cardBox{transform: scale(1.1);}"
|
"css": " /* Dynamic Poster effect-option1*/ .cardBox-bottompadded{margin-bottom; 1em !important;}.itemsContainer>.card>.cardBox {margin: 1em;background: rgba(0,0,0,0.5);transition: transform .2s;}.card:hover .cardBox{transform: scale(1.1);}"
|
||||||
},
|
},
|
||||||
@@ -357,6 +662,46 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "selector",
|
||||||
|
"name": "Icon Pack",
|
||||||
|
"description": "Changes all icons like dashboard and play. Choose non google fonts if you are blocking google fonts",
|
||||||
|
"css": "/*Icons*/",
|
||||||
|
"selections": [{
|
||||||
|
"name": "Default",
|
||||||
|
"css": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Outlined",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/Outline.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Rounded",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/round.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sharp",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/Sharp.css');"
|
||||||
|
}, {
|
||||||
|
"name": "Outlined-Non google fonts",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/Outline.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Rounded-Non google fonts",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/round.css');"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sharp-Non google fonts",
|
||||||
|
"css": "@import url('https://prayag17.github.io/Jellyfin-Icons/Sharp.css');"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "checkBox",
|
||||||
|
"name": "Image gradient in title page",
|
||||||
|
"description": "removes the bg of detail ribbon and replace it with image gradient",
|
||||||
|
"css": ".detailRibbon {background: transparent;}.itemBackdrop {-webkit-mask: linear-gradient(to bottom, black 50%,transparent);mask: linear-gradient(to bottom, black 50%,transparent);}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "checkBox",
|
"type": "checkBox",
|
||||||
"name": "Minimal Actor's card",
|
"name": "Minimal Actor's card",
|
||||||
@@ -367,8 +712,7 @@
|
|||||||
"type": "selector",
|
"type": "selector",
|
||||||
"name": "Episode View",
|
"name": "Episode View",
|
||||||
"description": "Theme episode list",
|
"description": "Theme episode list",
|
||||||
"selections": [
|
"selections": [{
|
||||||
{
|
|
||||||
"name": "Card",
|
"name": "Card",
|
||||||
"css": " #itemDetailPage .vertical-list {display: grid;grid-template-columns: 30% 30% 30%;padding: 0 6px !important;height: fit-content;justify-content: space-evenly;-webkit-box-orient: horizontal;-webkit-box-direction: normal;margin: -6px;width: calc(100% - 6px);}.listItem-withContentWrapper:hover .listItemImageButton.itemAction.paper-icon-button-light {opacity: 100%;}@media (max-width: 901px){#itemDetailPage .vertical-list {grid-template-columns: 30% 30%;}}.listItem-withContentWrapper {transition: none;height: fit-content;max-width: 100%;margin: 6px;border-radius: var(--rounding);overflow: hidden;padding: 0;overflow: hidden;}.listItem-withContentWrapper:hover{background: transparent;}.listItem-content {height: 100%;}.listItem-content {display: -webkit-flex;display: flex;-webkit-align-items: center;align-items: center;width: 100%;display: grid;grid-template-columns: 100%;}.listItemImage.listItemImage-large.itemAction.lazy {height: 14rem;width: 100%;padding: 0 !important;margin: 0 !important;top: 0;left: 0;}.layout-mobile #itemDetailPage .vertical-list {grid-template-columns: 100%;}.secondary.listItem-overview.listItemBodyText {height: fit-content;}.layout-mobile .listItem-bottomoverview {padding: 0 10px;}.listItemBody.itemAction {padding: 0 5px;}.listItemImageButton.itemAction.paper-icon-button-light {opacity: 0;color: var(--accent);transition: all .2s;}.layout-mobile .listItemImageButton.itemAction.paper-icon-button-light{opacity: 100% !important;}"
|
"css": " #itemDetailPage .vertical-list {display: grid;grid-template-columns: 30% 30% 30%;padding: 0 6px !important;height: fit-content;justify-content: space-evenly;-webkit-box-orient: horizontal;-webkit-box-direction: normal;margin: -6px;width: calc(100% - 6px);}.listItem-withContentWrapper:hover .listItemImageButton.itemAction.paper-icon-button-light {opacity: 100%;}@media (max-width: 901px){#itemDetailPage .vertical-list {grid-template-columns: 30% 30%;}}.listItem-withContentWrapper {transition: none;height: fit-content;max-width: 100%;margin: 6px;border-radius: var(--rounding);overflow: hidden;padding: 0;overflow: hidden;}.listItem-withContentWrapper:hover{background: transparent;}.listItem-content {height: 100%;}.listItem-content {display: -webkit-flex;display: flex;-webkit-align-items: center;align-items: center;width: 100%;display: grid;grid-template-columns: 100%;}.listItemImage.listItemImage-large.itemAction.lazy {height: 14rem;width: 100%;padding: 0 !important;margin: 0 !important;top: 0;left: 0;}.layout-mobile #itemDetailPage .vertical-list {grid-template-columns: 100%;}.secondary.listItem-overview.listItemBodyText {height: fit-content;}.layout-mobile .listItem-bottomoverview {padding: 0 10px;}.listItemBody.itemAction {padding: 0 5px;}.listItemImageButton.itemAction.paper-icon-button-light {opacity: 0;color: var(--accent);transition: all .2s;}.layout-mobile .listItemImageButton.itemAction.paper-icon-button-light{opacity: 100% !important;}"
|
||||||
},
|
},
|
||||||
@@ -393,7 +737,7 @@
|
|||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
"mode": "hex",
|
"mode": "hex",
|
||||||
"name": "Button text color",
|
"name": "Title Page Button text color",
|
||||||
"description": "change button's text color.",
|
"description": "change button's text color.",
|
||||||
"css": ".raised{color: $;}",
|
"css": ".raised{color: $;}",
|
||||||
"default": "#ffffff"
|
"default": "#ffffff"
|
||||||
@@ -401,7 +745,7 @@
|
|||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
"mode": "hex",
|
"mode": "hex",
|
||||||
"name": "Button background color",
|
"name": "Title Page Button background color",
|
||||||
"description": "change background color of button.",
|
"description": "change background color of button.",
|
||||||
"css": ".raised{background-color: $;}",
|
"css": ".raised{background-color: $;}",
|
||||||
"default": "#303030"
|
"default": "#303030"
|
||||||
@@ -420,7 +764,7 @@
|
|||||||
"name": "Idle button color-background",
|
"name": "Idle button color-background",
|
||||||
"description": "This modifies the background color of buttons like cast and search.",
|
"description": "This modifies the background color of buttons like cast and search.",
|
||||||
"css": ".paper-icon-button-light{background-color: $ !important; transition: all .2s;}",
|
"css": ".paper-icon-button-light{background-color: $ !important; transition: all .2s;}",
|
||||||
"default": "#00FFFFFF"
|
"default": "#00000000"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "colorPicker",
|
"type": "colorPicker",
|
||||||
@@ -436,20 +780,27 @@
|
|||||||
"name": "Hover button color-background",
|
"name": "Hover button color-background",
|
||||||
"description": "This modifies the background color of buttons like cast and search when your cursor is on it.",
|
"description": "This modifies the background color of buttons like cast and search when your cursor is on it.",
|
||||||
"css": ".paper-icon-button-light:hover{background-color: $ !important;}",
|
"css": ".paper-icon-button-light:hover{background-color: $ !important;}",
|
||||||
"default": "#00a4dc"
|
"default": "#00a4db33"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"name": "Border Radius",
|
"name": "Border Radius",
|
||||||
"description": "Change the rounding",
|
"description": "Change the rounding",
|
||||||
"css": "*,*::before,*::after{border-radius: $ !important;}",
|
"css": ":root{--btn-rounding: $px; --rounding: $px;} .missingIndicator, .unairedIndicator {border-radius: var(--rounding);}.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;}.primaryImageWrapper>img, .toast, .paperList, .cardContent, .sessionNowPlayingInnerContent, .listItem:hover, .cardImage, .fab, .raised, .multiSelectCheckboxOutline, .itemSelectionPanel, .cardContent-button, .cardContent-shadow, .itemDetailImage, .cardOverlayButton-hover, .cardImageContainer, .cardPadder, .listItemImage, .listItemImageButton, .listItemButton, .headerButton, .paper-icon-button-light, .innerCardFooter, .blurhash-canvas, .dialog, .countIndicator, .playedIndicator, .listItemIcon, .listItem-border, .button-flat, .visualCardBox, .checkboxOutline, .emby-select-withcolor, .chapterThumbTextContainer, .chapterThumbContainer, .chapterThumb, .emby-input, .emby-textarea, .emby-select-withcolor, .nowPlayingPageImage, .upNextDialog-poster-img, .upNextContainer, .cardOverlayButtonIcon {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);}#dashboardPage .cardContent, #dashboardPage .sessionNowPlayingInnerContent {border-radius: var(--rounding) var(--rounding) 0 0 !important;}#divVirtualFolders .cardImageContainer, #divVirtualFolders .cardContent {border-radius: var(--rounding) var(--rounding) 0 0 !important;}#userProfilesPage .cardImage, #userProfilesPage .cardContent {border-radius: var(--rounding) var(--rounding) 0 0 !important;}#user_usage_report_table, .detailTable {border-radius: var(--rounding);}progress {border-radius: var(--rounding);}progress::-webkit-progress-bar {border-radius: var(--rounding);}progress::-moz-progress-bar {border-radius: var(--rounding);}progress::-webkit-progress-value {border-radius: var(--rounding);}.taskProgressOuter, .taskProgressInner {border-radius: var(--rounding) !important;}::-webkit-scrollbar-thumb {border-radius: var(--rounding);} .paper-icon-button-light{border-radius: var(--btn-rounding) !impotant;}",
|
||||||
"default": "0"
|
"default": "0"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "colorPicker",
|
||||||
|
"name": "Background-color",
|
||||||
|
"description": "change background-color of the background",
|
||||||
|
"css": ".backgroundContainer.withBackdrop {background-color: $;}",
|
||||||
|
"default": "rgba(0, 0, 0, 0.86)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "blurSlider",
|
"type": "blurSlider",
|
||||||
"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": ":root{--bgblur: blur($px)}.backdropImage {filter: var(--bgblur);}.backgroundContainer.withBackdrop {background-color: rgba(0,0,0,0);}",
|
"css": ":root{--bgblur: blur($px)}.backdropImage {filter: var(--bgblur);}",
|
||||||
"default": "0"
|
"default": "0"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
30
src/html/skin__request.html
Normal file
30
src/html/skin__request.html
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.js" integrity="sha512-n/4gHW3atM3QqRcbCn6ewmpxcLAHGaDjpEBu4xZd47N0W2oQ+6q7oc3PXstrJYXcbNU1OHdQ1T7pAP+gi5Yu8g==" crossorigin="anonymous"></script>
|
||||||
|
<script src="../js/json__compile.js"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<form>
|
||||||
|
<input type="text" id="name" name="name">
|
||||||
|
<input type="text" id="author" name="author">
|
||||||
|
<input type=" text " id="desc" name="desc">
|
||||||
|
<input type=" text " id="css" name="css">
|
||||||
|
<h2>Images</h2>
|
||||||
|
<input type=" text " id="login" name="login">
|
||||||
|
<input type=" text " id="home" name="home">
|
||||||
|
<input type=" text " id="lib" name="lib">
|
||||||
|
<input type=" text " id="title" name="title">
|
||||||
|
<h2>Categories</h2>
|
||||||
|
<input type="button" id="add" value="Add a foryour options categorie" onclick="add__option()">
|
||||||
|
<input type="button" id="no_op" value="Don't have any options/addons?" onclick="no__option()">
|
||||||
|
<div id="cat"></div>
|
||||||
|
<input type="hidden" value="1" id="total_chq">
|
||||||
|
<input type="button" onclick="createJSON()" value="save" />
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
BIN
src/img/Default/1.png
Normal file
BIN
src/img/Default/1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
src/img/Default/2.png
Normal file
BIN
src/img/Default/2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 MiB |
BIN
src/img/Default/3.png
Normal file
BIN
src/img/Default/3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
BIN
src/img/Default/4.png
Normal file
BIN
src/img/Default/4.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 MiB |
BIN
src/img/thumb.png
Normal file
BIN
src/img/thumb.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 84 KiB |
88
src/js/json__compile.js
Normal file
88
src/js/json__compile.js
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
function add__option() {
|
||||||
|
window.new_chq_no = parseInt($('#total_chq').val()) + 1;
|
||||||
|
window.new_input = "<h3>Categorie Name</h3><input type='text' id='cat_name'><div id='op_cont'><div class='inner'><h4>option name</h4><input type='text' id='op_name'><h4>option type</h4><input type='text' id='op_type'><h4>option description</h4><input type='text' id='op_desc'><h4>option css</h4><input type='text' id='op_css'></div><input type='button' value='Add a new option'></div>";
|
||||||
|
|
||||||
|
$('#cat').append(new_input);
|
||||||
|
|
||||||
|
$('#total_chq').val(new_chq_no);
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_option_json() {
|
||||||
|
var option__name = document.querySelectorAll('#op_name');
|
||||||
|
option__name.forEach(option__name => function() {
|
||||||
|
var json__options = {
|
||||||
|
"categories": [{
|
||||||
|
"name": "Default",
|
||||||
|
"options": [{
|
||||||
|
"name": name
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
var categories = {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function no__option() {
|
||||||
|
$('#no_op').on('click', function() {
|
||||||
|
var json__options = {
|
||||||
|
"categories": [{
|
||||||
|
"name": "Default",
|
||||||
|
"options": []
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function createJSON() {
|
||||||
|
var name = document.getElementById("name").value;
|
||||||
|
var author = document.getElementById("author").value;
|
||||||
|
var desc = document.getElementById("desc").value;
|
||||||
|
var CSS = document.getElementById("css").value;
|
||||||
|
var login = document.getElementById("login").value;
|
||||||
|
var home = document.getElementById("home").value;
|
||||||
|
var lib = document.getElementById("lib").value;
|
||||||
|
var title = document.getElementById("title").value;
|
||||||
|
var json__compiled = {
|
||||||
|
"name ": name,
|
||||||
|
"author ": author,
|
||||||
|
"description ": desc,
|
||||||
|
"defaultCss ": CSS,
|
||||||
|
"previews ": [{
|
||||||
|
"name ": "Login Page ",
|
||||||
|
"url ": login
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name ": "Home/Index Page ",
|
||||||
|
"url ": home
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name ": "Library Page ",
|
||||||
|
"url ": lib
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name ": "Title page ",
|
||||||
|
"url ": title
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
var json = JSON.stringify(json__compiled, null, 4);
|
||||||
|
|
||||||
|
json = [json];
|
||||||
|
var json__blob = new Blob(json, { type: "text/plain;charset=utf-8" });
|
||||||
|
|
||||||
|
var isIE = false || !!document.documentMode;
|
||||||
|
if (isIE) {
|
||||||
|
window.navigator.msSaveBlob(json__blob, name + ".json");
|
||||||
|
} else {
|
||||||
|
var url = window.URL || window.webkitURL;
|
||||||
|
link = url.createObjectURL(json__blob);
|
||||||
|
var a = document.createElement("a");
|
||||||
|
a.download = name + ".json";
|
||||||
|
a.href = link;
|
||||||
|
document.body.appendChild(a);
|
||||||
|
a.click();
|
||||||
|
document.body.removeChild(a);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user