2023-08-22 21:24:11 +12:00
|
|
|
/* */
|
2023-08-26 15:41:11 +12:00
|
|
|
@import "scss/colours";
|
|
|
|
@import "scss/mixins";
|
|
|
|
@import "scss/typography";
|
|
|
|
@import "scss/controls";
|
|
|
|
|
2024-07-05 16:30:33 +08:00
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
$min-touch-target: 44px;
|
|
|
|
|
2024-08-05 18:13:19 +12:00
|
|
|
@view-transition {
|
|
|
|
navigation: auto;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
html {
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
scroll-padding-top: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-29 02:28:00 +00:00
|
|
|
html, body {
|
|
|
|
overscroll-behavior-x: none;
|
|
|
|
}
|
|
|
|
|
2023-08-26 15:41:11 +12:00
|
|
|
body {
|
2024-01-07 22:45:09 +13:00
|
|
|
font-size: 0.95rem;
|
2023-08-26 15:41:11 +12:00
|
|
|
}
|
|
|
|
|
2024-01-26 09:37:05 +13:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
border: solid 2px transparent;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 0.75rem;
|
|
|
|
padding-left: 0.75rem;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
max-width: inherit;
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
|
|
|
|
}
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
max-width: 960px;
|
|
|
|
}
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
max-width: 1200px;
|
|
|
|
}
|
|
|
|
@include breakpoint(desktop) {
|
|
|
|
max-width: 1550px;
|
|
|
|
}
|
|
|
|
@include breakpoint(bigbig) {
|
|
|
|
max-width: 1880px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
.navbar-expand-lg .navbar-nav .dropdown-menu {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 90vh;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.low_bandwidth {
|
|
|
|
.dropdown-toggle::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-25 13:14:56 +13:00
|
|
|
.display-inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
.skip-link {
|
|
|
|
position: absolute;
|
|
|
|
top: -40px; /* Adjust as needed to hide the link off-screen */
|
|
|
|
left: 0;
|
|
|
|
background-color: #fff; /* Background color to cover the link for screen readers */
|
|
|
|
z-index: 1060; /* Ensure it's above other content */
|
|
|
|
}
|
|
|
|
|
|
|
|
.skip-link:focus {
|
|
|
|
top: 0; /* Bring the link back into view when it receives focus */
|
|
|
|
}
|
|
|
|
|
2024-01-26 09:37:05 +13:00
|
|
|
#outer_container, footer {
|
2024-03-29 02:28:00 +00:00
|
|
|
//overscroll-behavior-x: none;
|
2024-01-26 09:37:05 +13:00
|
|
|
a:not(.btn):hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2024-01-26 09:51:48 +13:00
|
|
|
a:not(.btn):has(span.fe):hover { /* do not have underlines on icons */
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2024-01-26 09:37:05 +13:00
|
|
|
|
|
|
|
a:not(.btn):active {
|
|
|
|
border: dotted 2px #0A5CA0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-23 19:17:05 +13:00
|
|
|
div.navbar {
|
2023-08-26 15:41:11 +12:00
|
|
|
border-bottom: 1px solid rgba(0, 40, 100, 0.12);
|
|
|
|
min-height: 60px;
|
2024-02-23 18:41:15 +13:00
|
|
|
background-color: var(--bs-body-bg);
|
2023-08-26 15:41:11 +12:00
|
|
|
}
|
|
|
|
|
2023-10-28 21:33:40 +13:00
|
|
|
.navbar-brand {
|
2024-02-08 17:30:27 +13:00
|
|
|
line-height: 46px;
|
2023-10-28 21:33:40 +13:00
|
|
|
img {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
}
|
2023-08-26 15:41:11 +12:00
|
|
|
.navbar-light .navbar-nav .nav-link {
|
|
|
|
outline-style: none;
|
|
|
|
}
|
|
|
|
|
2023-12-24 17:41:34 +13:00
|
|
|
.navbar-toggler {
|
|
|
|
border: none;
|
|
|
|
height: 48px;
|
|
|
|
}
|
2023-08-26 15:41:11 +12:00
|
|
|
|
|
|
|
.navbar-light .navbar-toggler-icon {
|
2023-12-24 17:41:34 +13:00
|
|
|
background-image: url(/static/images/menu.svg);
|
|
|
|
width: 35px;
|
|
|
|
height: 40px;
|
|
|
|
background-position: top;
|
2023-08-26 15:41:11 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown.active {
|
|
|
|
background-color: $primary-colour;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-light .navbar-nav .active > .nav-link {
|
|
|
|
color: white;
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
|
|
|
|
2023-09-17 21:19:51 +12:00
|
|
|
.tab-content > .tab-pane {
|
|
|
|
border-right: solid 1px #dee2e6;
|
|
|
|
border-bottom: solid 1px #dee2e6;
|
|
|
|
border-left: solid 1px #dee2e6;
|
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
|
padding: 10px 15px 0 15px;
|
|
|
|
}
|
|
|
|
|
2023-08-26 15:41:11 +12:00
|
|
|
.dropdown-menu {
|
|
|
|
.dropdown-item.active {
|
|
|
|
background-color: $primary-colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-22 14:05:39 +13:00
|
|
|
#outer_container {
|
2024-03-01 20:32:29 +13:00
|
|
|
margin-top: -1px;
|
2023-12-22 14:05:39 +13:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
margin-top: 1rem;
|
|
|
|
padding-top: 0.25rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
.form-group {
|
|
|
|
margin-bottom: 1.1rem;
|
|
|
|
|
|
|
|
&.required {
|
|
|
|
label {
|
|
|
|
&:after {
|
|
|
|
content: '*';
|
|
|
|
color: red;
|
|
|
|
margin-left: 2px;
|
|
|
|
font-size: 80%;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
max-width: 350px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
.card-body > p > img, .card-body > p > a > img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#breadcrumb_nav {
|
|
|
|
font-size: 87%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
#breadcrumb_nav {
|
|
|
|
display: block;
|
|
|
|
font-size: 87%;
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: inherit;
|
|
|
|
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
|
|
content: ">";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.communities_table {
|
|
|
|
tbody tr th {
|
|
|
|
padding: 0;
|
|
|
|
a {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.topics_list {
|
|
|
|
list-style-type: none;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit,minmax(152px, 1fr));
|
|
|
|
|
|
|
|
> li {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.community_header {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
border-radius: 5px 5px 0 0; /* top-left | top-right | bottom-right | bottom-left */
|
|
|
|
height: 176px;
|
|
|
|
margin-left: -12px;
|
|
|
|
margin-right: -12px;
|
|
|
|
margin-top: -9px;
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
height: 240px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#breadcrumb_nav {
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
padding-left: 13px;
|
|
|
|
padding-top: 13px;
|
|
|
|
}
|
|
|
|
.breadcrumb {
|
|
|
|
background-color: rgba(0,0,0,0.2);
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.breadcrumb-item {
|
|
|
|
color: white;
|
|
|
|
display: inline-block;
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
|
|
content: ">";
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.community_header_no_background, .community_header {
|
|
|
|
.community_icon {
|
|
|
|
width: 120px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#choose_topics_card {
|
|
|
|
label.form-control-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.form-group {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
ul.form-control {
|
|
|
|
border: none;
|
|
|
|
list-style-type: none;
|
|
|
|
padding-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
li {
|
|
|
|
vertical-align: center;
|
|
|
|
label {
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check .form-check-input {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_reply_form {
|
|
|
|
label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -14px;
|
|
|
|
left: 122px;
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.add_reply {
|
|
|
|
.form-control-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-check {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -14px;
|
|
|
|
left: 122px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-16 14:02:01 +12:00
|
|
|
.view_filter {
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
.post_list {
|
2024-08-16 14:02:01 +12:00
|
|
|
clear: both;
|
2024-07-05 16:27:53 +08:00
|
|
|
.post_teaser {
|
|
|
|
|
|
|
|
border-bottom: solid 2px $light-grey;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 110%;
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.meta_row, .main_row, .utilities_row {
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main_row {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.author {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 78%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-05 20:10:26 +12:00
|
|
|
.col_thumbnail {
|
2024-12-09 17:03:51 +01:00
|
|
|
float: right;
|
2024-09-06 15:43:22 +12:00
|
|
|
width: 70px;
|
2024-09-05 20:10:26 +12:00
|
|
|
position: relative;
|
|
|
|
@include breakpoint(tablet) {
|
2024-09-06 15:43:22 +12:00
|
|
|
width: 170px;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail {
|
|
|
|
|
2024-09-05 20:10:26 +12:00
|
|
|
text-align: center;
|
|
|
|
align-content: center;
|
|
|
|
display: flex;
|
2024-11-22 08:33:56 +13:00
|
|
|
height: 60px;
|
|
|
|
width: 60px;
|
|
|
|
overflow: hidden;
|
2024-09-05 20:41:15 +12:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
align-items: center;
|
2024-11-22 08:33:56 +13:00
|
|
|
height: 90px;
|
|
|
|
width: 170px;
|
|
|
|
max-width: 100%;
|
2024-09-05 20:41:15 +12:00
|
|
|
}
|
2024-09-05 20:10:26 +12:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fe-external, .fe-video, .fe-image, .fe-audio, .fe-magnify {
|
2024-07-05 16:27:53 +08:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2024-09-06 15:43:22 +12:00
|
|
|
right: 0;
|
2024-07-05 16:27:53 +08:00
|
|
|
background-color: rgba(256,256,256, 0.7);
|
|
|
|
padding-bottom: 1px;
|
|
|
|
padding-left: 1px;
|
|
|
|
border-radius: 2px;
|
2024-09-06 15:43:22 +12:00
|
|
|
top: 0;
|
2024-09-05 20:10:26 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
.fe-discussion, .fe-poll, .fe-link {
|
|
|
|
font-size: 52px;
|
|
|
|
opacity: 0.3;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 60px;
|
|
|
|
width: 60px;
|
|
|
|
border-radius: 5px;
|
|
|
|
object-fit: cover;
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
height: 90px;
|
|
|
|
width: 170px;
|
2024-09-05 20:10:26 +12:00
|
|
|
max-width: 100%;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
&.blur {
|
|
|
|
filter: blur(3px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.lbw {
|
|
|
|
.fe {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.fe::before {
|
|
|
|
font-size: 28px;
|
|
|
|
padding-right: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.missing_thumbnail {
|
|
|
|
.fe::before {
|
|
|
|
font-size: x-large;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.blocked {
|
|
|
|
opacity: 0.2;
|
|
|
|
font-size: 80%;
|
|
|
|
|
|
|
|
.voting_buttons {
|
|
|
|
width: 46px;
|
|
|
|
line-height: 24px;
|
|
|
|
.upvote_button, .downvote_button {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-11-24 09:19:58 +13:00
|
|
|
|
|
|
|
.post_teaser_clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-05 20:10:26 +12:00
|
|
|
.post_teaser_body {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-09-07 12:11:01 +12:00
|
|
|
.post_teaser_article_preview, .post_teaser_link_preview {
|
2024-09-06 22:39:27 +12:00
|
|
|
position: relative;
|
|
|
|
max-height: 100px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 3px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
2024-09-07 12:11:01 +12:00
|
|
|
-webkit-line-clamp: 2; /* Limits the text to a specific number of lines */
|
|
|
|
line-clamp: 2;
|
2024-09-06 22:39:27 +12:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_teaser_image_preview {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
2024-09-07 14:18:20 +12:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 512px;
|
|
|
|
}
|
2024-09-06 22:39:27 +12:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2024-12-06 10:21:44 +13:00
|
|
|
min-width: 150px;
|
2024-09-07 14:22:35 +12:00
|
|
|
margin-right: 4px;
|
|
|
|
border-radius: 5px;
|
2024-09-09 15:35:22 +12:00
|
|
|
height: auto;
|
2024-09-06 22:39:27 +12:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_teaser_video_preview {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
position: relative;
|
2024-09-07 12:11:01 +12:00
|
|
|
|
2024-09-06 22:39:27 +12:00
|
|
|
.fe-video {
|
|
|
|
position: absolute;
|
|
|
|
left: 43%;
|
|
|
|
top: 40%;
|
|
|
|
width: 13%;
|
|
|
|
font-size: 64px;
|
|
|
|
background-color: white;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2024-09-07 12:36:21 +12:00
|
|
|
|
|
|
|
.video-wrapper {
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-wrapper img {
|
2024-09-08 12:31:16 +12:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
2024-09-07 12:36:21 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-wrapper iframe {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: 0;
|
|
|
|
}
|
2024-09-06 22:39:27 +12:00
|
|
|
}
|
|
|
|
|
2024-10-05 12:25:31 +13:00
|
|
|
time {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author {
|
|
|
|
padding-left: 3px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-07 12:11:01 +12:00
|
|
|
.max_width_512 {
|
|
|
|
max-width: 512px;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
.post_utilities_bar {
|
|
|
|
display: flex;
|
|
|
|
min-height: $min-touch-target;
|
2024-09-06 23:14:57 +12:00
|
|
|
/* justify-content: space-between; */
|
|
|
|
justify-content: left;
|
2024-09-06 22:50:20 +12:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
justify-content: left;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
|
2024-12-09 14:05:09 +01:00
|
|
|
div {
|
2024-07-05 16:27:53 +08:00
|
|
|
display: flex;
|
2024-12-09 14:05:09 +01:00
|
|
|
justify-content: center;
|
2024-07-05 16:27:53 +08:00
|
|
|
align-items: center;
|
2024-09-07 18:44:51 +12:00
|
|
|
min-width: $min-touch-target;
|
2024-09-05 20:10:26 +12:00
|
|
|
height: $min-touch-target;
|
2024-12-09 14:05:09 +01:00
|
|
|
line-height: $min-touch-target;
|
2024-12-22 15:43:28 +13:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
white-space: unset;
|
|
|
|
line-height: 30px;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
}
|
2024-09-05 20:10:26 +12:00
|
|
|
}
|
|
|
|
|
2024-12-09 14:05:09 +01:00
|
|
|
.notify_toggle {
|
|
|
|
margin-left: auto; /* pull right */
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-05 20:10:26 +12:00
|
|
|
.post_full .post_utilities_bar {
|
|
|
|
.voting_buttons_new {
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
#masonry {
|
|
|
|
display: flex;
|
|
|
|
.column {
|
|
|
|
flex: 1;
|
|
|
|
padding: 0;
|
|
|
|
padding-right: 5px;
|
|
|
|
&:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
height: auto; /* Ensure aspect ratio is maintained */
|
|
|
|
}
|
|
|
|
|
|
|
|
.masonry_thumb a, .masonry_thumb a:active {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.masonry_info {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.voting_buttons_masonry {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: 40px;
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.row {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
|
|
|
|
.col {
|
|
|
|
padding: 0;
|
|
|
|
flex-direction: row;
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
padding-top: 6px;
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upvote_button, .downvote_button {
|
|
|
|
display: inline;
|
|
|
|
color: white;
|
|
|
|
padding-top: 10px;
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
width: 50%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.htmx-indicator {
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
left: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.voted_up {
|
|
|
|
color: $green;
|
|
|
|
}
|
|
|
|
&.voted_down {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.col-8 {
|
|
|
|
justify-content: center;
|
|
|
|
p {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply_col {
|
|
|
|
justify-content: right;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.masonry_info_no_image {
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--bs-body-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout_switcher {
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.url_thumbnail {
|
|
|
|
float: right;
|
|
|
|
margin-top: -6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_image {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 90vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.render_username {
|
|
|
|
display: inline;
|
|
|
|
a img {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
2024-10-23 21:35:44 +13:00
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.comments > .comment {
|
|
|
|
margin-left: 0;
|
|
|
|
border-top: solid 1px $grey;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
.comment_body {
|
|
|
|
hr {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 15px;
|
|
|
|
opacity: 0.1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top: none;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-bs-theme=dark] {
|
|
|
|
.post_list .post_teaser {
|
|
|
|
border-bottom: solid 1px $super-dark-grey;
|
|
|
|
.thumbnail .fe {
|
|
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments > .comment {
|
|
|
|
border-top-color: $super-dark-grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.downarea-textarea {
|
|
|
|
.form-control {
|
|
|
|
background-color: $super-dark-grey;
|
|
|
|
color: whitesmoke;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment .replies {
|
|
|
|
border-left-color: $super-dark-grey;
|
|
|
|
border-top-color: $super-dark-grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#replies {
|
|
|
|
scroll-margin-top: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_replies > .col {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_type_image {
|
|
|
|
.post_image {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.voting_buttons_new {
|
|
|
|
.upvote_button, .downvote_button {
|
2024-07-12 20:45:19 +08:00
|
|
|
position: relative; /* so the htmx-indicators can be position: absolute */
|
2024-07-05 16:27:53 +08:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
|
|
|
|
min-width: $min-touch-target;
|
|
|
|
min-height: $min-touch-target;
|
2024-09-05 20:10:26 +12:00
|
|
|
span {
|
|
|
|
line-height: $min-touch-target;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
|
|
|
|
&.digits_4 {
|
|
|
|
width: 68px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.digits_5 {
|
|
|
|
width: 76px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.digits_6 {
|
|
|
|
width: 84px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.voted_up {
|
|
|
|
color: green;
|
2024-12-13 18:59:50 +13:00
|
|
|
.fe {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
&.voted_down {
|
|
|
|
color: darkred;
|
2024-12-13 18:59:50 +13:00
|
|
|
.fe {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upvote_button {
|
|
|
|
.htmx-indicator {
|
|
|
|
left: 13px;
|
2024-09-05 20:10:26 +12:00
|
|
|
top: 14px;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.downvote_button {
|
|
|
|
.htmx-indicator {
|
|
|
|
left: 12px;
|
2024-09-05 20:10:26 +12:00
|
|
|
top: 14px;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.htmx-indicator{
|
|
|
|
position: absolute;
|
|
|
|
left: 3px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.htmx-request .htmx-indicator{
|
|
|
|
display:inline;
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
right: 14px;
|
|
|
|
top: 5px;
|
|
|
|
opacity: 1!important;
|
|
|
|
}
|
|
|
|
.htmx-request.htmx-indicator{
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.voting_buttons {
|
|
|
|
float: right;
|
|
|
|
display: block;
|
|
|
|
min-width: $min-touch-target + 10;
|
|
|
|
padding: 0 0 5px 5px;
|
|
|
|
line-height: 30px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
border: solid 1px $primary-colour;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upvote_button, .downvote_button {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 3px;
|
|
|
|
min-height: $min-touch-target;
|
|
|
|
min-width: $min-touch-target;
|
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&.digits_4 {
|
|
|
|
width: 68px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.digits_5 {
|
|
|
|
width: 76px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.digits_6 {
|
|
|
|
width: 84px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.voted_up {
|
|
|
|
color: green;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
&.voted_down {
|
|
|
|
color: darkred;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.downvote_button {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.htmx-indicator{
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.htmx-request .htmx-indicator{
|
|
|
|
display:inline;
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
right: 14px;
|
|
|
|
top: 5px;
|
|
|
|
opacity: 1!important;
|
|
|
|
}
|
|
|
|
.htmx-request.htmx-indicator{
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment {
|
|
|
|
clear: both;
|
|
|
|
margin-left: 15px;
|
2024-12-05 13:11:40 +01:00
|
|
|
padding-left: 0px;
|
2024-07-05 16:27:53 +08:00
|
|
|
padding-top: 8px;
|
|
|
|
|
|
|
|
.limit_height {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.expanded {
|
|
|
|
max-height: none;
|
|
|
|
|
|
|
|
.show-more {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.show-more {
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
background-color: $dark-grey;
|
|
|
|
color: white;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
.fe-angles-down, .fe-angles-up {
|
|
|
|
margin-top: 7px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
height: 23px;
|
|
|
|
.fe-angles-down, .fe-angles-up {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-23 09:26:05 +13:00
|
|
|
.comment_author .author_link {
|
2024-07-05 16:27:53 +08:00
|
|
|
img {
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
border-radius: 50%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2024-07-10 12:33:15 +02:00
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
|
2024-07-10 23:20:20 +02:00
|
|
|
.comment_community {
|
|
|
|
display: inline-block;
|
|
|
|
img {
|
|
|
|
height: 1rem;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-10 12:33:15 +02:00
|
|
|
a.unhide {
|
|
|
|
display: none;
|
|
|
|
text-decoration: none;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment_actions {
|
2024-09-06 12:59:59 +12:00
|
|
|
margin-top: -18px;
|
2024-12-09 14:05:09 +01:00
|
|
|
display: flex;
|
|
|
|
min-height: $min-touch-target;
|
|
|
|
/* justify-content: space-between; */
|
|
|
|
justify-content: left;
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
justify-content: left;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
2024-12-09 14:05:09 +01:00
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
min-width: $min-touch-target;
|
|
|
|
height: $min-touch-target;
|
|
|
|
line-height: $min-touch-target;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
2024-07-10 16:28:51 +02:00
|
|
|
.notify_toggle {
|
2024-12-09 14:05:09 +01:00
|
|
|
margin-left: auto; /* pull right */
|
|
|
|
font-size: 87%;
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
2024-12-22 14:40:29 +13:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
white-space: unset;
|
|
|
|
line-height: 30px;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.replies {
|
|
|
|
margin-top: 0;
|
|
|
|
border-left: solid 1px $light-grey;
|
|
|
|
border-top: solid 1px $light-grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-22 15:38:40 +13:00
|
|
|
.hide-labels label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
#add_local_community_form {
|
|
|
|
#url {
|
|
|
|
width: 297px;
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#reasons {
|
|
|
|
border: none;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
height: 230px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
tr th {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.show_menu {
|
|
|
|
display: block!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.moderator_list {
|
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
legend {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile_action_buttons, .rh_action_buttons {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview_image_shown {
|
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
|
|
|
max-width: 92vw;
|
|
|
|
height: auto;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
max-width: 760px;
|
|
|
|
}
|
|
|
|
@include breakpoint(laptop) {
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
@include breakpoint(desktop) {
|
|
|
|
max-width: 850px;
|
|
|
|
}
|
|
|
|
@include breakpoint(bigbig) {
|
|
|
|
max-width: 1180px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile_create_post {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_body, .comment_body {
|
2024-08-14 19:59:19 +12:00
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 40vh;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
blockquote {
|
|
|
|
border-left: 2px solid var(--bs-secondary);
|
|
|
|
padding: 0.1em 5px;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2024-08-14 19:59:19 +12:00
|
|
|
|
|
|
|
table.table {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
2024-07-05 16:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.skip-link:focus {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#choose_communities_in_topic_card {
|
|
|
|
max-width: inherit;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#choose_community {
|
|
|
|
table th {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning_badge {
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
&.nsfw {
|
|
|
|
border:1px solid #FF585B;
|
|
|
|
color:#FF585B;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.nsfl {
|
|
|
|
border:1px solid black;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 .warning_badge {
|
|
|
|
position: relative;
|
|
|
|
left: 15px;
|
|
|
|
top: -6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-bs-theme=dark] .warning_badge.nsfl {
|
|
|
|
border:1px solid white;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_title {
|
|
|
|
.warning_badge {
|
|
|
|
line-height: 32px;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation {
|
|
|
|
position: relative;
|
|
|
|
.message {
|
|
|
|
width: 90%;
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
max-width: 100%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
clear: both;
|
|
|
|
|
|
|
|
&.from_other_party {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
&.from_me {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.message_created_at {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
form .form-control-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.conversation_options {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-08 07:01:51 +13:00
|
|
|
.form-control-file {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2024-10-21 15:55:55 +13:00
|
|
|
.profile_bio {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2024-12-05 14:33:57 +13:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wiki_page {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2024-10-21 15:55:55 +13:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
#post_reply_markdown_editor_enabler {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 3px;
|
|
|
|
right: 0;
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.create_post_markdown_editor_enabler {
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.redo_search {
|
|
|
|
display: inline;
|
|
|
|
input[type=search] {
|
|
|
|
width: unset;
|
|
|
|
display: inline;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: initial;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.responsive-video {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 90vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_language_chooser {
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
max-width: 150px;
|
|
|
|
float: right;
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.language-float-right {
|
|
|
|
@include breakpoint(phablet) {
|
|
|
|
max-width: 150px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#pollChoicesFieldset {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_poll {
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
li {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
.vote_bar {
|
|
|
|
.vote_score {
|
|
|
|
background-color: $grey;
|
|
|
|
color: white;
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-14 19:59:19 +12:00
|
|
|
|
2024-07-05 16:27:53 +08:00
|
|
|
|
|
|
|
#baguetteBox-overlay {
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2023-08-26 15:41:11 +12:00
|
|
|
.card-title {
|
|
|
|
font-size: 140%;
|
|
|
|
}
|
|
|
|
|
2023-11-12 20:54:11 +13:00
|
|
|
.card-header {
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-29 22:01:06 +12:00
|
|
|
.alert-info, .alert-message, .alert-error {
|
2023-08-26 15:41:11 +12:00
|
|
|
color: #0c5460;
|
|
|
|
background-color: #d1ecf1;
|
|
|
|
border-color: #bee5eb;
|
2023-08-29 22:01:06 +12:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
padding-left: 1.8rem;
|
|
|
|
padding-right: 1.8rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-error {
|
|
|
|
color: #722047;
|
|
|
|
background-color: #f8d7da;
|
|
|
|
}
|
|
|
|
|
2023-11-09 21:32:29 +13:00
|
|
|
.main_pane {
|
|
|
|
border: solid 1px $light-grey;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 12px;
|
2023-12-22 14:05:39 +13:00
|
|
|
|
|
|
|
.url_thumbnail {
|
|
|
|
width: 120px;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
2023-12-27 19:51:07 +13:00
|
|
|
height: auto;
|
2023-12-22 14:05:39 +13:00
|
|
|
}
|
|
|
|
}
|
2023-11-09 21:32:29 +13:00
|
|
|
}
|
|
|
|
|
2024-04-03 15:54:12 +13:00
|
|
|
.side_pane {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2024-12-22 15:38:40 +13:00
|
|
|
|
|
|
|
.list-group-item:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2024-04-03 15:54:12 +13:00
|
|
|
}
|
|
|
|
|
2024-01-13 22:09:02 +13:00
|
|
|
[data-bs-theme=dark] .main_pane {
|
|
|
|
border-color: $super-dark-grey;
|
|
|
|
}
|
|
|
|
|
2024-05-15 21:17:03 +12:00
|
|
|
[data-bs-theme=dark] .form-control {
|
|
|
|
background-color: $super-dark-grey;
|
|
|
|
color: $lightest-grey;
|
|
|
|
&:focus {
|
|
|
|
background-color: $super-dark-grey;
|
|
|
|
color: $lightest-grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-29 22:01:06 +12:00
|
|
|
.community_icon {
|
2023-12-22 14:05:39 +13:00
|
|
|
width: 20vw;
|
|
|
|
height: 20vw;
|
2024-04-03 21:03:38 +13:00
|
|
|
max-width: 30px!important;
|
2023-12-22 14:05:39 +13:00
|
|
|
max-height: 30px;
|
|
|
|
min-width: 20px;
|
|
|
|
min-height: 20px;
|
2024-01-05 14:09:46 +13:00
|
|
|
vertical-align: text-top;
|
2023-08-29 22:01:06 +12:00
|
|
|
}
|
|
|
|
|
2024-01-05 16:41:50 +13:00
|
|
|
.list-group-item .community_icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2023-08-29 22:01:06 +12:00
|
|
|
.community_icon_big {
|
2023-12-22 14:05:39 +13:00
|
|
|
width: 20vw;
|
|
|
|
height: 20vw;
|
|
|
|
max-width: 120px;
|
|
|
|
max-height: 120px;
|
|
|
|
min-width: 80px;
|
|
|
|
min-height: 80px;
|
|
|
|
object-fit: cover;
|
2023-08-29 22:01:06 +12:00
|
|
|
}
|
|
|
|
|
2024-10-01 21:48:27 +00:00
|
|
|
.community_icon_small {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2024-10-04 19:03:40 +13:00
|
|
|
margin-right: 3px;
|
2024-10-01 21:48:27 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 22:01:06 +12:00
|
|
|
.bump_up {
|
|
|
|
position: absolute;
|
2023-12-22 14:05:39 +13:00
|
|
|
top: 115px;
|
2023-08-29 22:01:06 +12:00
|
|
|
left: 26px;
|
|
|
|
|
2023-10-02 22:16:44 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.external_link_icon {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-left: 4px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
2023-10-15 21:13:32 +13:00
|
|
|
|
2024-06-28 18:34:54 +08:00
|
|
|
form {
|
|
|
|
h5 {
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-15 21:13:32 +13:00
|
|
|
.coolfieldset, .coolfieldset.expanded{
|
|
|
|
border:1px solid $light-grey;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.coolfieldset.collapsed{
|
|
|
|
border:0;
|
|
|
|
border-top:1px solid $grey;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.coolfieldset legend{
|
|
|
|
padding-left:13px;
|
|
|
|
font-weight:bold;
|
|
|
|
cursor:pointer;
|
|
|
|
background-color: white;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
top: -11px;
|
2024-12-05 14:12:32 +13:00
|
|
|
|
|
|
|
&.tweak-top {
|
|
|
|
top: -18px;
|
|
|
|
}
|
2023-10-15 21:13:32 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.coolfieldset legend, .coolfieldset.expanded legend{
|
|
|
|
background: whitesmoke url(/static/images/expanded.gif) no-repeat center left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.coolfieldset.collapsed legend{
|
|
|
|
background: whitesmoke url(/static/images/collapsed.gif) no-repeat center left;
|
2023-10-23 22:54:11 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.domain_link {
|
2024-01-23 19:17:05 +13:00
|
|
|
color: #777;
|
2023-10-23 22:54:11 +13:00
|
|
|
font-size: 73%;
|
|
|
|
a {
|
2024-01-23 19:17:05 +13:00
|
|
|
color: #777;
|
2023-10-23 22:54:11 +13:00
|
|
|
}
|
2023-11-09 22:44:09 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment_author {
|
|
|
|
a {
|
2024-01-01 14:49:15 +13:00
|
|
|
|
2023-11-09 22:44:09 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.low_score {
|
|
|
|
.hide_button, .comment_author {
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: normal;
|
|
|
|
color: $dark-grey;
|
|
|
|
}
|
|
|
|
}
|
2023-11-12 20:54:11 +13:00
|
|
|
}
|
|
|
|
|
2023-11-17 22:02:44 +13:00
|
|
|
.communities_table tr td {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-top: 6px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-26 16:19:06 +13:00
|
|
|
.table tbody tr th {
|
|
|
|
a {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 22:05:35 +13:00
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2023-11-30 17:39:13 +13:00
|
|
|
#timeSpent {
|
|
|
|
cursor: wait;
|
|
|
|
}
|
|
|
|
|
2024-07-16 09:36:31 +08:00
|
|
|
.ellipsis::after {
|
|
|
|
content: "…";
|
|
|
|
}
|
|
|
|
|
2023-11-30 20:57:51 +13:00
|
|
|
.option_list {
|
|
|
|
list-style-type: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-bottom: 15px;
|
2024-06-20 21:51:43 +08:00
|
|
|
|
|
|
|
.fe {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
2023-11-30 20:57:51 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-08 17:13:38 +13:00
|
|
|
.field_hint {
|
|
|
|
margin-top: -15px;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2023-12-26 21:39:52 +13:00
|
|
|
.alert {
|
|
|
|
width: 96%;
|
|
|
|
}
|
|
|
|
|
2024-01-02 16:07:41 +13:00
|
|
|
.reported {
|
|
|
|
background-color: antiquewhite;
|
|
|
|
}
|
|
|
|
|
2024-01-12 17:15:08 +13:00
|
|
|
.dropdown-header {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2024-01-21 12:14:05 +13:00
|
|
|
.current_post {
|
|
|
|
background-color: aliceblue;
|
|
|
|
.replies {
|
|
|
|
background-color: var(--bs-body-bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-bs-theme=dark] .current_post {
|
|
|
|
background-color: $super-dark-grey;
|
|
|
|
}
|
|
|
|
|
2024-01-13 22:09:02 +13:00
|
|
|
.h1, h1 {
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
font-size: 2rem;
|
2024-01-06 11:31:45 +13:00
|
|
|
}
|
2024-01-13 22:09:02 +13:00
|
|
|
}
|
2024-01-06 11:31:45 +13:00
|
|
|
|
2024-01-13 22:09:02 +13:00
|
|
|
.h2, h2 {
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
font-size: 1.8rem;
|
2024-01-06 11:31:45 +13:00
|
|
|
}
|
2024-01-13 22:09:02 +13:00
|
|
|
}
|
2024-01-06 11:31:45 +13:00
|
|
|
|
2024-01-13 22:09:02 +13:00
|
|
|
.h3, h3 {
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
font-size: 1.6rem;
|
2024-01-06 11:31:45 +13:00
|
|
|
}
|
2024-01-13 22:09:02 +13:00
|
|
|
}
|
2024-02-16 14:24:13 +13:00
|
|
|
|
2024-02-17 20:05:57 +13:00
|
|
|
.sender_list {
|
|
|
|
border-right: solid 1px #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message {
|
|
|
|
border: solid 1px #ddd;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 8px 15px 0 15px;
|
|
|
|
|
|
|
|
&.from_other_party {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
&.from_me {
|
|
|
|
color: var(--bs-card-cap-color);
|
|
|
|
background-color: var(--bs-card-cap-bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 14:59:05 +13:00
|
|
|
#subtopic_nav {
|
|
|
|
position: relative;
|
|
|
|
left: -15px;
|
|
|
|
li a {
|
|
|
|
border: dotted 2px transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-12 13:02:45 +12:00
|
|
|
.post_tags {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
.post_tag {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-10 19:07:15 +08:00
|
|
|
#home_announcement {
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
color: var(--bs-card-cap-color);
|
|
|
|
background-color: rgba(var(--bs-body-color-rgb), 0.03);
|
|
|
|
border-bottom: var(--bs-border-width) solid var(--bs-border-color-translucent);
|
|
|
|
margin-top: -8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
margin-right: calc(var(--bs-gutter-x) * -.5);
|
|
|
|
margin-left: calc(var(--bs-gutter-x) * -.5);
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-09 18:11:32 +13:00
|
|
|
.pt-05 {
|
|
|
|
padding-top: .12rem !important;
|
|
|
|
}
|
|
|
|
|
2024-12-23 09:26:05 +13:00
|
|
|
.render_username {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.author_link {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author_link:hover + .user_preview, .user_preview:hover {
|
|
|
|
display: inline-block !important;
|
|
|
|
position: absolute;
|
|
|
|
top: 17px;
|
|
|
|
left: 0;
|
|
|
|
background-color: white;
|
|
|
|
z-index: 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_preview .card {
|
|
|
|
width: 300px;
|
|
|
|
|
2024-12-23 09:29:50 +13:00
|
|
|
.preview_avatar_image {
|
|
|
|
max-width: 50%;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2024-12-23 09:26:05 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-17 20:05:57 +13:00
|
|
|
|
|
|
|
/* high contrast */
|
2024-07-05 16:27:53 +08:00
|
|
|
@import "scss/high_contrast";
|
2024-04-21 16:27:32 +12:00
|
|
|
|
2024-06-14 18:18:21 +08:00
|
|
|
[data-bs-theme="dark"] .dropdown-header {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-04-21 16:27:32 +12:00
|
|
|
@import "scss/print";
|