Browse Source

deploy: 7c27fbefda

live_develop
GilbN 3 years ago
parent
commit
5024b2a78c
  1. 32
      .github/workflows/docker-build.yml
  2. 2
      css/base/unraid/aquamarine.css
  3. 2
      css/base/unraid/blackberry-abyss.css
  4. 2
      css/base/unraid/blackberry-amethyst.css
  5. 2
      css/base/unraid/blackberry-carol.css
  6. 2
      css/base/unraid/blackberry-dreamscape.css
  7. 2
      css/base/unraid/blackberry-flamingo.css
  8. 2
      css/base/unraid/blackberry-hearth.css
  9. 2
      css/base/unraid/blackberry-martian.css
  10. 2
      css/base/unraid/blackberry-pumpkin.css
  11. 2
      css/base/unraid/blackberry-royal.css
  12. 2
      css/base/unraid/blackberry-shadow.css
  13. 2
      css/base/unraid/blackberry-solar.css
  14. 2
      css/base/unraid/blackberry-vanta.css
  15. 2
      css/base/unraid/dark.css
  16. 2
      css/base/unraid/dracula.css
  17. 2
      css/base/unraid/hotline-old.css
  18. 2
      css/base/unraid/hotline.css
  19. 2
      css/base/unraid/hotpink.css
  20. 2
      css/base/unraid/mind.css
  21. 2
      css/base/unraid/nord.css
  22. 2
      css/base/unraid/onedark.css
  23. 2
      css/base/unraid/organizr.css
  24. 2
      css/base/unraid/overseerr.css
  25. 2
      css/base/unraid/pine-shadow.css
  26. 2
      css/base/unraid/plex.css
  27. 2
      css/base/unraid/power.css
  28. 2
      css/base/unraid/reality.css
  29. 2
      css/base/unraid/soul.css
  30. 2
      css/base/unraid/space-gray.css
  31. 2
      css/base/unraid/space.css
  32. 2
      css/base/unraid/time.css
  33. 2
      css/base/unraid/trueblack.css
  34. 6
      css/base/unraid/unraid-base.css
  35. 2
      themes.json

32
.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,7 +123,7 @@ 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
@ -130,15 +131,18 @@ jobs:
[[ -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 create ${IMAGE}:${TAG}-${GITHUB_SHA:0:7} ${AMD64} ${ARM64} ${ARMV7}
docker manifest push ${IMAGE}:${TAG}-${GITHUB_SHA:0:7}
if [[ ${TAG} == master ]]; then
- 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
fi

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

2
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");

6
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;

2
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": {},

Loading…
Cancel
Save