File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
src/components/dropdown/themes Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ import { css } from 'lit';
22
33import type { Themes } from '../../../theming/types.js' ;
44// Shared Styles
5+ import { styles as bootstrap } from './shared/item/dropdown-item.bootstrap.css.js' ;
56import { styles as fluent } from './shared/item/dropdown-item.fluent.css.js' ;
67import { styles as indigo } from './shared/item/dropdown-item.indigo.css.js' ;
78
89const light = {
10+ bootstrap : css `
11+ ${ bootstrap }
12+ ` ,
913 indigo : css `
1014 ${ indigo }
1115 ` ,
@@ -15,6 +19,9 @@ const light = {
1519} ;
1620
1721const dark = {
22+ bootstrap : css `
23+ ${ bootstrap }
24+ ` ,
1825 indigo : css `
1926 ${ indigo }
2027 ` ,
Original file line number Diff line number Diff line change 1+ @use ' styles/utilities' as * ;
2+
3+ :host {
4+ --item-icon : #{rem (18px )} ;
5+
6+ ::slotted (igc-icon ) {
7+ --size : var (--item-icon );
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments