2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.notes hr {
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-top: var(--smaller)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-wrapper {
|
|
|
|
width: 100%;
|
2021-10-05 16:03:17 +01:00
|
|
|
height: inherit
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-sidebar {
|
2021-10-19 20:33:01 +01:00
|
|
|
padding: var(--smaller)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-sidebar * {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-ms-flex-direction: column;
|
2021-10-01 16:37:28 +01:00
|
|
|
flex-direction: column;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2021-10-05 16:03:17 +01:00
|
|
|
max-height: 100%
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-sidebar .avatar {
|
2021-10-19 20:33:01 +01:00
|
|
|
width: var(--big);
|
2021-10-01 16:37:28 +01:00
|
|
|
height: auto;
|
|
|
|
background: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-bottom: var(--smaller);
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
-moz-border-radius: 2px;
|
2021-10-05 16:03:17 +01:00
|
|
|
border-radius: 2px
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry:not(:first-child) {
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-top: var(--smaller)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-11-15 13:55:23 +00:00
|
|
|
.h-entry:not(embed) {
|
|
|
|
border: 2px solid var(--border) !important;
|
|
|
|
-webkit-box-shadow: var(--shadow);
|
|
|
|
-moz-box-shadow: var(--shadow);
|
|
|
|
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-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
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-19 20:33:01 +01:00
|
|
|
|
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-19 20:33:01 +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-10-19 20:33:01 +01:00
|
|
|
|
2021-10-24 22:45:38 +01:00
|
|
|
.embed .p-name,
|
|
|
|
.embed .p-author {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.embed img {
|
2021-10-01 16:37:28 +01:00
|
|
|
padding: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
max-width: -webkit-min-content;
|
|
|
|
max-width: -moz-min-content;
|
2021-10-01 16:37:28 +01:00
|
|
|
max-width: min-content;
|
2021-10-19 20:33:01 +01:00
|
|
|
max-height: -webkit-min-content;
|
|
|
|
max-height: -moz-min-content;
|
2021-10-05 16:03:17 +01:00
|
|
|
max-height: min-content
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +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-"] {
|
|
|
|
padding: unset
|
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry a:focus {
|
|
|
|
text-decoration: underline
|
|
|
|
}
|
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
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
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry figure {
|
|
|
|
margin: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
-o-object-fit: cover;
|
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-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.h-entry .replies .h-entry {
|
|
|
|
background-color: unset;
|
2021-10-19 20:33:01 +01:00
|
|
|
padding: 0 var(--smaller) var(--smaller) 0;
|
|
|
|
margin-left: var(--small)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-24 22:45:38 +01:00
|
|
|
.note-info,
|
|
|
|
embed header {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-box-pack: justify;
|
|
|
|
-webkit-justify-content: space-between;
|
|
|
|
-moz-box-pack: justify;
|
|
|
|
-ms-flex-pack: justify;
|
2021-10-01 16:37:28 +01:00
|
|
|
justify-content: space-between;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-box-align: center;
|
|
|
|
-webkit-align-items: center;
|
|
|
|
-moz-box-align: center;
|
|
|
|
-ms-flex-align: center;
|
2021-10-01 16:37:28 +01:00
|
|
|
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
|
|
|
-webkit-border-radius: var(--smaller) var(--smaller) 0 0;
|
|
|
|
-moz-border-radius: var(--smaller) var(--smaller) 0 0;
|
|
|
|
border-radius: var(--smaller) var(--smaller) 0 0;
|
|
|
|
font-size: var(--small);
|
2021-11-01 22:09:10 +00:00
|
|
|
padding: 6px 10px 6px 0;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-29 22:01:28 +01:00
|
|
|
.note-info {
|
|
|
|
background: var(--gradient-backwards) !important;
|
2021-11-01 22:09:10 +00:00
|
|
|
background-clip: padding-box;
|
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);
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-box-align: center;
|
|
|
|
-webkit-align-items: center;
|
|
|
|
-moz-box-align: center;
|
|
|
|
-ms-flex-align: center;
|
2021-10-01 16:37:28 +01:00
|
|
|
align-items: center;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-align-self: center;
|
|
|
|
-ms-flex-item-align: center;
|
|
|
|
-ms-grid-row-align: center;
|
2021-10-05 16:03:17 +01:00
|
|
|
align-self: center
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
2021-10-26 14:47:28 +01:00
|
|
|
.note-author-fullname {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
2021-10-26 14:47:28 +01:00
|
|
|
.note-author-nickname {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
2021-10-26 14:47:28 +01:00
|
|
|
.note-author-nickname::before {
|
|
|
|
content: '@';
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-actions {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-05 16:03:17 +01:00
|
|
|
vertical-align: middle
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01: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
|
|
|
-webkit-border-radius: unset !important;
|
|
|
|
-moz-border-radius: unset !important;
|
2021-10-05 23:29:46 +01:00
|
|
|
border-radius: unset !important;
|
2021-10-05 23:36:15 +01:00
|
|
|
-webkit-mask-repeat: no-repeat !important;
|
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
-webkit-mask-size: cover !important;
|
|
|
|
mask-size: cover !important;
|
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-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.button-container:hover,
|
|
|
|
.button-container:focus {
|
2021-11-15 13:55:23 +00:00
|
|
|
border: none !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
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.favourite-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-mask-image: url("../../icons/heart.svg");
|
|
|
|
-o-mask-image: url("../../icons/heart.svg");
|
|
|
|
-moz-mask-image: url("../../icons/heart.svg");
|
|
|
|
mask-image: url("../../icons/heart.svg")
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.reply-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-mask-image: url("../../icons/reply.svg");
|
|
|
|
-o-mask-image: url("../../icons/reply.svg");
|
|
|
|
-moz-mask-image: url("../../icons/reply.svg");
|
|
|
|
mask-image: url("../../icons/reply.svg")
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.repeat-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-mask-image: url("../../icons/repeat.svg");
|
|
|
|
-o-mask-image: url("../../icons/repeat.svg");
|
|
|
|
-moz-mask-image: url("../../icons/repeat.svg");
|
|
|
|
mask-image: url("../../icons/repeat.svg")
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-04 17:11:44 +01:00
|
|
|
.delete-button-container {
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-mask-image: url("../../icons/delete.svg");
|
|
|
|
-o-mask-image: url("../../icons/delete.svg");
|
|
|
|
-moz-mask-image: url("../../icons/delete.svg");
|
|
|
|
mask-image: url("../../icons/delete.svg");
|
2021-10-04 17:11:44 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-content {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-ms-flex-direction: column;
|
2021-10-01 16:37:28 +01:00
|
|
|
flex-direction: column;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-border-radius: 0 0 var(--smaller) var(--smaller);
|
|
|
|
-moz-border-radius: 0 0 var(--smaller) var(--smaller);
|
|
|
|
border-radius: 0 0 var(--smaller) var(--smaller);
|
2021-11-10 15:44:28 +00:00
|
|
|
padding-top: var(--default);
|
|
|
|
padding-bottom: var(--default);
|
2021-11-17 17:28:46 +00:00
|
|
|
padding-right: var(--default);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-10-01 16:37:28 +01:00
|
|
|
.note-text {
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-bottom: var(--smaller)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
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-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-flex-wrap: wrap;
|
|
|
|
-ms-flex-wrap: wrap;
|
2021-10-01 16:37:28 +01:00
|
|
|
flex-wrap: wrap;
|
2021-10-19 20:33:01 +01:00
|
|
|
max-width: -webkit-max-content;
|
|
|
|
max-width: -moz-max-content;
|
2021-10-01 16:37:28 +01:00
|
|
|
max-width: max-content;
|
2021-10-19 20:33:01 +01:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
|
|
|
padding: var(--smaller);
|
|
|
|
-webkit-align-self: flex-start;
|
|
|
|
-ms-flex-item-align: start;
|
2021-10-05 16:03:17 +01: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-19 20:33:01 +01:00
|
|
|
|
2021-10-24 22:45:38 +01:00
|
|
|
.note-attachments-unit:not(:only-child) {
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-right: var(--smaller)
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
2021-11-15 14:07:05 +00:00
|
|
|
.note-attachments-unit > figure figcaption {
|
2021-10-19 20:33:01 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
word-break: break-all;
|
2021-10-19 20:33:01 +01:00
|
|
|
margin-bottom: var(--smaller)
|
|
|
|
}
|
|
|
|
|
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-11-27 20:45:24 +00:00
|
|
|
|
|
|
|
.edit-feed-link {
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
}
|