From 5024b2a78ca3c08b5aca0bbb630e7ec78895708f Mon Sep 17 00:00:00 2001 From: GilbN Date: Sun, 3 Apr 2022 18:20:49 +0000 Subject: [PATCH] deploy: 7c27fbefda69787e34ca190c9440eecbf30d8e14 --- .github/workflows/docker-build.yml | 40 +++++++++++++---------- css/base/unraid/aquamarine.css | 2 +- css/base/unraid/blackberry-abyss.css | 2 +- css/base/unraid/blackberry-amethyst.css | 2 +- css/base/unraid/blackberry-carol.css | 2 +- css/base/unraid/blackberry-dreamscape.css | 2 +- css/base/unraid/blackberry-flamingo.css | 2 +- css/base/unraid/blackberry-hearth.css | 2 +- css/base/unraid/blackberry-martian.css | 2 +- css/base/unraid/blackberry-pumpkin.css | 2 +- css/base/unraid/blackberry-royal.css | 2 +- css/base/unraid/blackberry-shadow.css | 2 +- css/base/unraid/blackberry-solar.css | 2 +- css/base/unraid/blackberry-vanta.css | 2 +- css/base/unraid/dark.css | 2 +- css/base/unraid/dracula.css | 2 +- css/base/unraid/hotline-old.css | 2 +- css/base/unraid/hotline.css | 2 +- css/base/unraid/hotpink.css | 2 +- css/base/unraid/mind.css | 2 +- css/base/unraid/nord.css | 2 +- css/base/unraid/onedark.css | 2 +- css/base/unraid/organizr.css | 2 +- css/base/unraid/overseerr.css | 2 +- css/base/unraid/pine-shadow.css | 2 +- css/base/unraid/plex.css | 2 +- css/base/unraid/power.css | 2 +- css/base/unraid/reality.css | 2 +- css/base/unraid/soul.css | 2 +- css/base/unraid/space-gray.css | 2 +- css/base/unraid/space.css | 2 +- css/base/unraid/time.css | 2 +- css/base/unraid/trueblack.css | 2 +- css/base/unraid/unraid-base.css | 6 ++-- themes.json | 2 +- 35 files changed, 59 insertions(+), 53 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 65817d57..fdf4a016 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -37,15 +37,16 @@ jobs: run: | ARCHITECTURE=${{ matrix.architecture }} echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') - echo ::set-output name=title::${GITHUB_REPOSITORY,,}:${GITHUB_REF//refs\/heads\//} + echo ::set-output name=title::${GITHUB_REPOSITORY,,}:${{ github.ref_name }} echo ::set-output name=revision::${GITHUB_SHA} - echo ::set-output name=source::${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/tree/${GITHUB_REF//refs\/heads\//} + echo ::set-output name=source::${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/tree/${{ github.ref_name }} echo ::set-output name=vendor::${{ github.repository_owner }} echo ::set-output name=url::${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/blob/master/README.md echo ::set-output name=VERSION::${{ github.event.release.tag_name }} echo ::set-output name=platform::${ARCHITECTURE//-/\/} - echo ::set-output name=cache::${GITHUB_REPOSITORY,,}:${GITHUB_REF//refs\/heads\//}-cache-${{ matrix.architecture }} - echo ::set-output name=tag::${GITHUB_REPOSITORY,,}:${GITHUB_REF//refs\/heads\//}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}-${{ matrix.architecture }} + echo ::set-output name=cache::${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-cache-${{ matrix.architecture }} + echo ::set-output name=tag::${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}-${{ matrix.architecture }} + echo ::set-output name=release::${{ github.event.release.target_commitish }} - name: Set up QEMU uses: docker/setup-qemu-action@v1 @@ -85,7 +86,7 @@ jobs: org.opencontainers.image.source=${{ steps.prep.outputs.source }} org.opencontainers.image.vendor=${{ steps.prep.outputs.vendor }} org.opencontainers.image.url=${{ steps.prep.outputs.url }} - org.opencontainers.image.version=${{ steps.prep.outputs.version }} + org.opencontainers.image.version=${{ steps.prep.outputs.VERSION }} build-args: | TP_RELEASE=${{ steps.prep.outputs.VERSION }} BUILD_DATE=${{ steps.date_time.outputs.created }} @@ -122,23 +123,26 @@ jobs: DOCKER_CLI_EXPERIMENTAL: enabled run: | IMAGE=${{ matrix.registry }}/${GITHUB_REPOSITORY,,} - TAG=${GITHUB_REF//refs\/heads\//} + TAG=${{ github.ref_name }} SOURCE=${IMAGE}:${TAG}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER} VERSION=${{ steps.prep.outputs.VERSION }} [[ -f linux-amd64.Dockerfile ]] && AMD64=${SOURCE}-linux-amd64 [[ -f linux-arm64.Dockerfile ]] && ARM64=${SOURCE}-linux-arm64 [[ -f linux-arm-v7.Dockerfile ]] && ARMV7=${SOURCE}-linux-arm-v7 docker manifest create ${IMAGE}:${TAG} ${AMD64} ${ARM64} ${ARMV7} - docker manifest push ${IMAGE}:${TAG} - if [[! -z "${VERSION}" ]]; then - docker manifest create ${IMAGE}:${TAG}-${VERSION//\~/-} ${AMD64} ${ARM64} ${ARMV7} - docker manifest push ${IMAGE}:${TAG}-${VERSION//\~/-} - docker manifest create ${IMAGE}:${VERSION//\~/-} ${AMD64} ${ARM64} ${ARMV7} - docker manifest push ${IMAGE}:${VERSION//\~/-} - fi + docker manifest push ${IMAGE}:${TAG} docker manifest create ${IMAGE}:${TAG}-${GITHUB_SHA:0:7} ${AMD64} ${ARM64} ${ARMV7} - docker manifest push ${IMAGE}:${TAG}-${GITHUB_SHA:0:7} - if [[ ${TAG} == master ]]; then - docker manifest create ${IMAGE}:latest ${AMD64} ${ARM64} ${ARMV7} - docker manifest push ${IMAGE}:latest - fi \ No newline at end of file + docker manifest push ${IMAGE}:${TAG}-${GITHUB_SHA:0:7} + - name: Latest manifest + if: ${{ github.event.release.target_commitish == 'master' }} + env: + DOCKER_CLI_EXPERIMENTAL: enabled + run: | + IMAGE=${{ matrix.registry }}/${GITHUB_REPOSITORY,,} + TAG=${{ github.ref_name }} + SOURCE=${IMAGE}:${TAG}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER} + [[ -f linux-amd64.Dockerfile ]] && AMD64=${SOURCE}-linux-amd64 + [[ -f linux-arm64.Dockerfile ]] && ARM64=${SOURCE}-linux-arm64 + [[ -f linux-arm-v7.Dockerfile ]] && ARMV7=${SOURCE}-linux-arm-v7 + docker manifest create ${IMAGE}:latest ${AMD64} ${ARM64} ${ARMV7} + docker manifest push ${IMAGE}:latest diff --git a/css/base/unraid/aquamarine.css b/css/base/unraid/aquamarine.css index e6c154c9..ccb24efd 100644 --- a/css/base/unraid/aquamarine.css +++ b/css/base/unraid/aquamarine.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/aquamarine.css?sha=e263f729d3f58f939c76a02c8ed89cb17b02fd5c"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-abyss.css b/css/base/unraid/blackberry-abyss.css index 492a77ba..0458ce75 100644 --- a/css/base/unraid/blackberry-abyss.css +++ b/css/base/unraid/blackberry-abyss.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-abyss.css?sha=b64eb1f01cbd66a9dd888a96e62bb05ccf749802"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-amethyst.css b/css/base/unraid/blackberry-amethyst.css index ea3e65f2..bed80d27 100644 --- a/css/base/unraid/blackberry-amethyst.css +++ b/css/base/unraid/blackberry-amethyst.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-amethyst.css?sha=1f1cd7d10acca7c00b54073724bb75e73c83a603"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-carol.css b/css/base/unraid/blackberry-carol.css index 6404b436..a162f560 100644 --- a/css/base/unraid/blackberry-carol.css +++ b/css/base/unraid/blackberry-carol.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-carol.css?sha=0c7da8c7ad5257ee575adfed2e8ff3987fe3dfa1"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-dreamscape.css b/css/base/unraid/blackberry-dreamscape.css index e702ae5c..5cd20beb 100644 --- a/css/base/unraid/blackberry-dreamscape.css +++ b/css/base/unraid/blackberry-dreamscape.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-dreamscape.css?sha=adc24f5a940aa6f8e0061e4b1ad86126f95ba57f"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-flamingo.css b/css/base/unraid/blackberry-flamingo.css index 07df8372..aab2bcee 100644 --- a/css/base/unraid/blackberry-flamingo.css +++ b/css/base/unraid/blackberry-flamingo.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-flamingo.css?sha=d075526c4af1caa77d1d6ccb11536b66aa993b99"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-hearth.css b/css/base/unraid/blackberry-hearth.css index 26e339eb..aefa4f60 100644 --- a/css/base/unraid/blackberry-hearth.css +++ b/css/base/unraid/blackberry-hearth.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-hearth.css?sha=5a139953a525ca38111fd2dfa815c686bc5dbb88"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-martian.css b/css/base/unraid/blackberry-martian.css index b8a26b5a..5339fb36 100644 --- a/css/base/unraid/blackberry-martian.css +++ b/css/base/unraid/blackberry-martian.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-martian.css?sha=6eb4cd0529632fca270378f66f777182f4e2fb3e"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-pumpkin.css b/css/base/unraid/blackberry-pumpkin.css index 0a48a8ad..7402de5d 100644 --- a/css/base/unraid/blackberry-pumpkin.css +++ b/css/base/unraid/blackberry-pumpkin.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-pumpkin.css?sha=0e4c45af378262c4705bc538fdc3357e24613098"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-royal.css b/css/base/unraid/blackberry-royal.css index c0f313fe..add8f1b2 100644 --- a/css/base/unraid/blackberry-royal.css +++ b/css/base/unraid/blackberry-royal.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-royal.css?sha=6aebe0c7f1aa26cb9822b1e44ebd7ffa628d981a"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-shadow.css b/css/base/unraid/blackberry-shadow.css index 7b64efd5..d6da30a5 100644 --- a/css/base/unraid/blackberry-shadow.css +++ b/css/base/unraid/blackberry-shadow.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-shadow.css?sha=b1ea4de97e26ef32b52edc79e0fb8aeee4a7d83d"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-solar.css b/css/base/unraid/blackberry-solar.css index 3e81db00..1dd93f1f 100644 --- a/css/base/unraid/blackberry-solar.css +++ b/css/base/unraid/blackberry-solar.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-solar.css?sha=d53082caa15548ea53a518a9ca950eeab6a95059"); \ No newline at end of file diff --git a/css/base/unraid/blackberry-vanta.css b/css/base/unraid/blackberry-vanta.css index 473a13eb..8d2bf9f0 100644 --- a/css/base/unraid/blackberry-vanta.css +++ b/css/base/unraid/blackberry-vanta.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/blackberry-vanta.css?sha=5ae2f81e3d70a7a3f166ebfba6ae4ff050ea766d"); \ No newline at end of file diff --git a/css/base/unraid/dark.css b/css/base/unraid/dark.css index 30166976..e6c7e76c 100644 --- a/css/base/unraid/dark.css +++ b/css/base/unraid/dark.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/dark.css?sha=08b228ea163be7beccc6bd88a6d002c4e172032e"); \ No newline at end of file diff --git a/css/base/unraid/dracula.css b/css/base/unraid/dracula.css index 8a9e7269..c730ba45 100644 --- a/css/base/unraid/dracula.css +++ b/css/base/unraid/dracula.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/dracula.css?sha=60d9ec4d3e22fe15d205242f41ce71d25c4cf056"); \ No newline at end of file diff --git a/css/base/unraid/hotline-old.css b/css/base/unraid/hotline-old.css index 9d136c2d..50139afe 100644 --- a/css/base/unraid/hotline-old.css +++ b/css/base/unraid/hotline-old.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/hotline-old.css?sha=4befb6edb8a0b329baa4319e3c6fec9856f1d76f"); \ No newline at end of file diff --git a/css/base/unraid/hotline.css b/css/base/unraid/hotline.css index 4dd43547..16750264 100644 --- a/css/base/unraid/hotline.css +++ b/css/base/unraid/hotline.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/hotline.css?sha=5cba20990e5a70eef88445d3df6c7bc72bc22ac9"); \ No newline at end of file diff --git a/css/base/unraid/hotpink.css b/css/base/unraid/hotpink.css index 6f524055..13f19705 100644 --- a/css/base/unraid/hotpink.css +++ b/css/base/unraid/hotpink.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/hotpink.css?sha=18ffb7ff0cf9d4ae97f09c2ccb980d8bb0fd9d3e"); \ No newline at end of file diff --git a/css/base/unraid/mind.css b/css/base/unraid/mind.css index ed8c4c3a..c0657f6c 100644 --- a/css/base/unraid/mind.css +++ b/css/base/unraid/mind.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/mind.css?sha=6689c5111ff6eec40cce87e2ce7c659946fe00a1"); \ No newline at end of file diff --git a/css/base/unraid/nord.css b/css/base/unraid/nord.css index d0af981d..450d80ba 100644 --- a/css/base/unraid/nord.css +++ b/css/base/unraid/nord.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/nord.css?sha=dc62b646ac8f48d4e1e8722f305f8a174e1a4447"); \ No newline at end of file diff --git a/css/base/unraid/onedark.css b/css/base/unraid/onedark.css index 834a47f3..edda82d5 100644 --- a/css/base/unraid/onedark.css +++ b/css/base/unraid/onedark.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/onedark.css?sha=7754291defa741c805bb0aec4d647ba27fec9cca"); \ No newline at end of file diff --git a/css/base/unraid/organizr.css b/css/base/unraid/organizr.css index 50a54128..74a349cc 100644 --- a/css/base/unraid/organizr.css +++ b/css/base/unraid/organizr.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/organizr.css?sha=2a1ee65a26780204509f713f7ea2d5ebdc5bd057"); \ No newline at end of file diff --git a/css/base/unraid/overseerr.css b/css/base/unraid/overseerr.css index 6cf12a7d..7c4ca865 100644 --- a/css/base/unraid/overseerr.css +++ b/css/base/unraid/overseerr.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/overseerr.css?sha=eedb2e0df6cc892903b8716a05184c61577ebe20"); \ No newline at end of file diff --git a/css/base/unraid/pine-shadow.css b/css/base/unraid/pine-shadow.css index b74cad4e..68d00537 100644 --- a/css/base/unraid/pine-shadow.css +++ b/css/base/unraid/pine-shadow.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/pine-shadow.css?sha=cc2adf274933630ff06539a244ba9fffff9090dc"); \ No newline at end of file diff --git a/css/base/unraid/plex.css b/css/base/unraid/plex.css index 7713a646..3908cef8 100644 --- a/css/base/unraid/plex.css +++ b/css/base/unraid/plex.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/plex.css?sha=bce3fc8daf82f424f1c86672ede9aa07ad0cfdae"); \ No newline at end of file diff --git a/css/base/unraid/power.css b/css/base/unraid/power.css index b4b05e23..4d2b31f9 100644 --- a/css/base/unraid/power.css +++ b/css/base/unraid/power.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/power.css?sha=3dc209c5ab792d0fb00407f361dc5b75040054e2"); \ No newline at end of file diff --git a/css/base/unraid/reality.css b/css/base/unraid/reality.css index 2691f129..4d1c79c2 100644 --- a/css/base/unraid/reality.css +++ b/css/base/unraid/reality.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/reality.css?sha=cefddc8d27191a2e6fec826e80b2c83d107037c3"); \ No newline at end of file diff --git a/css/base/unraid/soul.css b/css/base/unraid/soul.css index 314d3965..ace43411 100644 --- a/css/base/unraid/soul.css +++ b/css/base/unraid/soul.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/soul.css?sha=863105e7b6a608c6211d335be61cf6f0b3a5b629"); \ No newline at end of file diff --git a/css/base/unraid/space-gray.css b/css/base/unraid/space-gray.css index 287313a7..747a1e97 100644 --- a/css/base/unraid/space-gray.css +++ b/css/base/unraid/space-gray.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/theme-options/space-gray.css?sha=8c996eb8d2c729fe95861ed683e2a8993a413c93"); \ No newline at end of file diff --git a/css/base/unraid/space.css b/css/base/unraid/space.css index 655445e5..19682d2b 100644 --- a/css/base/unraid/space.css +++ b/css/base/unraid/space.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/space.css?sha=5fadc3d68221e85c2ebb4b0d5649b985a7681d23"); \ No newline at end of file diff --git a/css/base/unraid/time.css b/css/base/unraid/time.css index 6ae259d0..dfae1097 100644 --- a/css/base/unraid/time.css +++ b/css/base/unraid/time.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/time.css?sha=ee60b4f5f6e787181abe2ce5f56abc8dcceabd98"); \ No newline at end of file diff --git a/css/base/unraid/trueblack.css b/css/base/unraid/trueblack.css index ec598fc8..3a95a741 100644 --- a/css/base/unraid/trueblack.css +++ b/css/base/unraid/trueblack.css @@ -1,2 +1,2 @@ -@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759"); +@import url("https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac"); @import url("https://develop.theme-park.dev/css/community-theme-options/trueblack.css?sha=de3a1b7f21d63c3c9d72c16e03f90c7309ceb695"); \ No newline at end of file diff --git a/css/base/unraid/unraid-base.css b/css/base/unraid/unraid-base.css index 377c0d6e..faef37a5 100644 --- a/css/base/unraid/unraid-base.css +++ b/css/base/unraid/unraid-base.css @@ -469,7 +469,8 @@ li.caMenuItem:hover { #sidenavContent .popupProfile, #sidenavContent .repoPopup, #sidenavContent .ca_favouriteRepo, -#sidenavContent .donate { +#sidenavContent .donate, +span .maxPerPage { color: var(--button-text) !important; background: var(--button-color) !important; border-color: var(--button-color) !important; @@ -493,7 +494,8 @@ li.caMenuItem:hover { #sidenavContent .popupProfile:hover, #sidenavContent .repoPopup:hover, #sidenavContent .ca_favouriteRepo:hover, -#sidenavContent .donate:hover{ +#sidenavContent .donate:hover, +.maxPerPage:hover { background: var(--button-color-hover) !important; color: var(--button-text-hover) !important; border-color: var(--button-color-hover) !important; diff --git a/themes.json b/themes.json index 1b0cd510..1c1bde16 100644 --- a/themes.json +++ b/themes.json @@ -419,7 +419,7 @@ } } }, - "base_css": "https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=377c0d6e560d22fb1b722902a14c7f62cbcd5759" + "base_css": "https://develop.theme-park.dev/css/base/unraid/unraid-base.css?sha=faef37a55b6c78accf116dbe65bc1fa302fc5eac" }, "uptime-kuma": { "addons": {},