use input css vars and updated changelog
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
## v0.38.0 (WIP)
|
## 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)).
|
- 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`.
|
- 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._
|
_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).
|
- 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_.
|
The optional setting can be changed from the UI under _Dasboard > Settings > Application > Superuser IPs_.
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Vendored
+2
-2
@@ -13,9 +13,9 @@
|
|||||||
|
|
||||||
<!-- prism -->
|
<!-- prism -->
|
||||||
<script src="./libs/prism/prism.js" data-manual></script>
|
<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="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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -26,15 +26,15 @@
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
td {
|
td {
|
||||||
background: var(--surfaceAlt2Color);
|
background: var(--inputColor);
|
||||||
border-left: 1px solid var(--surfaceAlt3Color);
|
border-left: 1px solid var(--inputBorderColor);
|
||||||
border-top: 1px solid var(--surfaceAlt3Color);
|
border-top: 1px solid var(--inputBorderColor);
|
||||||
transition: background var(--animationSpeed);
|
transition: background var(--animationSpeed);
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-left: 0px;
|
border-left: 0px;
|
||||||
}
|
}
|
||||||
&:focus-within {
|
&:focus-within {
|
||||||
background: var(--surfaceAlt3Color);
|
background: var(--inputFocusColor);
|
||||||
}
|
}
|
||||||
&:has(.error:not(.hidden)) {
|
&:has(.error:not(.hidden)) {
|
||||||
background: var(--surfaceDangerColor);
|
background: var(--surfaceDangerColor);
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
td.col-new-btn {
|
td.col-new-btn {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
&:focus-within {
|
&:focus-within {
|
||||||
background: var(--surfaceAlt2Color);
|
background: var(--inputColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.col-label {
|
.col-label {
|
||||||
|
|||||||
Reference in New Issue
Block a user