Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
98788c4c8f docker(deps): Bump astral-sh/uv
Bumps [astral-sh/uv](https://github.com/astral-sh/uv) from 0.8.8-python3.12-bookworm-slim to 0.8.11-python3.12-bookworm-slim.
- [Release notes](https://github.com/astral-sh/uv/releases)
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/uv/compare/0.8.8...0.8.11)

---
updated-dependencies:
- dependency-name: astral-sh/uv
  dependency-version: 0.8.11-python3.12-bookworm-slim
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-19 06:06:24 +00:00
3 changed files with 1 additions and 56 deletions

View File

@@ -32,7 +32,7 @@ RUN set -eux \
# Purpose: Installs s6-overlay and rootfs
# Comments:
# - Don't leave anything extra in here either
FROM ghcr.io/astral-sh/uv:0.8.8-python3.12-bookworm-slim AS s6-overlay-base
FROM ghcr.io/astral-sh/uv:0.8.11-python3.12-bookworm-slim AS s6-overlay-base
WORKDIR /usr/src/s6

View File

@@ -444,12 +444,6 @@ export class SettingsService {
)
}
this._renderer.setAttribute(
this.document.documentElement,
'data-bs-theme',
'dark-flat'
)
if (themeColor?.length) {
const hsl = hexToHsl(themeColor)
const bgBrightnessEstimate = estimateBrightnessForColor(themeColor)

View File

@@ -349,52 +349,3 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,<svg xmlns='htt
}
}
[data-bs-theme="dark-flat"] {
body:not(.primary-light):not(.primary-dark) {
@include paperless-green-dark-mode;
.navbar.bg-primary {
// navbar is og green in dark mode
@include paperless-green;
}
}
@include dark-mode;
.btn-outline-primary, .btn-outline-secondary {
border-color: var(--pngx-bg-alt) !important;
background-color: var(--pngx-bg-alt) !important;
color: var(--bs-body-color) !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active {
background-color: var(--pngx-bg-darker) !important;
color: var(--pngx-body-color-accent) !important;
}
.btn-outline-danger {
border-color: var(--pngx-bg-alt) !important;
background-color: var(--pngx-bg-alt) !important;
color: var(--bs-danger) !important;
&:hover, &:focus, &.active, &:active {
background-color: var(--pngx-bg-darker) !important;
color: var(--bs-danger) !important;
}
}
.form-control:not(.btn), input, select, textarea,
.form-select:not(.is-invalid):not(:disabled), .form-check-input,
.ng-select .ng-select-container {
background-color: var(--pngx-bg-darker) !important;
color: var(--bs-body-color) !important;
border-color: var(--pngx-bg-alt) !important;
}
.input-group .input-group-text {
background-color: var(--pngx-bg-alt);
color: var(--bs-body-color);
border-color: var(--pngx-bg-alt);
}
}