Files
astuto/app/assets/stylesheets/components/Board.scss

120 lines
1.7 KiB
SCSS
Raw Normal View History

.boardContainer {
@extend .twoColumnsContainer;
2019-09-19 19:06:22 +02:00
@include media-breakpoint-down(sm) {
2019-09-19 19:39:16 +02:00
.postStatusFilterContainer {
flex-direction: row !important;
flex-wrap: wrap;
}
2019-09-19 19:06:22 +02:00
.postList { width: 100%; }
2019-09-05 13:51:17 +02:00
}
2020-01-05 11:25:38 +01:00
.newPostContainer {
2024-01-23 18:50:42 +01:00
background-color: var(--astuto-grey-light);
2019-09-19 16:42:43 +02:00
text-align: center;
.boardTitle {
font-size: 25px;
font-weight: 600;
}
2020-01-05 11:25:38 +01:00
2022-06-06 20:20:03 +02:00
.boardDescription {
@extend .mutedText;
}
2020-01-05 11:25:38 +01:00
.newPostForm {
@extend .my-2;
}
2019-09-19 16:42:43 +02:00
}
.postStatusListItemContainer {
@extend
.d-flex,
.align-self-stretch;
}
.postStatusListItemLink {
@extend
.flex-grow-1;
2024-01-23 18:50:42 +01:00
&:hover { text-decoration: none; }
}
.postStatusListItem {
@extend
.p-1;
height: 40px;
2019-09-03 12:58:44 +02:00
&:hover {
2019-09-19 16:42:43 +02:00
filter: brightness(90%);
2019-09-03 12:58:44 +02:00
cursor: pointer;
2019-09-19 16:42:43 +02:00
}
2019-09-03 12:58:44 +02:00
2019-09-19 16:42:43 +02:00
span.badge {
display: block; font-size: 15px;
2019-09-03 12:58:44 +02:00
}
}
2019-09-03 12:58:44 +02:00
.resetFilter {
@extend
.flex-grow-0,
.flex-shrink-0,
2019-09-19 16:42:43 +02:00
.rounded-circle,
.align-self-center,
.p-0;
width: 30px;
height: 30px;
}
2019-09-03 12:58:44 +02:00
.postList {
@extend
.d-flex,
.flex-column,
.flex-grow-1;
2019-09-03 12:58:44 +02:00
}
2019-09-02 19:26:34 +02:00
.postListItem {
@extend
2019-09-19 16:42:43 +02:00
.card3D,
.d-flex,
2019-09-27 18:19:13 +02:00
.flex-row,
.justify-content-start,
2019-10-02 16:57:32 +02:00
.mb-3,
2019-09-19 16:42:43 +02:00
.p-3;
height: 140px;
2024-01-23 18:50:42 +01:00
color: var(--astuto-black);
2019-09-27 18:19:13 +02:00
@include media-breakpoint-down(sm) {
height: auto;
}
2019-09-27 18:19:13 +02:00
&:hover { cursor: pointer; }
.postContainer {
@extend
.d-flex,
.flex-column,
.justify-content-between;
}
2019-09-19 16:42:43 +02:00
}
2019-09-19 16:42:43 +02:00
.postTitle {
@extend
.font-weight-bold;
}
.postDetails {
@extend
.d-flex,
2019-09-19 16:42:43 +02:00
.justify-content-start,
.text-uppercase;
2019-09-19 16:42:43 +02:00
.badge {
@extend .mr-2;
}
}
2019-09-02 14:32:57 +02:00
}