discourse/app/assets/stylesheets/common/select-kit/user-row.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
397 B
SCSS
Raw Normal View History

2020-02-11 09:54:56 -05:00
.user-chooser {
.select-kit-row.user-row {
.avatar {
margin-left: 0;
margin-right: 0.5em;
}
.username {
color: var(--primary);
2020-02-11 09:54:56 -05:00
white-space: nowrap;
}
.name {
color: var(--primary-high);
font-size: var(--font-down-1);
2020-02-11 09:54:56 -05:00
margin-left: 0.5em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
}