2018-06-08 17:49:31 +08:00
|
|
|
// --------------------------------------------------
|
|
|
|
// Topic lists
|
|
|
|
// --------------------------------------------------
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
// List controls
|
|
|
|
// --------------------------------------------------
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.list-controls {
|
|
|
|
.nav {
|
|
|
|
float: left;
|
2018-08-16 12:02:26 +08:00
|
|
|
margin-bottom: 10px;
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2013-10-29 05:37:31 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.btn {
|
|
|
|
float: right;
|
|
|
|
margin-left: 8px;
|
2019-08-07 11:44:44 +08:00
|
|
|
margin-bottom: 9px;
|
2018-06-08 17:49:31 +08:00
|
|
|
font-size: $font-up-1;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2015-04-02 13:02:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.search .btn {
|
|
|
|
float: none;
|
|
|
|
}
|
2013-10-29 12:37:18 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
a.badge-category {
|
|
|
|
padding: 3px 12px;
|
|
|
|
font-size: $font-up-1;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
// Base list
|
|
|
|
// --------------------------------------------------
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-list-icons {
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon-thumbtack {
|
2018-06-08 17:49:31 +08:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
}
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon-thumbtack.unpinned {
|
2018-06-08 17:49:31 +08:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
}
|
|
|
|
a.title {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
.d-icon-bookmark {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2017-08-14 00:13:02 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-list {
|
|
|
|
@extend .topic-list-icons;
|
2018-01-13 06:27:38 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
margin: 0 0 10px;
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 12px 5px;
|
|
|
|
&:first-of-type {
|
|
|
|
padding-left: 10px;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
&:last-of-type {
|
|
|
|
padding-right: 10px;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
th {
|
|
|
|
button .d-icon {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2013-10-20 06:18:25 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
button.bulk-select {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.bulk-select {
|
|
|
|
padding: 10px;
|
2018-11-26 04:24:26 +08:00
|
|
|
width: 30px;
|
2018-06-08 17:49:31 +08:00
|
|
|
+ .main-link {
|
|
|
|
padding-left: 0;
|
2014-08-22 22:45:51 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.badge-notification {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
&.new-topic {
|
|
|
|
top: -1px;
|
|
|
|
padding-left: 5px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2018-01-17 22:54:09 +08:00
|
|
|
|
2019-11-15 03:14:23 +08:00
|
|
|
$td-posters-height: 29px; // min-height of td with avatar glow
|
|
|
|
$td-posters-more-lh: $td-posters-height - 4;
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.posters {
|
2018-01-17 22:54:09 +08:00
|
|
|
// we know there are up to 5 avatars of fixed size
|
|
|
|
// will be overridden by media width queries on narrow displays to 1 avatar's width
|
2018-06-08 17:49:31 +08:00
|
|
|
width: 146px;
|
|
|
|
> a {
|
|
|
|
float: left;
|
|
|
|
margin-right: 4px;
|
|
|
|
&:last-of-type {
|
|
|
|
margin-right: 0;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2019-11-15 03:14:23 +08:00
|
|
|
|
|
|
|
&.posters-more-count {
|
|
|
|
cursor: default;
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
line-height: $td-posters-more-lh;
|
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
td.posters {
|
2019-11-15 03:14:23 +08:00
|
|
|
height: $td-posters-height;
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
.posters a:first-child .avatar.latest:not(.single) {
|
|
|
|
box-shadow: 0 0 3px 1px desaturate($tertiary-medium, 35%);
|
|
|
|
border: 2px solid desaturate($tertiary-medium, 40%);
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
left: -2px;
|
|
|
|
}
|
2015-04-06 15:27:05 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.likes {
|
|
|
|
width: 65px;
|
|
|
|
}
|
|
|
|
.views {
|
|
|
|
width: 65px;
|
|
|
|
}
|
|
|
|
.posts {
|
|
|
|
width: 65px;
|
|
|
|
}
|
2015-01-07 15:50:28 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.post-actions {
|
|
|
|
clear: both;
|
|
|
|
width: auto;
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
text-align: left;
|
|
|
|
font-size: $font-down-1;
|
|
|
|
margin-top: 5px;
|
|
|
|
.fa {
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
a {
|
2017-10-11 04:07:46 +08:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2018-06-08 17:49:31 +08:00
|
|
|
margin-right: 3px;
|
|
|
|
line-height: $line-height-large;
|
2014-11-06 22:06:21 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
.activity {
|
|
|
|
width: 60px;
|
|
|
|
&:lang(zh_CN) {
|
|
|
|
width: 80px;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
span {
|
|
|
|
cursor: pointer;
|
2014-08-16 04:39:34 +08:00
|
|
|
}
|
2014-08-05 08:44:01 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
.age {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
.with-year {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
2014-06-20 16:26:59 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-list-bottom {
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
2014-12-15 22:39:13 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
// Misc. stuff
|
|
|
|
// --------------------------------------------------
|
2016-06-18 16:38:03 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
#list-area .top-lists h2 {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px 0 10px;
|
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
#list-area {
|
|
|
|
h2 {
|
|
|
|
margin: 20px 0 10px;
|
|
|
|
}
|
|
|
|
.show-more.has-topics {
|
|
|
|
top: 0;
|
|
|
|
.alert {
|
|
|
|
padding: 12px 35px 12px 14px;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-select {
|
|
|
|
position: fixed;
|
|
|
|
right: 20px;
|
|
|
|
top: 130px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: $secondary;
|
|
|
|
z-index: z("dropdown");
|
|
|
|
}
|
|
|
|
|
|
|
|
button.dismiss-read {
|
|
|
|
float: right;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tags-admin-menu {
|
|
|
|
.dropdown-menu {
|
|
|
|
right: 0;
|
|
|
|
top: 30px;
|
|
|
|
bottom: auto;
|
|
|
|
left: auto;
|
2018-01-13 06:27:38 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.category-heading {
|
|
|
|
p {
|
|
|
|
line-height: $line-height-large;
|
|
|
|
font-size: $font-up-3;
|
2014-07-10 07:56:35 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.category-navigation {
|
|
|
|
clear: both;
|
|
|
|
}
|
2018-01-13 06:27:38 +08:00
|
|
|
|
2018-11-29 12:02:03 +08:00
|
|
|
.category-logo.aspect-image {
|
2018-06-08 17:49:31 +08:00
|
|
|
float: left;
|
2018-08-18 11:07:07 +08:00
|
|
|
margin: 0.25em 1em 0.5em 0;
|
2018-11-29 12:02:03 +08:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: auto;
|
|
|
|
max-height: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports (--custom: property) {
|
|
|
|
.category-logo.aspect-image {
|
|
|
|
--max-height: 150px;
|
|
|
|
max-height: var(--max-height);
|
2018-12-05 02:01:27 +08:00
|
|
|
max-width: 60%;
|
2018-11-29 12:02:03 +08:00
|
|
|
height: auto;
|
2018-12-05 02:01:27 +08:00
|
|
|
width: calc(var(--max-height) * var(--aspect-ratio));
|
2018-11-29 12:02:03 +08:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: inherit;
|
|
|
|
max-width: initial;
|
|
|
|
max-height: initial;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2018-01-13 06:27:38 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
/* Tablet (portrait) ----------- */
|
2018-01-13 06:27:38 +08:00
|
|
|
|
2018-07-13 04:38:51 +08:00
|
|
|
@include breakpoint(medium) {
|
2018-06-08 17:49:31 +08:00
|
|
|
// slightly smaller font, tighten spacing on nav pills
|
|
|
|
.nav-pills {
|
|
|
|
> li > a {
|
|
|
|
font-size: $font-0;
|
|
|
|
padding: 7px 10px;
|
2017-06-23 16:52:06 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2017-06-23 16:52:06 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
// new topic just a "+" no text
|
|
|
|
button#create-topic {
|
|
|
|
span {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon {
|
2018-06-08 17:49:31 +08:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-10-24 08:15:13 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-list {
|
|
|
|
// tighter table header spacing
|
2018-01-13 06:27:38 +08:00
|
|
|
th:first-of-type {
|
|
|
|
padding: 12px 5px;
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2018-01-13 06:27:38 +08:00
|
|
|
// smaller table cell spacing
|
2018-06-08 17:49:31 +08:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 10px;
|
|
|
|
font-size: $font-0;
|
|
|
|
}
|
|
|
|
// suppress views column
|
|
|
|
th.views {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
td.views {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
// reduce width for more title space
|
|
|
|
.posts {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
.posters {
|
|
|
|
width: 30px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
// show only the first poster
|
|
|
|
td.posters {
|
|
|
|
a:not(.latest) {
|
2018-01-13 06:27:38 +08:00
|
|
|
display: none;
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
a.latest {
|
|
|
|
width: 100%;
|
|
|
|
img {
|
|
|
|
margin: 0 auto;
|
2018-01-23 22:45:46 +08:00
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
}
|
2015-10-24 08:15:13 +08:00
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|