naive-ui/styles/themes/light/components/Timeline.scss

13 lines
517 B
SCSS
Raw Normal View History

2019-10-18 18:26:09 +08:00
@mixin setup-light-timeline {
$--timeline-item-circle-border-color: (
2020-02-19 13:36:29 +08:00
'default': $--n-tertiary-text-color,
2020-02-19 21:08:31 +08:00
'info': $--n-info-color,
'error': $--n-error-color,
'success': $--n-success-color,
'warning': $--n-warning-color
2019-10-18 18:26:09 +08:00
) !global;
2020-02-19 13:36:29 +08:00
$--timeline-item-title-color: $--n-primary-text-color !global;
2019-10-18 18:26:09 +08:00
$--timeline-item-content-color: $--n-secondary-text-color !global;
2020-02-19 13:36:29 +08:00
$--timeline-item-meta-color: $--n-tertiary-text-color !global;
2020-02-20 13:22:48 +08:00
$--timeline-line-background-color: $--n-rail-color !global;
2019-10-18 18:26:09 +08:00
}