1410 lines
32 KiB
CSS
1410 lines
32 KiB
CSS
/*
|
|
* Wire UI stylesheet. Served once at /__wrnexus/ui.css. Every value is a theme
|
|
* token (var(--wire-*)), so components restyle instantly when the theme changes.
|
|
* Override any of these classes in your own CSS (it loads after ui.css).
|
|
*/
|
|
|
|
/* --- Layout --------------------------------------------------------------- */
|
|
.wire-container {
|
|
width: 100%;
|
|
max-width: 960px;
|
|
margin-inline: auto;
|
|
padding-inline: 1rem;
|
|
}
|
|
.wire-stack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.wire-hstack {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
.wire-grid {
|
|
display: grid;
|
|
}
|
|
.wire-spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
.wire-divider {
|
|
border: 0;
|
|
border-top: 1px solid var(--wire-color-border);
|
|
margin: 0;
|
|
}
|
|
|
|
/* gap scale (shared by stack / hstack / grid) */
|
|
.wire-gap-0 {
|
|
gap: 0;
|
|
}
|
|
.wire-gap-1 {
|
|
gap: 0.25rem;
|
|
}
|
|
.wire-gap-2 {
|
|
gap: 0.5rem;
|
|
}
|
|
.wire-gap-3 {
|
|
gap: 0.75rem;
|
|
}
|
|
.wire-gap-4 {
|
|
gap: 1rem;
|
|
}
|
|
.wire-gap-5 {
|
|
gap: 1.5rem;
|
|
}
|
|
.wire-gap-6 {
|
|
gap: 2rem;
|
|
}
|
|
.wire-gap-8 {
|
|
gap: 3rem;
|
|
}
|
|
|
|
.wire-items-start {
|
|
align-items: flex-start;
|
|
}
|
|
.wire-items-center {
|
|
align-items: center;
|
|
}
|
|
.wire-items-end {
|
|
align-items: flex-end;
|
|
}
|
|
.wire-items-stretch {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.wire-cols-1 {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
.wire-cols-2 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
.wire-cols-3 {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
.wire-cols-4 {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
.wire-cols-5 {
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
.wire-cols-6 {
|
|
grid-template-columns: repeat(6, 1fr);
|
|
}
|
|
@media (max-width: 640px) {
|
|
.wire-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* --- Button --------------------------------------------------------------- */
|
|
.wire-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.4rem;
|
|
font: inherit;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
border: 1px solid transparent;
|
|
border-radius: var(--wire-radius-sm);
|
|
padding: 0.55rem 0.9rem;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition:
|
|
filter 0.15s ease,
|
|
background 0.15s ease,
|
|
transform 0.04s ease;
|
|
}
|
|
.wire-btn:active {
|
|
transform: translateY(1px);
|
|
}
|
|
.wire-btn:focus-visible {
|
|
outline: 2px solid var(--wire-color-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.wire-btn--default {
|
|
background: var(--wire-color-surface-2);
|
|
color: var(--wire-color-text);
|
|
border-color: var(--wire-color-border);
|
|
}
|
|
.wire-btn--primary {
|
|
background: var(--wire-color-primary);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
.wire-btn--primary:hover {
|
|
background: var(--wire-color-primary-hover);
|
|
}
|
|
.wire-btn--danger {
|
|
background: var(--wire-color-danger);
|
|
color: #fff;
|
|
}
|
|
.wire-btn--ghost {
|
|
background: transparent;
|
|
color: var(--wire-color-text);
|
|
border-color: var(--wire-color-border);
|
|
}
|
|
.wire-btn--ghost:hover {
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
|
|
.wire-btn--sm {
|
|
padding: 0.35rem 0.6rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
.wire-btn--md {
|
|
padding: 0.55rem 0.9rem;
|
|
}
|
|
.wire-btn--lg {
|
|
padding: 0.7rem 1.2rem;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
/* --- Inputs --------------------------------------------------------------- */
|
|
.wire-input {
|
|
width: 100%;
|
|
font: inherit;
|
|
color: var(--wire-color-text);
|
|
background: var(--wire-color-bg);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius-sm);
|
|
padding: 0.5rem 0.7rem;
|
|
}
|
|
.wire-input::placeholder {
|
|
color: var(--wire-color-muted);
|
|
}
|
|
.wire-input:focus-visible {
|
|
outline: 2px solid var(--wire-color-primary);
|
|
outline-offset: 1px;
|
|
border-color: var(--wire-color-primary);
|
|
}
|
|
.wire-textarea {
|
|
resize: vertical;
|
|
min-height: 4.5rem;
|
|
}
|
|
|
|
/* Validation states (set by /__wrnexus/validate.js). */
|
|
.wire-invalid {
|
|
border-color: var(--wire-color-danger) !important;
|
|
}
|
|
.wire-field-error {
|
|
display: block;
|
|
min-height: 1em;
|
|
margin-top: 0.25rem;
|
|
color: var(--wire-color-danger);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.wire-check {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
.wire-check__box {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
accent-color: var(--wire-color-primary);
|
|
}
|
|
.wire-check__box:focus-visible {
|
|
outline: 2px solid var(--wire-color-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
.wire-check__label {
|
|
color: var(--wire-color-text);
|
|
}
|
|
|
|
/* --- Badge ---------------------------------------------------------------- */
|
|
.wire-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 999px;
|
|
}
|
|
.wire-badge--default {
|
|
background: var(--wire-color-surface-2);
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-badge--primary {
|
|
background: var(--wire-color-primary);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
.wire-badge--success {
|
|
background: var(--wire-color-success);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
.wire-badge--danger {
|
|
background: var(--wire-color-danger);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
.wire-badge--warning {
|
|
background: var(--wire-color-warning);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
|
|
/* --- Alert ---------------------------------------------------------------- */
|
|
.wire-alert {
|
|
border: 1px solid var(--wire-color-border);
|
|
border-left-width: 4px;
|
|
border-radius: var(--wire-radius-sm);
|
|
padding: 0.75rem 1rem;
|
|
background: var(--wire-color-surface);
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-alert__title {
|
|
font-weight: 700;
|
|
margin-bottom: 0.15rem;
|
|
}
|
|
.wire-alert__title:empty {
|
|
display: none;
|
|
}
|
|
.wire-alert__body {
|
|
color: var(--wire-color-muted);
|
|
}
|
|
.wire-alert--info {
|
|
border-left-color: var(--wire-color-info);
|
|
}
|
|
.wire-alert--success {
|
|
border-left-color: var(--wire-color-success);
|
|
}
|
|
.wire-alert--danger {
|
|
border-left-color: var(--wire-color-danger);
|
|
}
|
|
.wire-alert--warning {
|
|
border-left-color: var(--wire-color-warning);
|
|
}
|
|
|
|
/* --- Card ----------------------------------------------------------------- */
|
|
.wire-card {
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
padding: 1.25rem;
|
|
box-shadow: var(--wire-shadow-1);
|
|
}
|
|
|
|
/* --- Avatar --------------------------------------------------------------- */
|
|
.wire-avatar {
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
border-radius: 999px;
|
|
object-fit: cover;
|
|
border: 1px solid var(--wire-color-border);
|
|
}
|
|
|
|
/* --- Spinner -------------------------------------------------------------- */
|
|
.wire-spinner {
|
|
display: inline-block;
|
|
width: 1.15rem;
|
|
height: 1.15rem;
|
|
border: 2px solid var(--wire-color-border);
|
|
border-top-color: var(--wire-color-primary);
|
|
border-radius: 999px;
|
|
animation: wire-spin 0.7s linear infinite;
|
|
}
|
|
@keyframes wire-spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* --- Disclosure ----------------------------------------------------------- */
|
|
.wire-disclosure {
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius-sm);
|
|
background: var(--wire-color-surface);
|
|
}
|
|
.wire-disclosure__summary {
|
|
cursor: pointer;
|
|
padding: 0.6rem 0.9rem;
|
|
font-weight: 600;
|
|
}
|
|
.wire-disclosure__summary:focus-visible {
|
|
outline: 2px solid var(--wire-color-primary);
|
|
outline-offset: -2px;
|
|
}
|
|
.wire-disclosure__body {
|
|
padding: 0 0.9rem 0.75rem;
|
|
color: var(--wire-color-muted);
|
|
}
|
|
|
|
/* --- Select --------------------------------------------------------------- */
|
|
.wire-select {
|
|
appearance: none;
|
|
background-image:
|
|
linear-gradient(45deg, transparent 50%, var(--wire-color-muted) 50%),
|
|
linear-gradient(135deg, var(--wire-color-muted) 50%, transparent 50%);
|
|
background-position:
|
|
calc(100% - 18px) 1.05em,
|
|
calc(100% - 13px) 1.05em;
|
|
background-size:
|
|
5px 5px,
|
|
5px 5px;
|
|
background-repeat: no-repeat;
|
|
padding-right: 2rem;
|
|
}
|
|
|
|
/* --- Switch --------------------------------------------------------------- */
|
|
.wire-switch {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
.wire-switch__input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.wire-switch__track {
|
|
position: relative;
|
|
width: 2.25rem;
|
|
height: 1.25rem;
|
|
border-radius: 999px;
|
|
background: var(--wire-color-border);
|
|
transition: background 0.15s ease;
|
|
flex: none;
|
|
}
|
|
.wire-switch__thumb {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
width: calc(1.25rem - 4px);
|
|
height: calc(1.25rem - 4px);
|
|
border-radius: 999px;
|
|
background: #fff;
|
|
transition: transform 0.15s ease;
|
|
}
|
|
.wire-switch__input:checked + .wire-switch__track {
|
|
background: var(--wire-color-primary);
|
|
}
|
|
.wire-switch__input:checked + .wire-switch__track .wire-switch__thumb {
|
|
transform: translateX(1rem);
|
|
}
|
|
.wire-switch__input:focus-visible + .wire-switch__track {
|
|
outline: 2px solid var(--wire-color-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
.wire-switch__label {
|
|
color: var(--wire-color-text);
|
|
}
|
|
|
|
/* --- Progress ------------------------------------------------------------- */
|
|
.wire-progress {
|
|
appearance: none;
|
|
width: 100%;
|
|
height: 0.5rem;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
overflow: hidden;
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
.wire-progress::-webkit-progress-bar {
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
.wire-progress::-webkit-progress-value {
|
|
background: var(--wire-color-primary);
|
|
border-radius: 999px;
|
|
}
|
|
.wire-progress::-moz-progress-bar {
|
|
background: var(--wire-color-primary);
|
|
}
|
|
|
|
/* --- Tag ------------------------------------------------------------------ */
|
|
.wire-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.3rem;
|
|
font-size: 0.78rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
padding: 0.2rem 0.5rem;
|
|
border-radius: var(--wire-radius-sm);
|
|
border: 1px solid var(--wire-color-border);
|
|
background: var(--wire-color-surface-2);
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-tag--primary {
|
|
background: var(--wire-color-primary);
|
|
color: var(--wire-color-primary-contrast);
|
|
border-color: transparent;
|
|
}
|
|
.wire-tag--success {
|
|
background: var(--wire-color-success);
|
|
color: #05210f;
|
|
border-color: transparent;
|
|
}
|
|
.wire-tag--danger {
|
|
background: var(--wire-color-danger);
|
|
color: #fff;
|
|
border-color: transparent;
|
|
}
|
|
.wire-tag--warning {
|
|
background: var(--wire-color-warning);
|
|
color: #201400;
|
|
border-color: transparent;
|
|
}
|
|
|
|
/* --- Skeleton ------------------------------------------------------------- */
|
|
.wire-skeleton {
|
|
display: inline-block;
|
|
border-radius: var(--wire-radius-sm);
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--wire-color-surface-2) 25%,
|
|
var(--wire-color-border) 37%,
|
|
var(--wire-color-surface-2) 63%
|
|
);
|
|
background-size: 400% 100%;
|
|
animation: wire-shimmer 1.4s ease infinite;
|
|
}
|
|
@keyframes wire-shimmer {
|
|
0% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0 50%;
|
|
}
|
|
}
|
|
|
|
/* --- Tooltip -------------------------------------------------------------- */
|
|
.wire-tooltip {
|
|
position: relative;
|
|
display: inline-flex;
|
|
cursor: help;
|
|
}
|
|
.wire-tooltip::after {
|
|
content: attr(data-tooltip);
|
|
position: absolute;
|
|
bottom: calc(100% + 6px);
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
white-space: nowrap;
|
|
background: var(--wire-color-text);
|
|
color: var(--wire-color-bg);
|
|
font-size: 0.75rem;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: var(--wire-radius-sm);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.12s ease;
|
|
z-index: 10;
|
|
}
|
|
.wire-tooltip:hover::after,
|
|
.wire-tooltip:focus-visible::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* --- Table ---------------------------------------------------------------- */
|
|
.wire-table-wrap {
|
|
overflow-x: auto;
|
|
}
|
|
.wire-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.95rem;
|
|
}
|
|
.wire-table th,
|
|
.wire-table td {
|
|
text-align: left;
|
|
padding: 0.5rem 0.75rem;
|
|
border-bottom: 1px solid var(--wire-color-border);
|
|
}
|
|
.wire-table th {
|
|
font-weight: 700;
|
|
color: var(--wire-color-muted);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.wire-table tbody tr:hover {
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
scroll-behavior: auto !important;
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|
|
:where(button, a, input, select, textarea):focus-visible {
|
|
outline: 2px solid rgb(124 58 237);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* --- Component-system foundations --------------------------------------- */
|
|
.wire-type {
|
|
margin: 0;
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-type--display {
|
|
font-size: clamp(2.25rem, 7vw, 4.75rem);
|
|
line-height: 1.02;
|
|
font-weight: 800;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
.wire-type--heading {
|
|
font-size: clamp(1.75rem, 4vw, 3rem);
|
|
line-height: 1.1;
|
|
font-weight: 750;
|
|
letter-spacing: -0.025em;
|
|
}
|
|
.wire-type--lead {
|
|
font-size: clamp(1.05rem, 2vw, 1.25rem);
|
|
line-height: 1.65;
|
|
color: var(--wire-color-muted);
|
|
}
|
|
.wire-type--body {
|
|
font-size: 1rem;
|
|
line-height: 1.65;
|
|
}
|
|
.wire-type--small {
|
|
font-size: 0.875rem;
|
|
line-height: 1.5;
|
|
}
|
|
.wire-text--center {
|
|
text-align: center;
|
|
}
|
|
.wire-text--end {
|
|
text-align: end;
|
|
}
|
|
|
|
.wire-form {
|
|
display: grid;
|
|
gap: 1.25rem;
|
|
width: 100%;
|
|
}
|
|
.wire-form-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
.wire-field,
|
|
.wire-fieldset {
|
|
display: grid;
|
|
gap: 0.45rem;
|
|
min-width: 0;
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.wire-label {
|
|
color: var(--wire-color-text);
|
|
font-size: 0.875rem;
|
|
font-weight: 650;
|
|
line-height: 1.4;
|
|
}
|
|
.wire-required,
|
|
.wire-field-message--error {
|
|
color: var(--wire-color-danger);
|
|
}
|
|
.wire-optional,
|
|
.wire-field-message--help {
|
|
color: var(--wire-color-muted);
|
|
font-weight: 400;
|
|
}
|
|
.wire-field-message {
|
|
margin: 0;
|
|
font-size: 0.8125rem;
|
|
line-height: 1.5;
|
|
}
|
|
.wire-input:disabled,
|
|
.wire-btn:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.58;
|
|
}
|
|
.wire-input[aria-invalid="true"] {
|
|
border-color: var(--wire-color-danger);
|
|
}
|
|
.wire-multiselect {
|
|
min-height: 8rem;
|
|
}
|
|
.wire-loading-button {
|
|
min-height: 44px;
|
|
}
|
|
.wire-spinner--inline {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
}
|
|
|
|
.wire-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 1000;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 1rem;
|
|
background: rgb(0 0 0 / 0.55);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
.wire-dialog {
|
|
width: min(100%, 32rem);
|
|
max-height: calc(100dvh - 2rem);
|
|
overflow: auto;
|
|
padding: clamp(1.25rem, 4vw, 2rem);
|
|
color: var(--wire-color-text);
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
box-shadow: var(--wire-shadow-1);
|
|
}
|
|
.wire-dialog__title {
|
|
margin: 0;
|
|
font-size: 1.35rem;
|
|
line-height: 1.25;
|
|
}
|
|
.wire-dialog__description {
|
|
margin: 0.75rem 0 0;
|
|
color: var(--wire-color-muted);
|
|
line-height: 1.6;
|
|
}
|
|
.wire-dialog__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.75rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
.wire-dialog__actions--wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.wire-filter-bar {
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
}
|
|
.wire-filter-bar__controls {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-wrap: wrap;
|
|
align-items: end;
|
|
gap: 0.75rem;
|
|
}
|
|
.wire-table--striped tbody tr:nth-child(even) {
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
.wire-comparison-table {
|
|
min-width: 42rem;
|
|
}
|
|
|
|
.wire-desktop-nav > ul,
|
|
.wire-mobile-nav ul,
|
|
.wire-mega-menu ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.wire-desktop-nav > ul {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
.wire-desktop-nav a,
|
|
.wire-mega-menu__trigger {
|
|
display: inline-flex;
|
|
min-height: 44px;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
padding: 0.6rem 0.8rem;
|
|
color: var(--wire-color-text);
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: var(--wire-radius-sm);
|
|
text-decoration: none;
|
|
font: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.wire-desktop-nav a:hover,
|
|
.wire-mega-menu__trigger:hover {
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
.wire-mega-menu {
|
|
position: relative;
|
|
}
|
|
.wire-mega-menu__panel {
|
|
position: absolute;
|
|
z-index: 100;
|
|
top: calc(100% + 0.5rem);
|
|
left: 0;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(10rem, 1fr));
|
|
gap: 1.25rem;
|
|
width: min(46rem, calc(100vw - 2rem));
|
|
padding: 1.25rem;
|
|
color: var(--wire-color-text);
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
box-shadow: var(--wire-shadow-1);
|
|
}
|
|
.wire-mega-menu__panel h3 {
|
|
margin: 0 0 0.5rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
.wire-mega-menu__panel a,
|
|
.wire-mobile-nav__panel a {
|
|
display: flex;
|
|
min-height: 44px;
|
|
align-items: center;
|
|
color: var(--wire-color-text);
|
|
text-decoration: none;
|
|
}
|
|
.wire-mobile-nav {
|
|
display: none;
|
|
}
|
|
.wire-mobile-nav__panel {
|
|
position: fixed;
|
|
inset: 4rem 1rem auto;
|
|
z-index: 100;
|
|
max-height: calc(100dvh - 5rem);
|
|
overflow: auto;
|
|
padding: 1rem;
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
box-shadow: var(--wire-shadow-1);
|
|
}
|
|
|
|
.wire-page-shell {
|
|
width: 100%;
|
|
min-width: 0;
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-page-shell--marketing,
|
|
.wire-page-shell--product {
|
|
overflow: clip;
|
|
}
|
|
.wire-page-shell--legal {
|
|
display: grid;
|
|
grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
|
|
gap: clamp(2rem, 5vw, 5rem);
|
|
max-width: 80rem;
|
|
}
|
|
.wire-page-shell__aside {
|
|
position: sticky;
|
|
top: 1rem;
|
|
align-self: start;
|
|
}
|
|
.wire-page-shell__main {
|
|
min-width: 0;
|
|
max-width: 52rem;
|
|
}
|
|
|
|
.wire-product-card,
|
|
.wire-metric {
|
|
padding: clamp(1rem, 3vw, 1.5rem);
|
|
color: var(--wire-color-text);
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
box-shadow: var(--wire-shadow-1);
|
|
}
|
|
.wire-product-card {
|
|
display: grid;
|
|
gap: 0.8rem;
|
|
}
|
|
.wire-product-card__meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
}
|
|
.wire-product-card h3,
|
|
.wire-product-card p {
|
|
margin: 0;
|
|
}
|
|
.wire-product-card p {
|
|
color: var(--wire-color-muted);
|
|
line-height: 1.6;
|
|
}
|
|
.wire-product-card__link {
|
|
color: var(--wire-color-primary);
|
|
font-weight: 650;
|
|
text-decoration: none;
|
|
}
|
|
.wire-eyebrow {
|
|
color: var(--wire-color-primary);
|
|
font-size: 0.75rem;
|
|
font-weight: 750;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
}
|
|
.wire-metric-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
|
|
gap: 1rem;
|
|
}
|
|
.wire-metric__value {
|
|
margin: 0;
|
|
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
|
font-weight: 800;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
.wire-metric__label {
|
|
margin: 0.35rem 0 0;
|
|
font-weight: 650;
|
|
}
|
|
.wire-metric__description {
|
|
margin: 0.35rem 0 0;
|
|
color: var(--wire-color-muted);
|
|
font-size: 0.875rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.wire-sdk-tabs__panel {
|
|
overflow-x: auto;
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: 0 0 var(--wire-radius) var(--wire-radius);
|
|
background: var(--wire-color-surface-2);
|
|
}
|
|
.wire-sdk-tabs__panel pre {
|
|
margin: 0;
|
|
min-width: max-content;
|
|
padding: 1rem;
|
|
}
|
|
.wire-legal-toc {
|
|
padding: 1rem;
|
|
border-left: 2px solid var(--wire-color-border);
|
|
}
|
|
.wire-legal-toc h2 {
|
|
margin: 0 0 0.75rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
.wire-legal-toc ol {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
margin: 0;
|
|
padding-left: 1.25rem;
|
|
}
|
|
.wire-legal-toc a {
|
|
color: var(--wire-color-muted);
|
|
text-decoration: none;
|
|
}
|
|
.wire-cookie-list {
|
|
display: grid;
|
|
gap: 0.75rem;
|
|
margin: 0;
|
|
}
|
|
.wire-cookie-option {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
min-height: 44px;
|
|
padding: 0.75rem;
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius-sm);
|
|
}
|
|
.wire-cookie-option span {
|
|
display: grid;
|
|
gap: 0.25rem;
|
|
}
|
|
.wire-cookie-option small {
|
|
color: var(--wire-color-muted);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.wire-desktop-nav {
|
|
display: none;
|
|
}
|
|
.wire-mobile-nav {
|
|
display: block;
|
|
}
|
|
.wire-mega-menu__panel {
|
|
position: static;
|
|
grid-template-columns: 1fr;
|
|
width: 100%;
|
|
box-shadow: none;
|
|
}
|
|
.wire-page-shell--legal {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.wire-page-shell__aside {
|
|
position: static;
|
|
}
|
|
}
|
|
|
|
/* --- Complete catalog composition patterns ----------------------------- */
|
|
.wire-catalog-action {
|
|
display: inline-flex;
|
|
max-width: 100%;
|
|
}
|
|
.wire-catalog-form,
|
|
.wire-catalog-collection,
|
|
.wire-catalog-section {
|
|
display: grid;
|
|
gap: clamp(1rem, 2vw, 1.5rem);
|
|
min-width: 0;
|
|
}
|
|
.wire-catalog-form > header,
|
|
.wire-catalog-collection > header,
|
|
.wire-catalog-section > header {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
}
|
|
.wire-catalog-form :where(h2, p),
|
|
.wire-catalog-collection :where(h2, p),
|
|
.wire-catalog-section :where(h2, p) {
|
|
margin: 0;
|
|
}
|
|
.wire-catalog-field {
|
|
min-width: 0;
|
|
}
|
|
.wire-catalog-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 80;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: auto;
|
|
padding: clamp(1rem, 4vw, 2rem);
|
|
background: rgb(2 6 23 / 0.68);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.wire-catalog-overlay .wire-dialog {
|
|
width: min(100%, 42rem);
|
|
max-height: calc(100dvh - 2rem);
|
|
overflow: auto;
|
|
padding: clamp(1rem, 4vw, 1.5rem);
|
|
color: var(--wire-color-text);
|
|
background: var(--wire-color-surface);
|
|
border: 1px solid var(--wire-color-border);
|
|
border-radius: var(--wire-radius);
|
|
box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 0.3);
|
|
}
|
|
.wire-catalog-collection__items {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
|
|
gap: 1rem;
|
|
min-width: 0;
|
|
}
|
|
.wire-catalog-feedback {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 0.5rem 1rem;
|
|
align-items: start;
|
|
}
|
|
.wire-catalog-feedback p {
|
|
grid-column: 1 / -1;
|
|
margin: 0;
|
|
}
|
|
.wire-catalog-visualization {
|
|
display: grid;
|
|
gap: 1rem;
|
|
min-width: 0;
|
|
}
|
|
.wire-catalog-visualization figcaption {
|
|
display: grid;
|
|
gap: 0.35rem;
|
|
}
|
|
.wire-catalog-visualization__content {
|
|
min-height: 10rem;
|
|
overflow-x: auto;
|
|
}
|
|
.wire-catalog-visualization__skeleton {
|
|
width: 100%;
|
|
min-height: 10rem;
|
|
}
|
|
.wire-catalog-card__image {
|
|
width: 100%;
|
|
aspect-ratio: 16 / 9;
|
|
object-fit: cover;
|
|
border-radius: calc(var(--wire-radius) * 0.75);
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.wire-catalog-action,
|
|
.wire-catalog-action > :where(a, button) {
|
|
width: 100%;
|
|
}
|
|
.wire-catalog-overlay {
|
|
align-items: end;
|
|
padding: 0;
|
|
}
|
|
.wire-catalog-overlay .wire-dialog {
|
|
max-height: 92dvh;
|
|
border-radius: var(--wire-radius) var(--wire-radius) 0 0;
|
|
}
|
|
}
|
|
|
|
/* --- Motion system -------------------------------------------------------
|
|
* Applies to both Tailwind-authored and token-authored components. Motion is
|
|
* intentionally limited to composited properties so interaction stays fluid.
|
|
*/
|
|
:root {
|
|
--wire-motion-fast: 120ms;
|
|
--wire-motion-base: 200ms;
|
|
--wire-motion-slow: 320ms;
|
|
--wire-ease-standard: cubic-bezier(0.2, 0, 0, 1);
|
|
--wire-ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
|
|
/* Tailwind v4 color bridge. Define the aliases at the document root so both
|
|
* packaged components and application-authored pages/components inherit the
|
|
* palette selected in wrnexus.config.ts. */
|
|
:root {
|
|
--color-violet-50: color-mix(in srgb, var(--wire-color-primary) 7%, white);
|
|
--color-violet-100: color-mix(in srgb, var(--wire-color-primary) 14%, white);
|
|
--color-violet-200: color-mix(in srgb, var(--wire-color-primary) 25%, white);
|
|
--color-violet-300: color-mix(in srgb, var(--wire-color-primary) 42%, white);
|
|
--color-violet-400: color-mix(in srgb, var(--wire-color-primary) 72%, white);
|
|
--color-violet-500: var(--wire-color-primary);
|
|
--color-violet-600: var(--wire-color-primary);
|
|
--color-violet-700: var(--wire-color-primary-hover);
|
|
--color-violet-800: color-mix(in srgb, var(--wire-color-primary-hover) 82%, black);
|
|
--color-violet-900: color-mix(in srgb, var(--wire-color-primary-hover) 65%, black);
|
|
--color-violet-950: color-mix(in srgb, var(--wire-color-primary-hover) 42%, black);
|
|
--color-indigo-50: var(--color-violet-50);
|
|
--color-indigo-100: var(--color-violet-100);
|
|
--color-indigo-200: var(--color-violet-200);
|
|
--color-indigo-300: var(--color-violet-300);
|
|
--color-indigo-400: var(--color-violet-400);
|
|
--color-indigo-500: var(--color-violet-500);
|
|
--color-indigo-600: var(--color-violet-600);
|
|
--color-indigo-700: var(--color-violet-700);
|
|
--color-indigo-800: var(--color-violet-800);
|
|
--color-indigo-900: var(--color-violet-900);
|
|
--color-indigo-950: var(--color-violet-950);
|
|
--color-blue-500: var(--wire-color-info);
|
|
--color-blue-600: var(--wire-color-info);
|
|
--color-blue-700: color-mix(in srgb, var(--wire-color-info) 80%, black);
|
|
--color-emerald-500: var(--wire-color-success);
|
|
--color-emerald-600: var(--wire-color-success);
|
|
--color-emerald-700: color-mix(in srgb, var(--wire-color-success) 80%, black);
|
|
--color-green-500: var(--wire-color-success);
|
|
--color-green-600: var(--wire-color-success);
|
|
--color-amber-500: var(--wire-color-warning);
|
|
--color-amber-600: var(--wire-color-warning);
|
|
--color-amber-700: color-mix(in srgb, var(--wire-color-warning) 80%, black);
|
|
--color-yellow-500: var(--wire-color-warning);
|
|
--color-red-400: color-mix(in srgb, var(--wire-color-danger) 75%, white);
|
|
--color-red-500: var(--wire-color-danger);
|
|
--color-red-600: var(--wire-color-danger);
|
|
--color-red-700: color-mix(in srgb, var(--wire-color-danger) 80%, black);
|
|
--color-rose-500: var(--wire-color-danger);
|
|
--color-rose-600: var(--wire-color-danger);
|
|
--color-rose-700: color-mix(in srgb, var(--wire-color-danger) 80%, black);
|
|
}
|
|
|
|
/* Stable semantic helpers for application-authored markup. These deliberately
|
|
* avoid spacing so applications remain in control of their own layout. */
|
|
.wire-bg-page {
|
|
background-color: var(--wire-color-bg);
|
|
}
|
|
.wire-bg-surface {
|
|
background-color: var(--wire-color-surface);
|
|
}
|
|
.wire-bg-surface-2 {
|
|
background-color: var(--wire-color-surface-2);
|
|
}
|
|
.wire-bg-primary {
|
|
background-color: var(--wire-color-primary);
|
|
color: var(--wire-color-primary-contrast);
|
|
}
|
|
.wire-bg-secondary {
|
|
background-color: var(--wire-color-secondary);
|
|
color: var(--wire-color-secondary-contrast);
|
|
}
|
|
.wire-text {
|
|
color: var(--wire-color-text);
|
|
}
|
|
.wire-text-muted {
|
|
color: var(--wire-color-muted);
|
|
}
|
|
.wire-text-primary {
|
|
color: var(--wire-color-primary);
|
|
}
|
|
.wire-text-success {
|
|
color: var(--wire-color-success);
|
|
}
|
|
.wire-text-warning {
|
|
color: var(--wire-color-warning);
|
|
}
|
|
.wire-text-danger {
|
|
color: var(--wire-color-danger);
|
|
}
|
|
.wire-border {
|
|
border-color: var(--wire-color-border);
|
|
}
|
|
|
|
[data-component] {
|
|
animation: wire-component-enter var(--wire-motion-slow) var(--wire-ease-emphasized) both;
|
|
}
|
|
|
|
[data-component]
|
|
:where(button, a, input, select, textarea, summary, [role="button"], [role="tab"]) {
|
|
transition-property: color, background-color, border-color, opacity, box-shadow, transform;
|
|
transition-duration: var(--wire-motion-base);
|
|
transition-timing-function: var(--wire-ease-standard);
|
|
}
|
|
|
|
[data-component] :where(input, select, textarea, .wire-input, .wire-select) {
|
|
transition-duration: var(--wire-motion-fast);
|
|
}
|
|
|
|
[data-component] :where(.wire-card, .wire-panel, .wire-surface, .wire-catalog-card, article) {
|
|
transition-property: border-color, background-color, box-shadow, transform;
|
|
transition-duration: var(--wire-motion-base);
|
|
transition-timing-function: var(--wire-ease-emphasized);
|
|
}
|
|
|
|
[data-component] :where(.wire-overlay, [role="dialog"]) {
|
|
animation: wire-overlay-enter var(--wire-motion-base) var(--wire-ease-standard) both;
|
|
}
|
|
|
|
[data-component] :where(.wire-dialog, [role="dialog"] > :first-child) {
|
|
animation: wire-dialog-enter var(--wire-motion-slow) var(--wire-ease-emphasized) both;
|
|
}
|
|
|
|
[data-component] :where([role="menu"], [role="listbox"], [role="tooltip"], .wire-mega-menu__panel) {
|
|
transform-origin: top center;
|
|
animation: wire-popover-enter var(--wire-motion-base) var(--wire-ease-emphasized) both;
|
|
}
|
|
|
|
[data-component] :where([role="progressbar"], progress) {
|
|
transition: inline-size var(--wire-motion-slow) var(--wire-ease-emphasized);
|
|
}
|
|
|
|
@media (hover: hover) and (pointer: fine) {
|
|
[data-component] :where(button, .wire-btn, [role="button"]):not(:disabled):hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
[data-component] :where(.wire-card, .wire-catalog-card, article):has(a):hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 0.75rem 2rem rgb(15 23 42 / 0.12);
|
|
}
|
|
}
|
|
|
|
[data-component] :where(button, .wire-btn, [role="button"]):not(:disabled):active {
|
|
transform: translateY(0) scale(0.98);
|
|
transition-duration: var(--wire-motion-fast);
|
|
}
|
|
|
|
@keyframes wire-component-enter {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(4px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes wire-overlay-enter {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes wire-dialog-enter {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(12px) scale(0.98);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes wire-popover-enter {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-4px) scale(0.98);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
[data-component],
|
|
[data-component] *,
|
|
[data-component] *::before,
|
|
[data-component] *::after {
|
|
scroll-behavior: auto !important;
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
transition-delay: 0ms !important;
|
|
}
|
|
}
|
|
@media (max-width: 480px) {
|
|
.wire-form-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.wire-filter-bar {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
.wire-filter-bar__controls {
|
|
display: grid;
|
|
}
|
|
.wire-dialog__actions > * {
|
|
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;
|
|
}
|
|
}
|