2021-12-23 21:29:46 +00:00
|
|
|
.feed-header {
|
|
|
|
display: flex;
|
|
|
|
margin-top: var(--m);
|
|
|
|
}
|
|
|
|
.feed-header .feed-actions {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
.feed-header .feed-actions a {
|
|
|
|
margin-left: var(--s);
|
|
|
|
}
|
|
|
|
.feed-header .feed-actions a:not(.active) {
|
2021-12-26 15:55:49 +00:00
|
|
|
opacity: 0.33;
|
2021-12-23 21:29:46 +00:00
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.notes hr {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-top: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-wrapper {
|
|
|
|
width: 100%;
|
2021-12-07 15:33:02 +00:00
|
|
|
height: inherit;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s) var(--s) 0 0;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-sidebar {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-26 15:55:49 +00:00
|
|
|
align-items: center;
|
|
|
|
padding: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-26 15:55:49 +00:00
|
|
|
.note-sidebar > * {
|
2021-12-02 15:29:46 +00:00
|
|
|
max-width: 4rem;
|
|
|
|
max-height: 4rem;
|
|
|
|
width: 100%;
|
2021-10-01 16:37:28 +01:00
|
|
|
height: auto;
|
2021-12-07 15:33:02 +00:00
|
|
|
border-radius: 2px;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-26 15:55:49 +00:00
|
|
|
.note-sidebar img {
|
|
|
|
background: unset !important;
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry:not(:first-child) {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-top: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-11-15 13:55:23 +00:00
|
|
|
.h-entry:not(embed) {
|
|
|
|
border: 2px solid var(--border) !important;
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
.h-entry img {
|
|
|
|
background: repeating-conic-gradient(#ffffff66 0deg 90deg, #ffffff33 0deg 180deg) 0 0/40px 40px round;
|
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-24 22:45:38 +01:00
|
|
|
flex-wrap: wrap;
|
2021-12-23 21:29:46 +00:00
|
|
|
padding: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
border: unset;
|
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed header {
|
|
|
|
width: 100%;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--m);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed img {
|
|
|
|
width: 25%;
|
|
|
|
height: auto;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-right: var(--s);
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
|
|
|
.embed .p-summary {
|
|
|
|
width: 60%;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
.embed .p-author,
|
|
|
|
.embed .p-name {
|
2021-10-24 22:45:38 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.embed img {
|
2021-10-01 16:37:28 +01:00
|
|
|
padding: unset;
|
|
|
|
max-width: min-content;
|
2021-12-07 15:33:02 +00:00
|
|
|
max-height: min-content;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed .p-summary hr {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-top: var(--s);
|
|
|
|
margin-bottom: var(--s);
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
|
|
|
.h-entry .embed[class*="p-"] {
|
2021-12-07 15:33:02 +00:00
|
|
|
padding: unset;
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
|
|
|
.h-entry a:focus {
|
2021-12-07 15:33:02 +00:00
|
|
|
text-decoration: underline;
|
2021-10-24 22:45:38 +01:00
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry {
|
|
|
|
display: flex;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2021-11-15 13:55:23 +00:00
|
|
|
background-color: var(--background-card) !important;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.h-entry figure {
|
|
|
|
margin: unset;
|
2021-11-17 17:28:46 +00:00
|
|
|
object-fit: cover;
|
2021-12-23 21:29:46 +00:00
|
|
|
padding: var(--s);
|
2021-11-17 17:28:46 +00:00
|
|
|
background: var(--gradient);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-11-29 15:09:31 +00:00
|
|
|
.h-entry .replies {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--m);
|
2021-12-26 15:55:49 +00:00
|
|
|
padding: 0 var(--s) 0 var(--s);
|
|
|
|
border-left: 1px solid var(--border);
|
|
|
|
}
|
|
|
|
.replies small {
|
|
|
|
opacity: 0.5;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.note-info,
|
|
|
|
embed header {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
border-bottom: unset;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s) var(--s) 0 0;
|
2021-12-26 15:55:49 +00:00
|
|
|
line-height: initial;
|
|
|
|
padding: 8px var(--s) 8px 0;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-29 22:01:28 +01:00
|
|
|
.note-info {
|
2021-12-07 15:33:02 +00:00
|
|
|
background: var(--gradient-backwards);
|
2021-10-29 22:01:28 +01:00
|
|
|
}
|
2021-12-26 15:55:49 +00:00
|
|
|
.note-info > * {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.note-info-start {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.note-info-start > * {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
.note-conversation-info {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
.note-author-url,
|
|
|
|
.note-conversation-url,
|
2021-12-08 22:46:00 +00:00
|
|
|
.note-url {
|
2021-12-26 15:55:49 +00:00
|
|
|
font-style: italic;
|
2021-12-08 22:46:00 +00:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
embed header {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.note-author-url {
|
2021-12-26 15:55:49 +00:00
|
|
|
float: left;
|
2021-12-08 22:46:00 +00:00
|
|
|
margin-left: 4px;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-26 14:47:28 +01:00
|
|
|
.note-author-fullname {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-12-08 22:46:00 +00:00
|
|
|
.note-actions {
|
2021-12-26 15:55:49 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-12-08 22:46:00 +00:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-12-06 20:35:44 +00:00
|
|
|
.note-actions ul {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-12-07 15:33:02 +00:00
|
|
|
vertical-align: middle;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-06 20:35:44 +00:00
|
|
|
.note-actions-extra-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.note-actions-extra-details summary {
|
|
|
|
display: block;
|
|
|
|
opacity: 0.33;
|
2021-12-26 15:55:49 +00:00
|
|
|
width: var(--unit);
|
|
|
|
height: var(--unit);
|
2021-12-06 20:35:44 +00:00
|
|
|
}
|
|
|
|
.note-actions-extra-details[open] > summary {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
.note-actions-extra-details[open] > summary + * {
|
|
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
2021-12-07 15:33:02 +00:00
|
|
|
right: 0;
|
2021-12-06 20:35:44 +00:00
|
|
|
flex-direction: column;
|
2021-12-23 21:29:46 +00:00
|
|
|
padding: var(--s);
|
2021-12-06 20:47:56 +00:00
|
|
|
border: 2px solid var(--border);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2021-12-06 20:35:44 +00:00
|
|
|
background: var(--background-card);
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
width: max-content;
|
|
|
|
}
|
2021-12-26 17:37:35 +00:00
|
|
|
.note-actions-extra-details[open] > summary + * > li {
|
|
|
|
line-height: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-actions-extra-details hr {
|
|
|
|
margin: 8px !important;
|
2021-12-06 20:47:56 +00:00
|
|
|
}
|
2021-10-29 22:01:28 +01:00
|
|
|
.note-actions-set {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.button-container {
|
|
|
|
border: none !important;
|
2021-10-05 23:36:15 +01:00
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
2021-12-06 20:35:44 +00:00
|
|
|
display: inline-block;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-left: var(--s);
|
|
|
|
width: var(--unit);
|
|
|
|
height: var(--unit);
|
2021-10-29 22:01:28 +01:00
|
|
|
background-color: var(--foreground);
|
|
|
|
opacity: 0.33;
|
2021-10-05 23:36:15 +01:00
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
.button-container:focus,
|
|
|
|
.button-container:hover {
|
2021-11-15 13:55:23 +00:00
|
|
|
border: none !important;
|
2021-12-08 13:44:06 +00:00
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
2021-10-29 22:01:28 +01:00
|
|
|
opacity: 1;
|
2021-11-15 13:55:23 +00:00
|
|
|
background-color: var(--accent);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.favourite-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-o-mask-image: url("../../icons/heart.svg");
|
|
|
|
-moz-mask-image: url("../../icons/heart.svg");
|
2021-12-07 18:46:07 +00:00
|
|
|
-webkit-mask-image: url("../../icons/heart.svg");
|
2021-12-07 15:33:02 +00:00
|
|
|
mask-image: url("../../icons/heart.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.reply-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-o-mask-image: url("../../icons/reply.svg");
|
|
|
|
-moz-mask-image: url("../../icons/reply.svg");
|
2021-12-07 18:46:07 +00:00
|
|
|
-webkit-mask-image: url("../../icons/reply.svg");
|
2021-12-07 15:33:02 +00:00
|
|
|
mask-image: url("../../icons/reply.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.repeat-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-o-mask-image: url("../../icons/repeat.svg");
|
|
|
|
-moz-mask-image: url("../../icons/repeat.svg");
|
2021-12-07 18:46:07 +00:00
|
|
|
-webkit-mask-image: url("../../icons/repeat.svg");
|
2021-12-07 15:33:02 +00:00
|
|
|
mask-image: url("../../icons/repeat.svg");
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-04 17:11:44 +01:00
|
|
|
.delete-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-o-mask-image: url("../../icons/delete.svg");
|
|
|
|
-moz-mask-image: url("../../icons/delete.svg");
|
2021-12-07 18:46:07 +00:00
|
|
|
-webkit-mask-image: url("../../icons/delete.svg");
|
2021-10-19 20:33:01 +01:00
|
|
|
mask-image: url("../../icons/delete.svg");
|
2021-10-04 17:11:44 +01:00
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
2021-12-26 15:55:49 +00:00
|
|
|
padding: 0 var(--s) var(--s) 0;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-03 00:21:07 +00:00
|
|
|
.note-text a {
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2021-11-17 17:28:46 +00:00
|
|
|
.note-attachments {
|
|
|
|
display: flex;
|
|
|
|
justify-items: flex-start;
|
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.note-attachments-unit {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
max-width: max-content;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
|
|
|
padding: var(--s);
|
2021-12-07 15:33:02 +00:00
|
|
|
align-self:flex-start;
|
2021-10-29 22:01:28 +01:00
|
|
|
background-color: var(--background-card) !important;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.note-attachments-unit:not(:only-child) {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-right: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
.note-attachments-unit > figure figcaption {
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
word-break: break-all;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-19 20:33:01 +01:00
|
|
|
}
|
2021-11-10 15:44:28 +00:00
|
|
|
.note-complementary {
|
|
|
|
border-left: 2px solid var(--accent);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-end-start-radius: var(--s);
|
|
|
|
border-end-end-radius: var(--s);
|
|
|
|
padding-left: var(--s);
|
2021-11-10 15:44:28 +00:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
|
|
|
margin-right: var(--s);
|
2021-11-10 15:44:28 +00:00
|
|
|
background: var(--gradient) !important;
|
|
|
|
}
|
|
|
|
.note-complementary a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-12-02 15:05:23 +00:00
|
|
|
.h-entry-language {
|
|
|
|
position: relative;
|
|
|
|
float: right;
|
2021-12-02 18:36:18 +00:00
|
|
|
padding: 6px 12px;
|
|
|
|
background: var(--gradient-backwards);
|
2021-12-02 15:05:23 +00:00
|
|
|
color: var(--foreground);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: 0 0 var(--s) 0;
|
2021-12-26 15:55:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* < 720p */
|
|
|
|
@media only screen and (max-width:1280px) {
|
|
|
|
.note-sidebar {
|
|
|
|
padding: 8px 2px 0 2px;
|
|
|
|
}
|
|
|
|
.note-sidebar .avatar {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
.button-container {
|
|
|
|
width: 0.937rem;
|
|
|
|
height: 0.937rem;
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
}
|