parent
44ecaf6177
commit
bf87547f88
2 changed files with 6 additions and 1 deletions
|
@ -19,6 +19,11 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* More specific to override `.markdown-body a` text-decoration */
|
||||||
|
.mx_EventTile_content .markdown-body a.mx_Pill {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* More specific to override `.markdown-body a` color */
|
/* More specific to override `.markdown-body a` color */
|
||||||
.mx_EventTile_content .markdown-body a.mx_UserPill,
|
.mx_EventTile_content .markdown-body a.mx_UserPill,
|
||||||
.mx_UserPill {
|
.mx_UserPill {
|
||||||
|
|
|
@ -271,7 +271,7 @@ const Pill = React.createClass({
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const classes = classNames(pillClass, {
|
const classes = classNames("mx_Pill", pillClass, {
|
||||||
"mx_UserPill_me": userId === MatrixClientPeg.get().credentials.userId,
|
"mx_UserPill_me": userId === MatrixClientPeg.get().credentials.userId,
|
||||||
"mx_UserPill_selected": this.props.isSelected,
|
"mx_UserPill_selected": this.props.isSelected,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue