-------------------------------------------------------------------------- */
.wpsubs-input-group {
display: inline-flex;
align-items: stretch;
}
.wpsubs-input-group > .wpsubs-input,
.wpsubs-input-group > .wpsubs-btn,
.wpsubs-input-group > .wpsubs-tooltip > .wpsubs-btn,
.wpsubs-input-group > .wpsubs-select,
.wpsubs-input-group > .wpsubs-adv-select > .wpsubs-adv-select__trigger {
border-radius: 0 !important;
}
/* Normalise button height to match input height inside a group */
.wpsubs-input-group > .wpsubs-btn,
.wpsubs-input-group > .wpsubs-tooltip > .wpsubs-btn {
height: 36px;
}
/* Restore radius on first and last direct children */
.wpsubs-input-group > :first-child,
.wpsubs-input-group > :first-child > .wpsubs-adv-select__trigger {
border-top-left-radius: var(--wpsubs-radius-sm) !important;
border-bottom-left-radius: var(--wpsubs-radius-sm) !important;
}
.wpsubs-input-group > :last-child,
.wpsubs-input-group > :last-child > .wpsubs-adv-select__trigger,
.wpsubs-input-group > :last-child > .wpsubs-btn {
border-top-right-radius: var(--wpsubs-radius-sm) !important;
border-bottom-right-radius: var(--wpsubs-radius-sm) !important;
}
/* Collapse adjacent borders */
.wpsubs-input-group > *:not(:first-child),
.wpsubs-input-group > .wpsubs-adv-select:not(:first-child) > .wpsubs-adv-select__trigger {
margin-left: -1px;
}
/* Bring focused item to front so its border ring shows fully */
.wpsubs-input-group > .wpsubs-input:focus,
.wpsubs-input-group > .wpsubs-btn:focus,
.wpsubs-input-group > .wpsubs-tooltip > .wpsubs-btn:focus,
.wpsubs-input-group > .wpsubs-select:focus,
.wpsubs-input-group > .wpsubs-adv-select--open > .wpsubs-adv-select__trigger {
position: relative;
z-index: 1;
}
/* --------------------------------------------------------------------------
Search — convenience wrapper around input-wrap (backward compat kept)
-------------------------------------------------------------------------- */
.wpsubs-search {
min-width: 180px;
max-width: 280px;
}
.wpsubs-search .wpsubs-input-wrap {
width: 100%;
}
/* --------------------------------------------------------------------------
Gated region (subscrpt-gated)
A block of settings switched off by a toggle elsewhere on the screen. Dimmed
and non-interactive, but still rendered and still submitted: these are meta
fields on the product form, and disabling them would post nothing and wipe
the stored values on the next save. The JS pairs this with `inert`, which
takes them out of the tab order without taking them out of the form.
-------------------------------------------------------------------------- */
.subscrpt-gated {
opacity: 0.45;
pointer-events: none;
user-select: none;
}