Increase tree checkbox spacing

This commit is contained in:
Mikei386
2026-06-21 21:47:38 +02:00
parent 64412c6597
commit 7016992014
7 changed files with 15 additions and 9 deletions
-1
View File
@@ -1 +0,0 @@
6223df8fefd872c4e102a9dfadb8103bce4de364d2836b85d773591c92025c4b urbm-2026.06.21.r010-x86_64-1.txz
+1
View File
@@ -0,0 +1 @@
ccd839060bbcc55fe1c634eb64869d3e98e2e56f3e8c878d04dc28cbee761d74 urbm-2026.06.21.r011-x86_64-1.txz
+5 -2
View File
@@ -2,13 +2,16 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "urbm">
<!ENTITY author "Michael Roll">
<!ENTITY version "2026.06.21.r010">
<!ENTITY version "2026.06.21.r011">
<!ENTITY pluginURL "https://git.casaderoll.de/michael/URBM/raw/branch/main/dist/urbm.plg">
<!ENTITY packageURL "https://git.casaderoll.de/michael/URBM/raw/branch/main/dist/urbm-&version;-x86_64-1.txz">
<!ENTITY packageSHA256 "6223df8fefd872c4e102a9dfadb8103bce4de364d2836b85d773591c92025c4b">
<!ENTITY packageSHA256 "ccd839060bbcc55fe1c634eb64869d3e98e2e56f3e8c878d04dc28cbee761d74">
]>
<PLUGIN name="&name;" author="&author;" version="&version;" pluginURL="&pluginURL;" min="7.0.0" support="https://git.casaderoll.de/michael/URBM/issues" icon="urbm.png">
<CHANGES>
### 2026.06.21.r011
- Increase spacing between folder disclosure controls and checkboxes in all selectable tree browsers.
### 2026.06.21.r010
- Enrich Unraid and Gotify notifications with structured job, repository, duration, snapshot, file, and data statistics.
- Use status-specific notification titles with success, warning, and failure indicators.
+4 -1
View File
@@ -2,13 +2,16 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "urbm">
<!ENTITY author "Michael Roll">
<!ENTITY version "2026.06.21.r010">
<!ENTITY version "2026.06.21.r011">
<!ENTITY pluginURL "https://git.casaderoll.de/michael/URBM/raw/branch/main/dist/urbm.plg">
<!ENTITY packageURL "https://git.casaderoll.de/michael/URBM/raw/branch/main/dist/urbm-&version;-x86_64-1.txz">
<!ENTITY packageSHA256 "REPLACE_DURING_RELEASE">
]>
<PLUGIN name="&name;" author="&author;" version="&version;" pluginURL="&pluginURL;" min="7.0.0" support="https://git.casaderoll.de/michael/URBM/issues" icon="urbm.png">
<CHANGES>
### 2026.06.21.r011
- Increase spacing between folder disclosure controls and checkboxes in all selectable tree browsers.
### 2026.06.21.r010
- Enrich Unraid and Gotify notifications with structured job, repository, duration, snapshot, file, and data statistics.
- Use status-specific notification titles with success, warning, and failure indicators.
+4 -4
View File
@@ -9,12 +9,12 @@ Tag="URBM Unraid Restic Backup Manager backup snapshots restore"
<?php
$pluginRoot = '/plugins/urbm';
?>
<link rel="stylesheet" href="<?= $pluginRoot ?>/assets/urbm.css?v=20260621r010">
<link rel="stylesheet" href="<?= $pluginRoot ?>/assets/urbm.css?v=20260621r011">
<div id="urbm-app" data-api="<?= $pluginRoot ?>/api.php">
<header class="bu-header">
<div class="bu-brand">
<img class="bu-logo" src="<?= $pluginRoot ?>/images/urbm.png?v=20260621r010" alt="URBM-Logo">
<div><h1>URBM <span class="bu-version">2026.06.21.r010</span></h1><p>Restic Backup Manager für Unraid</p></div>
<img class="bu-logo" src="<?= $pluginRoot ?>/images/urbm.png?v=20260621r011" alt="URBM-Logo">
<div><h1>URBM <span class="bu-version">2026.06.21.r011</span></h1><p>Restic Backup Manager für Unraid</p></div>
</div>
<div id="bu-health" class="bu-health" tabindex="0" data-tooltip="Zeigt, ob die URBM-Hintergrundkomponente erreichbar ist. Beispiel: 'Daemon online' bedeutet, dass Jobs gestartet werden können.">Verbindung wird hergestellt...</div>
</header>
@@ -32,4 +32,4 @@ $pluginRoot = '/plugins/urbm';
<div id="bu-tooltip" role="tooltip" aria-hidden="true"></div>
</div>
<script>window.URBM_CSRF = <?= json_encode($var['csrf_token'] ?? '') ?>;</script>
<script src="<?= $pluginRoot ?>/assets/urbm-2026.06.21.r010.js"></script>
<script src="<?= $pluginRoot ?>/assets/urbm-2026.06.21.r011.js"></script>
+1 -1
View File
@@ -87,7 +87,7 @@
.bu-tree { background: var(--bu-input); border: 1px solid var(--bu-border); border-radius: 6px; max-height: 520px; overflow: auto; padding: 6px; }
.bu-tree-node { min-width: 0; }
.bu-tree-node + .bu-tree-node { border-top: 1px solid color-mix(in srgb, var(--bu-border) 45%, transparent); }
.bu-tree-row { align-items: center; border-radius: 6px; display: grid; gap: 9px; grid-template-columns: 34px 24px minmax(0, 1fr); margin-left: calc(var(--bu-tree-depth) * 24px); min-height: 48px; padding: 5px 8px; }
.bu-tree-row { align-items: center; border-radius: 6px; display: grid; gap: 14px; grid-template-columns: 34px 28px minmax(0, 1fr); margin-left: calc(var(--bu-tree-depth) * 24px); min-height: 48px; padding: 5px 8px; }
.bu-dir-tree-row { grid-template-columns: 34px minmax(0, 1fr) auto; }
.bu-tree-row:hover { background: var(--bu-panel-alt); }
.bu-source-partial > .bu-tree-row { background: rgba(255, 140, 47, .09); background: color-mix(in srgb, var(--bu-accent) 9%, transparent); }