Skip to content

Commit fb1c253

Browse files
committed
fix(MdList): add active style
1 parent f183dfe commit fb1c253

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/components/MdList/MdListItem/MdListItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2727
return createElement('li', {
2828
on: listeners,
29-
staticClass: 'md-list-item ' + data.staticClass
29+
staticClass: 'md-list-item'
3030
}, [
3131
createElement(listComponent, {
3232
staticClass: 'md-list-item-container md-button-clean',

src/components/MdList/theme.scss

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
.md-list-item-container {
66
@include md-theme-property(color, text-primary, background);
7+
8+
&:active {
9+
@include md-theme-property(background-color, divider, background);
10+
}
711
}
812
}
913
}

0 commit comments

Comments
 (0)