From 25898496828a04d5a384ffd33b2cb79560978a76 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Wed, 15 Nov 2023 09:30:56 -0600 Subject: [PATCH 1/2] ui: change dark mode background configs (#2720) --- frontend/assets/css/main.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/assets/css/main.css b/frontend/assets/css/main.css index 160ed0d6dc58..c89c6620d669 100644 --- a/frontend/assets/css/main.css +++ b/frontend/assets/css/main.css @@ -2,6 +2,7 @@ .layout-leave-active { transition: opacity 0.2s; } + .layout-enter, .layout-leave-active { opacity: 0; @@ -16,15 +17,15 @@ } .theme--dark.v-application { - background-color: var(--v-background-base, #121212) !important; + background-color: var(--v-background-base, #1e1e1e) !important; } .theme--dark.v-navigation-drawer { - background-color: var(--v-background-base, #121212) !important; + background-color: var(--v-background-base, #1e1e1e) !important; } .theme--dark.v-card { - background-color: #2b2b2b !important; + background-color: #1e1e1e !important; } .left-border { From 74ea7d5e401537639e8fa04533d2ed381adf7b8b Mon Sep 17 00:00:00 2001 From: boc-the-git <3479092+boc-the-git@users.noreply.github.com> Date: Sun, 19 Nov 2023 03:02:43 +1100 Subject: [PATCH 2/2] Implement github actions cache, for docker build (#2727) --- .github/workflows/partial-builder.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/partial-builder.yml b/.github/workflows/partial-builder.yml index 2b9223f0a1d0..583b84354a21 100644 --- a/.github/workflows/partial-builder.yml +++ b/.github/workflows/partial-builder.yml @@ -46,3 +46,6 @@ jobs: tags: ghcr.io/${{ github.repository }}:${{ inputs.tag }} build-args: | COMMIT=${{ github.sha }} + # https://docs.docker.com/build/ci/github-actions/cache/#github-cache + cache-from: type=gha + cache-to: type=gha,mode=max