Start cleaning up unnecessary elements on Community Resources category

This commit is contained in:
Tony Grosinger 2024-02-26 18:48:04 -08:00
parent f18c70d867
commit c863a3c9a1
2 changed files with 59 additions and 0 deletions

View File

@ -535,6 +535,43 @@ html body #main-outlet {
margin-top: 2em;
}
// Community Resources Category
.category-resources {
// Topic List
.topic-list-header {
display: none !important;
}
.topic-list-body {
.topic-list-data {
// Center content in the topic list
display: flex;
align-items: center;
}
.num.views,
.num.posts,
.num.activity,
.posters,
.topic-statuses {
display: none !important;
}
}
// Topic Posts
.topic-map,
.topic-status { // Hide the lock icon in the topic header of the post
display: none;
}
.topic-meta-data {
display: flex;
justify-content: right;
}
}
// published page additions
.published-page-content-wrapper {
max-width: 1000px;

View File

@ -213,3 +213,25 @@ ol.category-breadcrumb {
margin: 2rem 0;
}
}
// Community Resources Category
.category-resources {
// Topic List
.topic-list-data {
.right {
margin-left: 0 !important;
display: flex;
align-items: center;
}
}
// Topic Post
.topic-avatar,
.topic-meta-data {
display: none !important;
}
}