Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yagebu committed Jan 25, 2025
1 parent 210e894 commit b4a15ca
Show file tree
Hide file tree
Showing 14 changed files with 329 additions and 215 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
skip: ["eslint"]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.5
rev: v0.9.2
hooks:
- id: ruff
args: ["--fix"]
Expand All @@ -24,19 +24,19 @@ repos:
require_serial: true
additional_dependencies:
- "[email protected]"
- "[email protected].2"
- "svelte@5.16.0"
- "[email protected].3"
- "svelte@5.19.0"
- id: stylelint
name: stylelint
language: node
entry: stylelint --fix
types_or: ["css", "svelte"]
require_serial: true
additional_dependencies:
- "stylelint@16.12.0"
- "stylelint-config-recess-order@5.1.1"
- "stylelint-config-standard@36.0.1"
- "postcss-html@1.7.0"
- "stylelint@16.13.2"
- "stylelint-config-recess-order@6.0.0"
- "stylelint-config-standard@37.0.0"
- "postcss-html@1.8.0"
- id: eslint
name: eslint
language: node
Expand Down
28 changes: 14 additions & 14 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ alabaster==0.7.16
# via sphinx
altgraph==0.17.4
# via pyinstaller
anyio==4.7.0
anyio==4.8.0
# via watchfiles
astroid==3.3.8
# via pylint
Expand All @@ -15,12 +15,12 @@ babel==2.16.0
# sphinx
backports-tarfile==1.2.0
# via jaraco-context
beancount==3.0.0
beancount==3.1.0
# via
# fava (pyproject.toml)
# beangulp
# beanquery
beangulp==0.1.1
beangulp==0.2.0
# via fava (pyproject.toml)
beanquery==0.1.0
# via fava (pyproject.toml)
Expand Down Expand Up @@ -87,7 +87,7 @@ flask-babel==4.0.0
# via fava (pyproject.toml)
furo==2024.8.6
# via fava (pyproject.toml)
identify==2.6.4
identify==2.6.5
# via pre-commit
idna==3.10
# via
Expand Down Expand Up @@ -151,7 +151,7 @@ mccabe==0.7.0
# via pylint
mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
more-itertools==10.6.0
# via
# cheroot
# jaraco-classes
Expand Down Expand Up @@ -190,7 +190,7 @@ pluggy==1.5.0
# tox
ply==3.11
# via fava (pyproject.toml)
pre-commit==4.0.1
pre-commit==4.1.0
# via fava (pyproject.toml)
pycparser==2.22
# via cffi
Expand All @@ -207,15 +207,15 @@ pyexcel-ods3==0.6.1
# via fava (pyproject.toml)
pyexcel-xlsx==0.6.0
# via fava (pyproject.toml)
pygments==2.18.0
pygments==2.19.1
# via
# furo
# readme-renderer
# rich
# sphinx
pyinstaller==6.11.1
# via fava (pyproject.toml)
pyinstaller-hooks-contrib==2024.11
pyinstaller-hooks-contrib==2025.0
# via pyinstaller
pylint==3.3.3
# via fava (pyproject.toml)
Expand Down Expand Up @@ -257,7 +257,7 @@ rich==13.9.4
# via twine
secretstorage==3.3.3
# via keyring
setuptools==75.6.0
setuptools==75.8.0
# via
# fava (pyproject.toml)
# pyinstaller
Expand Down Expand Up @@ -314,11 +314,11 @@ tox==4.23.2
# via
# fava (pyproject.toml)
# tox-uv
tox-uv==1.17.0
tox-uv==1.19.0
# via fava (pyproject.toml)
twine==6.0.1
# via fava (pyproject.toml)
types-setuptools==75.6.0.20241223
types-setuptools==75.8.0.20250110
# via fava (pyproject.toml)
types-simplejson==3.19.0.20241221
# via fava (pyproject.toml)
Expand All @@ -335,13 +335,13 @@ urllib3==2.3.0
# via
# requests
# twine
uv==0.5.13
uv==0.5.21
# via tox-uv
virtualenv==20.28.0
virtualenv==20.29.1
# via
# pre-commit
# tox
watchfiles==1.0.3
watchfiles==1.0.4
# via fava (pyproject.toml)
werkzeug==3.1.3
# via
Expand Down
10 changes: 5 additions & 5 deletions frontend/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ a:focus-visible {
a:active,
a:focus,
a img {
border: 0;
outline: none;
border: 0;
}

a:focus-visible {
Expand Down Expand Up @@ -181,8 +181,8 @@ select {
}

input:invalid {
border: 1px solid var(--error);
outline: none;
border: 1px solid var(--error);
box-shadow: none;
}

Expand Down Expand Up @@ -214,10 +214,10 @@ button,
padding: 0.5em 0.75em;
color: var(--button-color);
cursor: pointer;
outline: 0;
background-color: var(--button-background);
border: 0;
border-radius: 0;
outline: 0;
}

.button {
Expand All @@ -241,8 +241,8 @@ button:hover,
.button:focus,
.button:active,
.button:hover {
filter: brightness(90%);
box-shadow: var(--box-shadow-button);
filter: brightness(90%);
}

button.unset {
Expand Down Expand Up @@ -285,8 +285,8 @@ button.link:hover,
.button.link:focus,
.button.link:active,
.button.link:hover {
filter: brightness(90%);
box-shadow: unset;
filter: brightness(90%);
}

button.round,
Expand Down
Loading

0 comments on commit b4a15ca

Please sign in to comment.