feat(dashboard): redesign quick access as visual tiles
This commit is contained in:
@@ -341,7 +341,8 @@
|
|||||||
.service-grid,
|
.service-grid,
|
||||||
.quick-grid {
|
.quick-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 12px;
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats-grid {
|
.stats-grid {
|
||||||
@@ -761,6 +762,10 @@
|
|||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.quick-grid {
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
|
||||||
.status-stack {
|
.status-stack {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
@@ -793,6 +798,45 @@
|
|||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Quick Access Tiles */
|
||||||
|
.quick-tile {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 18px 10px 14px;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid rgba(0, 220, 140, 0.12);
|
||||||
|
background: rgba(4, 12, 10, 0.6);
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
font-family: var(--font-mono);
|
||||||
|
font-size: 0.72rem;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-align: center;
|
||||||
|
transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quick-tile:hover {
|
||||||
|
background: rgba(0, 220, 140, 0.09);
|
||||||
|
border-color: rgba(0, 220, 140, 0.35);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.quick-tile-icon {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quick-tile-label {
|
||||||
|
color: var(--text-dim);
|
||||||
|
font-size: 0.68rem;
|
||||||
|
letter-spacing: 0.08em;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -1097,7 +1141,7 @@
|
|||||||
<section class="section">
|
<section class="section">
|
||||||
<div class="section-head">
|
<div class="section-head">
|
||||||
<span class="section-label">Network & Health</span>
|
<span class="section-label">Network & Health</span>
|
||||||
<p>DNS filtering · Disk integrity</p>
|
<p>DNS filtering · Disk integrity</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="net-health-grid">
|
<div class="net-health-grid">
|
||||||
@@ -1145,7 +1189,7 @@
|
|||||||
<h2 class="card-title">Disk Health</h2>
|
<h2 class="card-title">Disk Health</h2>
|
||||||
|
|
||||||
<div class="scrutiny-stats" id="scrutiny-list">
|
<div class="scrutiny-stats" id="scrutiny-list">
|
||||||
<div class="storage-row"><strong style="color:var(--text-dim)">No data</strong><span>—</span><span></span><span></span></div>
|
<div class="storage-row"><strong style="color:var(--text-dim)">No data</strong><span>â</span><span></span><span></span></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
Reference in New Issue
Block a user