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