release: WRNexusJS 0.2.55
This commit is contained in:
@@ -952,3 +952,149 @@
|
||||
flex: 1 1 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* --- Expanded foundation catalog ---------------------------------------- */
|
||||
.wire-container--narrow {
|
||||
max-width: 44rem;
|
||||
}
|
||||
.wire-container--wide {
|
||||
max-width: 90rem;
|
||||
}
|
||||
.wire-full-bleed {
|
||||
width: 100vw;
|
||||
margin-inline: calc(50% - 50vw);
|
||||
}
|
||||
.wire-flex {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
min-width: 0;
|
||||
}
|
||||
.wire-auto-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
.wire-split-layout {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
align-items: center;
|
||||
gap: clamp(1.5rem, 5vw, 5rem);
|
||||
}
|
||||
.wire-sidebar-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
|
||||
gap: clamp(1rem, 4vw, 3rem);
|
||||
}
|
||||
.wire-sticky-layout {
|
||||
position: sticky;
|
||||
top: 1rem;
|
||||
align-self: start;
|
||||
}
|
||||
.wire-aspect-ratio {
|
||||
aspect-ratio: 16 / 9;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wire-panel,
|
||||
.wire-surface,
|
||||
.wire-well,
|
||||
.wire-inset-panel {
|
||||
min-width: 0;
|
||||
padding: clamp(1rem, 3vw, 1.5rem);
|
||||
color: var(--wire-color-text);
|
||||
border: 1px solid var(--wire-color-border);
|
||||
border-radius: var(--wire-radius);
|
||||
}
|
||||
.wire-panel,
|
||||
.wire-surface {
|
||||
background: var(--wire-color-surface);
|
||||
box-shadow: var(--wire-shadow-1);
|
||||
}
|
||||
.wire-well,
|
||||
.wire-inset-panel {
|
||||
background: var(--wire-color-surface-2);
|
||||
box-shadow: inset 0 1px 2px rgb(0 0 0 / 0.06);
|
||||
}
|
||||
.wire-scroll-area {
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
overscroll-behavior: contain;
|
||||
scrollbar-gutter: stable;
|
||||
}
|
||||
.wire-sticky {
|
||||
position: sticky;
|
||||
top: 1rem;
|
||||
z-index: 10;
|
||||
}
|
||||
.wire-muted {
|
||||
color: var(--wire-color-muted);
|
||||
}
|
||||
.wire-catalog-card {
|
||||
position: relative;
|
||||
display: grid;
|
||||
gap: 0.75rem;
|
||||
min-width: 0;
|
||||
padding: clamp(1rem, 3vw, 1.5rem);
|
||||
}
|
||||
.wire-catalog-card h3,
|
||||
.wire-catalog-card p {
|
||||
margin: 0;
|
||||
}
|
||||
.wire-catalog-card p {
|
||||
color: var(--wire-color-muted);
|
||||
line-height: 1.6;
|
||||
}
|
||||
.wire-catalog-card__link {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: inherit;
|
||||
}
|
||||
.wire-catalog-card__link:focus-visible {
|
||||
outline: 2px solid var(--wire-color-primary);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
.wire-catalog-card--glass {
|
||||
background: color-mix(in srgb, var(--wire-color-surface) 80%, transparent);
|
||||
backdrop-filter: blur(12px);
|
||||
}
|
||||
.wire-catalog-card--outlined {
|
||||
box-shadow: none;
|
||||
}
|
||||
.wire-catalog-card--elevated {
|
||||
box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.14);
|
||||
}
|
||||
.wire-catalog-card--error {
|
||||
border-color: var(--wire-color-danger);
|
||||
}
|
||||
.wire-catalog-card--success {
|
||||
border-color: var(--wire-color-success);
|
||||
}
|
||||
.wire-catalog-card--warning {
|
||||
border-color: var(--wire-color-warning);
|
||||
}
|
||||
.wire-catalog-badge {
|
||||
min-height: 1.5rem;
|
||||
}
|
||||
.wire-catalog-badge--notificationdot,
|
||||
.wire-catalog-badge--onlineindicator,
|
||||
.wire-catalog-badge--healthindicator {
|
||||
min-width: 0.65rem;
|
||||
width: 0.65rem;
|
||||
height: 0.65rem;
|
||||
min-height: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
color: transparent;
|
||||
border-radius: 999px;
|
||||
background: var(--wire-color-success);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.wire-split-layout,
|
||||
.wire-sidebar-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.wire-sticky-layout {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user