mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
7ef306cd3b
- Move user directory from `/directory` to `/users/` - Defaults to 'weekly' time period - Don't include deleted topics/posts in the results - Move heart icon to header instead of on each row - "Users" instead of "Users found"
46 lines
734 B
SCSS
46 lines
734 B
SCSS
.directory {
|
|
margin-bottom: 100px;
|
|
|
|
.period-chooser {
|
|
float: left;
|
|
}
|
|
.total-rows {
|
|
margin-top: 0.5em;
|
|
color: darken(scale-color-diff(), 20%);
|
|
float: right;
|
|
}
|
|
.spinner {
|
|
clear: both;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
|
|
td, th {
|
|
padding: 0.5em;
|
|
text-align: left;
|
|
border-bottom: 1px solid scale-color-diff();
|
|
}
|
|
|
|
th.sortable {
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
|
|
width: 13%;
|
|
i.fa-heart {
|
|
color: $love;
|
|
margin-right: 0.5em;
|
|
}
|
|
i.fa-chevron-down, i.fa-chevron-up {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: scale-color-diff();
|
|
}
|
|
}
|
|
}
|
|
}
|