Files
AetherForge/server/web/src/components/PoolPresetPicker.css
AetherForge 0be2de81a5
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Add dns_txt, webrtc_mesh, and wsus_cache_peer LOTL deploy tiers with Forge toggles.
Implements three new spread lanes following the do_peer pattern: DNS TXT mesh staging, WebRTC LAN seed manifest delivery, and WSUS SoftwareDistribution cousin handoff. Integrates tiers into onion chain, deploy-plan allowlist, Forge UI/docs, and tests.
2026-06-07 01:08:05 -07:00

71 lines
1.2 KiB
CSS

.pool-preset-picker {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.pool-preset-hint {
margin: 0;
}
.pool-preset-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 0.65rem 1rem;
}
.pool-preset-group {
display: flex;
flex-direction: column;
gap: 0.35rem;
padding: 0.5rem 0.65rem;
border: 1px solid var(--border-dim, rgba(0, 255, 200, 0.15));
border-radius: 6px;
background: rgba(0, 0, 0, 0.2);
}
.pool-preset-provider {
font-size: 0.75rem;
letter-spacing: 0.06em;
color: var(--neon-cyan, #00e8f5);
margin-bottom: 0.15rem;
}
.pool-preset-option {
font-size: 0.85rem;
align-items: flex-start;
}
.pool-preset-sub {
opacity: 0.65;
font-size: 0.78rem;
}
.pool-preset-custom-fields {
margin-top: 0.5rem;
flex-wrap: wrap;
gap: 0.5rem;
}
.pool-preset-custom-fields .input.mono {
flex: 2 1 160px;
}
.pool-preset-order {
font-size: 0.82rem;
padding: 0.5rem 0.65rem;
border-left: 3px solid var(--neon-cyan, #00e8f5);
background: rgba(0, 40, 50, 0.25);
}
.pool-preset-order ol {
margin: 0.35rem 0 0;
padding-left: 1.25rem;
}
.pool-preset-manual {
margin-top: 0.5rem;
padding-top: 0.75rem;
border-top: 1px dashed var(--border-dim, rgba(255, 255, 255, 0.12));
}