@vaadin/combo-box
Version:
Web Component for displaying a list of items with filtering
22 lines (18 loc) • 501 B
JavaScript
/**
* @license
* Copyright (c) 2015 - 2026 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import '@vaadin/component-base/src/styles/style-props.js';
import { css } from 'lit';
export const comboBoxStyles = css`
:host([opened]) {
pointer-events: auto;
}
[part~='toggle-button']::before {
mask-image: var(--_vaadin-icon-chevron-down);
}
:host([readonly]) [part~='toggle-button'] {
display: none;
}
`;