height

Since UXP v4.1

Enables you to restrict a set of CSS rules to match when the size of the plugin's dialog or panel meets your specified criteria.

See: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/height

Example

@media (max-height: 700px) {
    .someElement {
        background-color: red;
    }
}

Known Issues