GilbN 4 years ago
parent
commit
33ca837019
  1. 2
      CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css
  2. 18
      README.md
  3. 4
      themes.json
  4. 1
      themes.py

2
CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css

@ -1,4 +1,4 @@
/* Desktop */ /* Desktop */
@media (min-width: 752px) { @media (min-width: 752px) {
.header-icon.px-3.m-0.d-none.d-md-block img { .header-icon.px-3.m-0.d-none.d-md-block img {
display: none !important; display: none !important;

18
README.md

@ -21,15 +21,15 @@
<p align="center">Click on the banners for screenshots.</p> <p align="center">Click on the banners for screenshots.</p>
<a href="https://docs.theme-park.dev/theme-options/dracula"><img src="https://docs.theme-park.dev/theme-options/dracula_banner.png" alt="Dracula" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/dracula"><img src="https://docs.theme-park.dev/theme-options/dracula_banner_small.png" alt="Dracula" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/overseerr"><img src="https://docs.theme-park.dev/theme-options/overseerr_banner.png" alt="Overseerr" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/overseerr"><img src="https://docs.theme-park.dev/theme-options/overseerr_banner_small.png" alt="Overseerr" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/organizr-dark"><img src="https://docs.theme-park.dev/theme-options/organizr dark_banner.png" alt="Organizr-Dark" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/organizr-dark"><img src="https://docs.theme-park.dev/theme-options/organizr dark_banner_small.png" alt="Organizr-Dark" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/aquamarine"><img src="https://docs.theme-park.dev/theme-options/aquamarine_banner.png" alt="Aquamarine" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/aquamarine"><img src="https://docs.theme-park.dev/theme-options/aquamarine_banner_small.png" alt="Aquamarine" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/hotline"><img src="https://docs.theme-park.dev/theme-options/hotline_banner.png" alt="Hotline" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/hotline"><img src="https://docs.theme-park.dev/theme-options/hotline_banner_small.png" alt="Hotline" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/hotpink"><img src="https://docs.theme-park.dev/theme-options/hotpink_banner.png" alt="Hotpink" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/hotpink"><img src="https://docs.theme-park.dev/theme-options/hotpink_banner_small.png" alt="Hotpink" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/space-gray"><img src="https://docs.theme-park.dev/theme-options/space gray_banner.png" alt="Space-Gray" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/space-gray"><img src="https://docs.theme-park.dev/theme-options/space gray_banner_small.png" alt="Space-Gray" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/dark"><img src="https://docs.theme-park.dev/theme-options/dark_banner.png" alt="Dark" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/dark"><img src="https://docs.theme-park.dev/theme-options/dark_banner_small.png" alt="Dark" width="49.49%"/></a>
<a href="https://docs.theme-park.dev/theme-options/plex"><img src="https://docs.theme-park.dev/theme-options/plex_banner.png" alt="Plex" width="49.49%"/></a> <a href="https://docs.theme-park.dev/theme-options/plex"><img src="https://docs.theme-park.dev/theme-options/plex_banner_small.png" alt="Plex" width="49.49%"/></a>
<h2><a href="https://docs.theme-park.dev/setup">Installation</a></h2> <h2><a href="https://docs.theme-park.dev/setup">Installation</a></h2>

4
themes.json

@ -128,7 +128,7 @@
"addons": { "addons": {
"bazarr-4k-logo": { "bazarr-4k-logo": {
"css": [ "css": [
"https://theme-park.dev/CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css?sha=ff9cca70767971025f11a4c16bf71043c7df2431" "https://theme-park.dev/CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css?sha=46198c7fbad746b02d2dcb0b27d04467084af121"
] ]
} }
} }
@ -323,7 +323,7 @@
"bazarr": { "bazarr": {
"bazarr-4k-logo": { "bazarr-4k-logo": {
"css": [ "css": [
"https://theme-park.dev/CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css?sha=ff9cca70767971025f11a4c16bf71043c7df2431" "https://theme-park.dev/CSS/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css?sha=46198c7fbad746b02d2dcb0b27d04467084af121"
] ]
} }
}, },

1
themes.py

@ -17,7 +17,6 @@ def get_shas(output):
def create_addons_json(): def create_addons_json():
addon_shas = subprocess.check_output(["git", "ls-files", "-s", "./CSS/addons/*.css"]) addon_shas = subprocess.check_output(["git", "ls-files", "-s", "./CSS/addons/*.css"])
SHAS = get_shas(addon_shas) SHAS = get_shas(addon_shas)
print(SHAS)
ADDONS = {"addons":{}} ADDONS = {"addons":{}}
addon_root = './CSS/addons' addon_root = './CSS/addons'
addon_folders = [name for name in listdir(addon_root) if isdir(join(addon_root, name))] addon_folders = [name for name in listdir(addon_root) if isdir(join(addon_root, name))]

Loading…
Cancel
Save