Improve visibility

This commit is contained in:
2025-12-09 16:16:47 +01:00
parent 8ad4f267da
commit 77c2775b7f
3 changed files with 142 additions and 16 deletions

View File

@@ -122,6 +122,12 @@ body {
box-shadow: none;
}
.ghost {
background: transparent;
border: 1px solid #2d3a57;
box-shadow: none;
}
.secondary {
background: #475569;
}
@@ -176,6 +182,12 @@ body {
border-color: rgba(148, 163, 184, 0.2);
}
.badge.danger {
background: rgba(248, 113, 113, 0.12);
color: #fecdd3;
border-color: rgba(248, 113, 113, 0.45);
}
.badge-row {
display: flex;
gap: 8px;
@@ -475,6 +487,29 @@ body {
margin: 0;
}
.selected-asset-banner {
display: grid;
grid-template-columns: 1fr auto;
gap: 12px;
padding: 14px;
border-radius: 12px;
background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.05));
border: 1px solid rgba(124, 58, 237, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.selected-asset-main {
display: flex;
flex-direction: column;
gap: 6px;
}
.selected-asset-actions {
display: flex;
align-items: center;
gap: 8px;
}
.panel ul {
list-style: none;
padding: 0;
@@ -560,6 +595,38 @@ body {
gap: 8px;
}
.icon-button {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 10px;
border-radius: 8px;
border: 1px solid rgba(148, 163, 184, 0.25);
background: rgba(255, 255, 255, 0.04);
color: #e2e8f0;
transition: all 0.15s ease;
}
.icon-button .icon {
font-size: 16px;
line-height: 1;
}
.icon-button:hover {
border-color: rgba(124, 58, 237, 0.4);
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}
.icon-button.danger {
border-color: rgba(248, 113, 113, 0.35);
color: #fecdd3;
}
.icon-button.danger:hover {
border-color: rgba(248, 113, 113, 0.6);
background: rgba(248, 113, 113, 0.08);
}
.asset-item.hidden {
opacity: 0.6;
}
@@ -602,6 +669,27 @@ body {
color: #e2e8f0;
}
.number-input {
position: relative;
padding-right: 48px !important;
font-variant-numeric: tabular-nums;
}
.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.number-input {
-moz-appearance: textfield;
}
.number-input:focus {
border-color: #7c3aed;
box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}
.control-actions {
display: flex;
gap: 8px;