discourse/app/assets/stylesheets/desktop/topic-list.scss
David Taylor b5b4a3f233
UX: Fix positioning of mobile show-more following 71ff3417 (#23189)
71ff3417 removed the mobile-specific template for discovery/topics. It was noted that this would introduce an additional `<div class='show-more'>` wrapper around the new topic indicator on mobile, but I didn't realise that it would cause positioning problems on mobile.

This commit moves the desktop-specific CSS into the desktop SCSS file so that it does not apply to mobile.
2023-08-22 17:16:12 +01:00

280 lines
4.9 KiB
SCSS

// --------------------------------------------------
// Topic lists
// --------------------------------------------------
// Base list
// --------------------------------------------------
.topic-list-icons {
.d-icon-thumbtack {
color: var(--primary-med-or-secondary-med);
}
.d-icon-thumbtack.unpinned {
color: var(--primary-med-or-secondary-med);
}
a.title {
color: var(--primary);
}
.d-icon-bookmark {
color: var(--primary-med-or-secondary-med);
}
}
.topic-list {
@extend .topic-list-icons;
margin: 0 0 10px;
.topic-list-data {
padding: 12px 5px;
&:first-of-type {
padding-left: 10px;
}
&:last-of-type {
padding-right: 10px;
}
th & {
border-bottom: 3px solid var(--primary-low);
}
}
button.bulk-select {
padding: 0;
margin-right: 0.5em;
line-height: var(--line-height-large);
}
.topic-list-data.bulk-select {
padding: 0;
width: 30px;
label {
margin: 0px;
padding: 12px 10px 16px 10px;
cursor: pointer;
}
+ .main-link {
padding-left: 0;
}
}
.topics-replies-toggle {
background: none;
border: none;
line-height: var(--line-height-large);
padding-left: 0.5em;
padding-right: 0.5em;
&.active {
background: var(--quaternary);
color: var(--secondary);
}
}
.badge-notification {
position: relative;
top: -2px;
&.new-topic {
top: -1px;
padding-left: 2px;
}
}
$td-posters-height: 29px; // min-height of td with avatar glow
$td-posters-more-lh: $td-posters-height - 4;
.posters {
// 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
width: 146px;
> a {
float: left;
margin-right: 4px;
&:last-of-type {
margin-right: 0;
}
&.posters-more-count {
cursor: default;
color: var(--primary-med-or-secondary-med);
line-height: $td-posters-more-lh;
font-size: var(--font-down-1);
}
}
}
.topic-list-data.posters {
height: $td-posters-height;
}
.posters a:first-child .avatar.latest:not(.single) {
box-shadow: 0 0 3px 1px rgba(var(--tertiary-rgb), 0.35);
border: 1px solid rgba(var(--tertiary-rgb), 0.5);
position: relative;
left: -2px;
}
.likes {
width: 65px;
}
.views {
width: 65px;
}
.posts {
width: 65px;
}
.post-actions {
clear: both;
width: auto;
color: var(--primary-med-or-secondary-med);
text-align: left;
font-size: var(--font-down-1);
margin-top: 5px;
.fa {
margin-right: 2px;
}
a {
color: var(--primary-med-or-secondary-med);
margin-right: 3px;
line-height: var(--line-height-large);
}
}
.activity {
width: 60px;
&:lang(zh_CN) {
width: 80px;
}
}
.age {
width: 60px;
}
.with-year {
white-space: nowrap;
}
}
.topic-list-bottom {
margin: 20px 0;
.footer-message {
padding-top: 4px;
}
.dismiss-container-bottom {
float: right;
}
}
// Misc. stuff
// --------------------------------------------------
#list-area .top-lists {
h2 {
cursor: pointer;
margin: 5px 0 10px;
}
.period-chooser .select-kit-body {
width: 275px;
}
}
#list-area {
h2 {
margin: 20px 0 10px;
}
.show-more {
width: 100%;
z-index: z("base");
position: absolute;
top: 0;
.alert {
margin: 0;
padding: 1.1em 2em 1.1em 0.65em;
}
}
}
.bulk-select-topics {
display: inline-flex;
margin-left: -5px;
.btn {
margin-right: 0.5em;
}
}
.dismiss-container-top {
display: flex;
justify-content: flex-end;
}
.category-breadcrumb {
// only target the top-level li, not dropdowns
.select-kit {
align-self: stretch;
height: 100%;
}
}
.category-logo.aspect-image {
float: left;
margin: 0.33em 2em 2em 0;
}
/* Tablet (portrait) ----------- */
// These styles kick in a little earlier when the sidebar appears
@include breakpoint(medium, $sidebar: true) {
.topic-list {
// suppress views column
.views {
display: none;
}
// reduce width for more title space
.posts {
width: 3em;
}
.posters {
width: 2em;
text-align: center;
}
// show only the first poster
.topic-list-data.posters {
a:first-child .avatar.latest:not(.single) {
top: 0px;
left: 0px;
}
a:not(.latest) {
display: none;
}
a.latest {
width: 100%;
img {
margin: 0 auto;
}
}
}
}
}
@include breakpoint(medium) {
.nav-pills {
> li > a {
font-size: var(--font-0);
padding: 0.45em 0.67em;
}
}
.topic-list {
.topic-list-data {
font-size: var(--font-0);
}
}
.topic-list-header {
font-size: var(--font-down-1);
}
}
.container.list-container {
position: relative;
}