2022-01-21 18:02:27 +00:00
|
|
|
.favourite-button-container {
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/heart.svg");
|
|
|
|
-o-mask-image: url("../icons/heart.svg");
|
|
|
|
-webkit-mask-image: url("../icons/heart.svg");
|
|
|
|
mask-image: url("../icons/heart.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.reply-button-container {
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/reply.svg");
|
|
|
|
-o-mask-image: url("../icons/reply.svg");
|
|
|
|
-webkit-mask-image: url("../icons/reply.svg");
|
|
|
|
mask-image: url("../icons/reply.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.repeat-button-container {
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/repeat.svg");
|
|
|
|
-o-mask-image: url("../icons/repeat.svg");
|
|
|
|
-webkit-mask-image: url("../icons/repeat.svg");
|
|
|
|
mask-image: url("../icons/repeat.svg");
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.delete-button-container {
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/delete.svg");
|
|
|
|
-o-mask-image: url("../icons/delete.svg");
|
|
|
|
-webkit-mask-image: url("../icons/delete.svg");
|
|
|
|
mask-image: url("../icons/delete.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-07 20:25:37 +00:00
|
|
|
.icon-eye-opened {
|
|
|
|
background-color: var(--foreground);
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/eye-opened.svg");
|
|
|
|
-o-mask-image: url("../icons/eye-opened.svg");
|
|
|
|
-webkit-mask-image: url("../icons/eye-opened.svg");
|
|
|
|
mask-image: url("../icons/eye-opened.svg");
|
2022-02-07 20:25:37 +00:00
|
|
|
display: inline-flex;
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-eye-closed {
|
|
|
|
background-color: var(--foreground);
|
2022-02-08 16:13:46 +00:00
|
|
|
-moz-mask-image: url("../icons/eye-closed.svg");
|
|
|
|
-o-mask-image: url("../icons/eye-closed.svg");
|
|
|
|
-webkit-mask-image: url("../icons/eye-closed.svg");
|
|
|
|
mask-image: url("../icons/eye-closed.svg");
|
2022-02-07 20:25:37 +00:00
|
|
|
display: inline-flex;
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.embed {
|
|
|
|
border: unset;
|
|
|
|
display: flex;
|
|
|
|
padding: var(--s);
|
2021-11-15 13:55:23 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.embed .p-author,.embed .p-name {
|
|
|
|
font-weight: 600;
|
2021-10-19 20:33:01 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.embed .p-summary {
|
|
|
|
width: 60%;
|
2021-12-31 17:02:18 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.embed .p-summary hr {
|
|
|
|
margin-bottom: var(--s);
|
|
|
|
margin-top: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed header {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--m);
|
2022-01-21 18:02:27 +00:00
|
|
|
width: 100%;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed img {
|
2022-01-21 18:02:27 +00:00
|
|
|
padding: unset;
|
2022-02-19 19:18:25 +00:00
|
|
|
margin-right: var(--s);
|
|
|
|
max-block-size: 128px;
|
|
|
|
width: auto;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.feed-header>h1,.feed-header>h2,.feed-header>h3,.feed-header>h4,.feed-header>h5,.feed-header>h6 {
|
2022-02-16 03:01:25 +00:00
|
|
|
margin-bottom: unset;
|
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.feed-actions-details summary,.note-actions-extra-details summary {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.feed-actions-details-dropdown {
|
2022-02-16 21:17:13 +00:00
|
|
|
font-size: .937rem;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.feed-actions-details[open]>.feed-actions-details-dropdown,.note-actions-extra-details[open]>summary+* {
|
2022-01-21 18:02:27 +00:00
|
|
|
background: var(--background-card);
|
2022-01-27 00:54:27 +00:00
|
|
|
border: 1px solid var(--border);
|
2022-01-21 18:02:27 +00:00
|
|
|
border-radius: var(--s);
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
display: flex;
|
2022-01-27 00:54:27 +00:00
|
|
|
flex-direction: column;
|
2022-01-21 18:02:27 +00:00
|
|
|
padding: 4px 8px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
width: max-content;
|
|
|
|
z-index: 1;
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.feed-actions-details[open]>summary,.note-actions-extra-details[open]>summary {
|
2022-01-21 18:02:27 +00:00
|
|
|
opacity: 1 !important;
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.feed-actions-details[open] svg {
|
|
|
|
height: auto;
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feed-empty {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.feed-empty .feed-background {
|
|
|
|
height: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: var(--xxl);
|
|
|
|
opacity: 3%;
|
|
|
|
width: 40%;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.feed-header {
|
|
|
|
display: flex;
|
2022-01-23 19:46:47 +00:00
|
|
|
margin-bottom: var(--m);
|
2022-01-22 19:16:35 +00:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.feed-header .feed-actions {
|
|
|
|
margin-left: auto;
|
|
|
|
text-transform: capitalize;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry {
|
2022-02-08 14:12:59 +00:00
|
|
|
background-color: var(--background-card);
|
2022-01-21 18:02:27 +00:00
|
|
|
border-radius: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2022-02-08 16:13:46 +00:00
|
|
|
flex-wrap: wrap;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry .embed[class*="p-"] {
|
|
|
|
padding: unset;
|
2021-10-29 22:01:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-replies .note-replies {
|
|
|
|
margin-left: 1em;
|
2022-02-08 16:13:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-replies-indicator {
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .66;
|
2022-02-08 16:13:46 +00:00
|
|
|
margin-right: 8px;
|
|
|
|
float: left;
|
2022-02-08 01:26:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 18:49:34 +00:00
|
|
|
.note-replies-indicator::before {
|
|
|
|
content: '\201C';
|
2022-02-16 21:17:13 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
opacity: .66;
|
2022-02-09 18:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.note-replies-parent {
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .66;
|
|
|
|
font-size: .937rem;
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry a:focus {
|
|
|
|
text-decoration: underline;
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.h-entry figure,.note-attachments-unit figure {
|
2022-01-21 18:02:27 +00:00
|
|
|
background: var(--gradient);
|
|
|
|
border-radius: var(--s);
|
|
|
|
margin: unset;
|
|
|
|
padding: var(--s);
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.h-entry img,.note-attachments-unit figure img {
|
|
|
|
background: repeating-conic-gradient(#ffffff66 0 90deg,#ffffff33 0 180deg) 0 0/40px 40px round;
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry-language {
|
|
|
|
background: var(--gradient-backwards);
|
|
|
|
border-radius: 0 0 var(--s) 0;
|
|
|
|
color: var(--foreground);
|
|
|
|
float: right;
|
|
|
|
padding: 6px 12px;
|
|
|
|
position: relative;
|
2021-12-08 22:46:00 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry:not(:first-child) {
|
|
|
|
margin-top: var(--s);
|
2021-12-08 22:46:00 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry:not(embed) {
|
|
|
|
border: 1px solid var(--border);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.h-entry[id^="note-anchor-"]:target {
|
|
|
|
border: 2px solid var(--accent) !important;
|
2021-12-29 19:02:06 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-attachments {
|
|
|
|
display: flex;
|
2022-02-08 00:18:24 +00:00
|
|
|
flex-wrap: wrap;
|
2022-01-07 21:10:55 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-attachments-unit {
|
|
|
|
border-radius: var(--s);
|
|
|
|
display: flex;
|
|
|
|
max-width: max-content;
|
2022-02-08 00:18:24 +00:00
|
|
|
height: min-content;
|
|
|
|
padding: 4px;
|
2021-12-26 17:37:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-attachments-unit>figure figcaption {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: flex;
|
|
|
|
word-break: break-all;
|
2021-12-06 20:47:56 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-attachments-unit:not(:only-child) {
|
|
|
|
margin-right: var(--s);
|
2021-10-29 22:01:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.note-info,embed header {
|
2022-01-25 00:02:38 +00:00
|
|
|
border-bottom: unset;
|
|
|
|
border-radius: 0 var(--s) 0 0;
|
|
|
|
display: flex;
|
|
|
|
line-height: initial;
|
2021-10-05 23:36:15 +01:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-info {
|
|
|
|
display: flex;
|
2022-02-16 21:17:13 +00:00
|
|
|
align-items: center;
|
2022-01-25 00:02:38 +00:00
|
|
|
white-space: nowrap;
|
2022-02-08 00:30:15 +00:00
|
|
|
overflow: auto;
|
|
|
|
touch-action: manipulation;
|
2022-01-25 00:02:38 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.note-info .note-conversation-info,.note-info .note-author-uri {
|
2022-02-09 18:49:34 +00:00
|
|
|
margin-left: 4px;
|
2022-01-25 00:02:38 +00:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-02-09 18:49:34 +00:00
|
|
|
.note-info small {
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .5;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-author-url {
|
2022-02-16 21:17:13 +00:00
|
|
|
font-weight: 600;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.note-author-uri,.note-conversation-info {
|
2022-01-21 18:02:27 +00:00
|
|
|
font-style: italic;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-actions {
|
2022-02-08 01:26:25 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: initial;
|
|
|
|
justify-content: flex-end;
|
2022-02-08 16:13:46 +00:00
|
|
|
flex: 1;
|
|
|
|
align-items: center;
|
2022-01-25 00:02:38 +00:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
|
|
|
.note-actions>li {
|
2022-01-25 00:02:38 +00:00
|
|
|
display: inline-block;
|
2022-02-08 01:26:25 +00:00
|
|
|
margin-left: 8px;
|
2022-01-25 00:02:38 +00:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-actions-extra-details ul {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-actions-extra-details hr {
|
|
|
|
margin: unset;
|
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-actions-extra-details summary {
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .5;
|
2022-01-25 00:02:38 +00:00
|
|
|
}
|
2022-02-08 16:13:46 +00:00
|
|
|
|
|
|
|
.note-actions-extra-details[open]>summary+*>a {
|
2022-02-16 21:17:13 +00:00
|
|
|
font-size: .937rem;
|
2022-01-25 00:02:38 +00:00
|
|
|
line-height: 2;
|
|
|
|
}
|
2022-02-08 01:26:25 +00:00
|
|
|
|
2022-01-25 00:02:38 +00:00
|
|
|
.note-actions-set {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-end {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-complementary {
|
2022-02-08 16:13:46 +00:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2022-02-08 16:13:46 +00:00
|
|
|
flex-wrap: wrap;
|
2022-02-16 21:17:13 +00:00
|
|
|
font-size: .937rem;
|
2022-02-08 16:13:46 +00:00
|
|
|
background: var(--gradient-backwards);
|
|
|
|
padding: 4px 8px;
|
2022-02-15 11:35:48 +00:00
|
|
|
border-radius: var(--s) 0 var(--s) var(--s);
|
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.note-complementary:empty,.note-complementary:-moz-only-whitespace {
|
2022-02-15 11:35:48 +00:00
|
|
|
display: none !important;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-complementary-info a {
|
2022-02-16 21:17:13 +00:00
|
|
|
font-weight: 600;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-08 16:13:46 +00:00
|
|
|
.note-complementary-info span {
|
|
|
|
display: block;
|
|
|
|
line-height: 1.3;
|
2021-10-04 17:11:44 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-content {
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
2022-02-08 16:13:46 +00:00
|
|
|
flex: 1;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-replies-start {
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .5;
|
2021-11-10 15:44:28 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.hr-replies-end:last-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-sidebar {
|
|
|
|
display: flex;
|
2022-02-08 01:26:25 +00:00
|
|
|
flex-direction: column;
|
2022-02-19 19:18:25 +00:00
|
|
|
padding: var(--s) 4px 4px var(--s);
|
2021-11-10 15:44:28 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
.note-text {
|
|
|
|
word-break: break-all;
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-text a {
|
|
|
|
text-decoration: underline !important;
|
2021-12-29 19:31:28 +00:00
|
|
|
}
|
2022-01-07 21:10:55 +00:00
|
|
|
|
2022-02-04 16:03:49 +00:00
|
|
|
.note-text-details-summary:after {
|
|
|
|
content: "\2193";
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-text-details .note-text-details-summary small {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-text-details[open] summary:after {
|
|
|
|
content: "\2191";
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-text-details[open] .note-text-details-summary small {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.note-wrapper {
|
|
|
|
height: inherit;
|
2022-02-08 16:13:46 +00:00
|
|
|
flex: 1;
|
2022-02-19 19:18:25 +00:00
|
|
|
padding: 4px;
|
2021-12-29 19:31:28 +00:00
|
|
|
}
|
2021-12-26 15:55:49 +00:00
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
.posting-extra [id|="note-compact"] {
|
2022-02-16 21:17:13 +00:00
|
|
|
border: unset;
|
|
|
|
border-bottom: 1px solid var(--border);
|
2022-02-15 12:36:45 +00:00
|
|
|
}
|
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
[id|="note-compact"] .note-wrapper {
|
|
|
|
padding: var(--s);
|
2022-02-15 12:36:45 +00:00
|
|
|
}
|
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
[id|="note-compact"] .note-sidebar {
|
2022-02-15 12:36:45 +00:00
|
|
|
all: unset;
|
2022-02-19 19:18:25 +00:00
|
|
|
display: inline-flex;
|
2022-02-15 12:36:45 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
[id|="note-compact"] .note-sidebar img,
|
|
|
|
.note-sidebar img {
|
|
|
|
background: unset !important;
|
|
|
|
}
|
2022-02-16 21:17:13 +00:00
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
[id|="note-compact"] hr {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2022-02-08 17:14:28 +00:00
|
|
|
|
2022-02-19 19:18:25 +00:00
|
|
|
[id|="note-compact"] {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 16vh;
|
|
|
|
word-break: break-all;
|
|
|
|
overflow: auto;
|
|
|
|
touch-action: manipulation;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width:1280px) {
|
2022-02-08 17:14:28 +00:00
|
|
|
.note-replies .note-replies {
|
2022-02-16 21:17:13 +00:00
|
|
|
margin-left: .33em;
|
2022-02-08 17:14:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 18:49:34 +00:00
|
|
|
.note-replies-indicator::before {
|
2022-02-08 17:14:28 +00:00
|
|
|
content: '\201C';
|
|
|
|
font-size: 1em;
|
2022-02-16 21:17:13 +00:00
|
|
|
opacity: .66;
|
2022-02-08 17:14:28 +00:00
|
|
|
}
|
2022-02-16 21:17:13 +00:00
|
|
|
}
|