igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
3 lines • 568 B
JavaScript
import { css } from 'lit';
export const styles = css `:host{background:var(--item-background);color:var(--item-text-color);border-radius:var(--border-radius)}:host(:hover),:host(:focus-within){background:var(--item-hover-background);color:var(--item-hover-color)}:host([selected]){color:var(--item-active-color)}:host([selected]) ::slotted(igc-icon){color:var(--item-active-icon-color)}:host([selected]:hover),:host([selected]:focus-within){color:var(--item-active-color)}:host([disabled]){color:var(--item-disabled-color)}`;
//# sourceMappingURL=tab.common.css.js.map