2021-10-01 16:37:28 +01:00
|
|
|
.notes hr {
|
2021-12-07 15:33:02 +00:00
|
|
|
margin-top: var(--smaller);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-wrapper {
|
|
|
|
width: 100%;
|
2021-12-07 15:33:02 +00:00
|
|
|
height: inherit;
|
|
|
|
border-radius: var(--smaller) var(--smaller) 0 0;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-sidebar {
|
2021-12-07 15:33:02 +00:00
|
|
|
padding: var(--smaller);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-sidebar * {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2021-12-07 15:33:02 +00:00
|
|
|
max-height: 100%;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-sidebar .avatar {
|
2021-12-02 15:29:46 +00:00
|
|
|
max-width: 4rem;
|
|
|
|
max-height: 4rem;
|
|
|
|
min-width: var(--big);
|
|
|
|
width: 100%;
|
2021-10-01 16:37:28 +01:00
|
|
|
height: auto;
|
|
|
|
background: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-bottom: var(--smaller);
|
2021-12-07 15:33:02 +00:00
|
|
|
border-radius: 2px;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.h-entry:not(:first-child) {
|
2021-12-07 15:33:02 +00:00
|
|
|
margin-top: var(--smaller);
|
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-10-19 20:33:01 +01:00
|
|
|
padding: var(--smaller);
|
2021-10-01 16:37:28 +01:00
|
|
|
border: unset;
|
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed header {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: var(--small);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed img {
|
|
|
|
width: 25%;
|
|
|
|
height: auto;
|
|
|
|
margin-right: var(--smaller);
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
margin-top: var(--smaller);
|
|
|
|
margin-bottom: var(--smaller);
|
|
|
|
}
|
|
|
|
.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-11-01 22:09:10 +00:00
|
|
|
border-radius: var(--smaller);
|
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;
|
|
|
|
padding: var(--smaller);
|
|
|
|
background: var(--gradient);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-11-29 15:09:31 +00:00
|
|
|
.h-entry .replies {
|
2021-12-07 16:17:49 +00:00
|
|
|
margin-bottom: var(--small);
|
|
|
|
padding: var(--smaller) var(--smaller) 0 0;
|
|
|
|
padding-left: var(--small);
|
|
|
|
border-left: 2px solid var(--border);
|
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;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2021-10-19 20:33:01 +01:00
|
|
|
max-height: var(--big);
|
2021-10-01 16:37:28 +01:00
|
|
|
border-bottom: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
border-radius: var(--smaller) var(--smaller) 0 0;
|
|
|
|
font-size: var(--small);
|
2021-12-07 15:33:02 +00:00
|
|
|
padding: 0 var(--smaller) 0 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-10-01 16:37:28 +01:00
|
|
|
.note-author {
|
2021-10-19 20:33:01 +01:00
|
|
|
font-size: var(--default);
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-12-07 15:33:02 +00:00
|
|
|
align-self: center;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-26 14:47:28 +01:00
|
|
|
.note-author-fullname {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.note-author-nickname {
|
|
|
|
opacity: 0.5;
|
2021-12-02 22:54:18 +00:00
|
|
|
margin-left: var(--smaller);
|
2021-10-26 14:47:28 +01:00
|
|
|
}
|
|
|
|
.note-author-nickname::before {
|
|
|
|
content: '@';
|
|
|
|
}
|
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;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
padding: var(--smaller);
|
2021-12-06 20:47:56 +00:00
|
|
|
border: 2px solid var(--border);
|
2021-12-06 20:35:44 +00:00
|
|
|
border-radius: var(--smaller);
|
|
|
|
background: var(--background-card);
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
font-size: var(--default);
|
|
|
|
width: max-content;
|
|
|
|
}
|
2021-12-06 20:47:56 +00:00
|
|
|
.note-actions-extra-details[open] > summary + * > li:not(:last-of-type) {
|
|
|
|
margin-bottom: var(--smaller);
|
|
|
|
}
|
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-10-19 20:33:01 +01:00
|
|
|
margin-left: var(--smaller);
|
|
|
|
width: var(--default);
|
|
|
|
height: var(--default);
|
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-10-19 20:33:01 +01:00
|
|
|
border-radius: 0 0 var(--smaller) var(--smaller);
|
2021-12-07 15:33:02 +00:00
|
|
|
padding-top: var(--smaller);
|
|
|
|
padding-bottom: var(--smaller);
|
|
|
|
padding-right: var(--smaller);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.note-text {
|
2021-12-07 15:33:02 +00:00
|
|
|
margin-bottom: var(--smaller);
|
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-10-19 20:33:01 +01:00
|
|
|
border-radius: var(--smaller);
|
|
|
|
padding: var(--smaller);
|
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-07 15:33:02 +00:00
|
|
|
margin-right: var(--smaller);
|
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-07 15:33:02 +00:00
|
|
|
margin-bottom: var(--smaller);
|
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-11-17 17:28:46 +00:00
|
|
|
border-end-start-radius: var(--smaller);
|
|
|
|
border-end-end-radius: var(--smaller);
|
2021-11-10 15:44:28 +00:00
|
|
|
padding-left: var(--smaller);
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-bottom: var(--smaller);
|
2021-11-17 17:28:46 +00:00
|
|
|
margin-right: var(--smaller);
|
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
|
|
|
font-size: var(--default);
|
|
|
|
color: var(--foreground);
|
2021-12-02 18:36:18 +00:00
|
|
|
border-radius: 0 0 var(--smaller) 0;
|
2021-12-07 15:33:02 +00:00
|
|
|
}
|