mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
a64cf265fd
* Changes the /bookmarks URL to show the original "topics filtered by bookmark" list instead of redirecting to user activity bookmarks (see https://meta.discourse.org/t/domain-com-bookmarks-is-showing-domain-com-u-user-activity-bookmarks-with-reminders/149252/12) * Add the user avatar for the user who made the post that is bookmarked
29 lines
436 B
SCSS
29 lines
436 B
SCSS
.bookmark-list {
|
|
th.post-metadata {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.bookmark-list-item {
|
|
td.post-metadata {
|
|
text-align: center;
|
|
}
|
|
.bookmark-metadata {
|
|
font-size: $font-down-2;
|
|
white-space: nowrap;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0.2em;
|
|
|
|
&-item {
|
|
margin-right: 0.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.d-icon {
|
|
margin-right: 0.2em;
|
|
}
|
|
}
|
|
}
|