Added galery

This commit is contained in:
2026-01-26 10:37:06 +01:00
parent d9b4c73baa
commit 33243fbe4a
31 changed files with 2508 additions and 229 deletions

View File

@@ -124,28 +124,41 @@
background: var(--dbm-bg-tertiary);
}
.tree-header:hover .tree-toggle {
background: rgba(0, 0, 0, 0.06);
}
.tree-header.active {
background: var(--dbm-bg-tertiary);
border-left-color: var(--dbm-accent);
}
.tree-toggle {
width: 16px;
height: 16px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 4px;
margin-right: 2px;
margin-left: -4px;
color: var(--dbm-text-muted);
transition: var(--dbm-transition);
flex-shrink: 0;
border-radius: 3px;
cursor: pointer;
}
.tree-toggle:hover {
background: var(--dbm-bg-tertiary);
color: var(--dbm-text);
}
.tree-toggle svg,
.tree-toggle [data-lucide] {
width: 10px;
height: 10px;
width: 12px;
height: 12px;
transition: transform 0.15s ease;
pointer-events: none;
}
.tree-item.expanded > .tree-header .tree-toggle svg,
@@ -505,12 +518,7 @@ a.tree-label:hover {
overflow: hidden;
}
.sql-keyword { color: #555; font-weight: 600; }
.sql-function { color: #666; }
.sql-string { color: #888; }
.sql-number { color: #777; }
.sql-operator { color: #444; }
.sql-comment { color: #aaa; font-style: italic; }
/* SQL highlighting colors moved to sql/index.php view */
.dbm-sql-actions {
display: flex;