File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { registerComponent } from '../common/definitions/register.js';
66import type { ContentOrientation } from '../types.js' ;
77import { all } from './themes/actions.js' ;
88import { styles } from './themes/card.actions.base.css.js' ;
9+ import { styles as shared } from './themes/shared/actions/card.actions.common.css.js' ;
910
1011/** A container for card action items like buttons
1112 * @element igc-card-actions
@@ -16,7 +17,7 @@ import { styles } from './themes/card.actions.base.css.js';
1617 */
1718export default class IgcCardActionsComponent extends LitElement {
1819 public static readonly tagName = 'igc-card-actions' ;
19- public static override styles = styles ;
20+ public static override styles = [ styles , shared ] ;
2021
2122 /* blazorSuppress */
2223 public static register ( ) : void {
Original file line number Diff line number Diff line change 3737 margin-inline-start : auto ;
3838 order : 1 ;
3939}
40-
41- ::slotted(igc-icon) {
42- opacity : .6 ;
43- }
Original file line number Diff line number Diff line change 1+ @use ' styles/utilities' as * ;
2+ @use ' ../../light/themes' as * ;
3+
4+ $theme : $base ;
5+
6+ :host {
7+ color : var-get ($theme , ' actions-text-color' );
8+ }
You can’t perform that action at this time.
0 commit comments