use input css vars and updated changelog

This commit is contained in:
Gani Georgiev
2026-05-06 00:56:12 +03:00
parent 5a144e1342
commit 4a4f8ad9db
5 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
## v0.38.0 (WIP)
- Fixed UI logs pagination.
- Fixed UI logs pagination when no custom range is specified.
- Fixed default CSP not allowing audio/video previews ([#7677](https://github.com/pocketbase/pocketbase/issues/7677)).
@@ -8,7 +8,7 @@
- Added an internal watcher to sync various runtime states between multiple PocketBase processes (e.g. memory store) using the same `pb_data`.
_This is helpful in case for example a separate PocketBase console command change the collections or application settings while the server is still running._
_The watcher is debounced and implemented via `pb_data/.notify` dir watch as a workaround to avoid depending on OS and SQLite driver specific APIs._
_The watcher is debounced and implemented by watching the special `pb_data/.notify` dir as a workaround to avoid depending on OS and SQLite driver specific APIs._
- Added new [Superuser IPs/CIDR subnets whitelist setting](https://pocketbase.io/docs/going-to-production/#limit-superusers-to-specific-ipssubnets).
The optional setting can be changed from the UI under _Dasboard > Settings > Application > Superuser IPs_.

View File

File diff suppressed because one or more lines are too long

4
ui/dist/index.html vendored
View File

@@ -13,9 +13,9 @@
<!-- prism -->
<script src="./libs/prism/prism.js" data-manual></script>
<script type="module" crossorigin src="./assets/index-1sz-Wwkw.js"></script>
<script type="module" crossorigin src="./assets/index-CXH-BQix.js"></script>
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
<link rel="stylesheet" crossorigin href="./assets/index-D92J8BMA.css">
<link rel="stylesheet" crossorigin href="./assets/index-DR1PnFnr.css">
</head>
<body>
</body>

View File

@@ -26,15 +26,15 @@
border-radius: 0;
}
td {
background: var(--surfaceAlt2Color);
border-left: 1px solid var(--surfaceAlt3Color);
border-top: 1px solid var(--surfaceAlt3Color);
background: var(--inputColor);
border-left: 1px solid var(--inputBorderColor);
border-top: 1px solid var(--inputBorderColor);
transition: background var(--animationSpeed);
&:first-child {
border-left: 0px;
}
&:focus-within {
background: var(--surfaceAlt3Color);
background: var(--inputFocusColor);
}
&:has(.error:not(.hidden)) {
background: var(--surfaceDangerColor);
@@ -64,7 +64,7 @@
td.col-new-btn {
padding: 3px;
&:focus-within {
background: var(--surfaceAlt2Color);
background: var(--inputColor);
}
}
.col-label {