2022-12-10 12:14:48 +03:00
|
|
|
#compose-container {
|
|
|
|
width: 40em;
|
|
|
|
max-width: 100vw;
|
|
|
|
align-self: stretch;
|
|
|
|
animation: fade-in 0.2s ease-out;
|
|
|
|
max-height: 100vh;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#compose-container .compose-top {
|
|
|
|
text-align: right;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 8px;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container textarea {
|
2022-12-10 12:14:48 +03:00
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
height: 3em;
|
|
|
|
min-height: 3em;
|
|
|
|
max-height: 10em;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
@keyframes appear-up {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
}
|
2022-12-13 15:42:09 +03:00
|
|
|
#compose-container .status-preview {
|
2022-12-10 12:14:48 +03:00
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
max-height: 160px;
|
2022-12-13 15:42:09 +03:00
|
|
|
background-color: var(--bg-color);
|
2022-12-10 12:14:48 +03:00
|
|
|
margin: 0 12px;
|
|
|
|
border: 1px solid var(--outline-color);
|
|
|
|
border-bottom: 0;
|
|
|
|
animation: appear-up 1s ease-in-out;
|
2022-12-13 15:42:09 +03:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
#compose-container.standalone .status-preview * {
|
|
|
|
/*
|
|
|
|
For standalone mode (new window), prevent interacting with the status preview for now
|
|
|
|
*/
|
|
|
|
pointer-events: none;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
2022-12-13 15:42:09 +03:00
|
|
|
|
|
|
|
#compose-container .status-preview-legend {
|
|
|
|
pointer-events: none;
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 8px;
|
|
|
|
font-size: 80%;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
color: var(--text-insignificant-color);
|
|
|
|
background-color: var(--bg-blur-color);
|
|
|
|
/* background-image: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
transparent,
|
|
|
|
var(--bg-faded-color)
|
|
|
|
); */
|
|
|
|
border-top: 1px solid var(--outline-color);
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
text-shadow: 0 1px 10px var(--bg-color), 0 1px 10px var(--bg-color),
|
|
|
|
0 1px 10px var(--bg-color), 0 1px 10px var(--bg-color),
|
|
|
|
0 1px 10px var(--bg-color);
|
|
|
|
}
|
|
|
|
#_compose-container .status-preview-legend.reply-to {
|
|
|
|
color: var(--reply-to-color);
|
|
|
|
background-color: var(--reply-to-faded-color);
|
|
|
|
/* background-image: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
transparent,
|
|
|
|
var(--reply-to-faded-color)
|
|
|
|
); */
|
|
|
|
}
|
|
|
|
|
2022-12-10 12:14:48 +03:00
|
|
|
#compose-container form {
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 4px 12px;
|
|
|
|
background-image: linear-gradient(var(--bg-color) 75%, transparent);
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2022-12-13 15:42:09 +03:00
|
|
|
#compose-container .status-preview ~ form {
|
2022-12-10 12:14:48 +03:00
|
|
|
box-shadow: 0 -12px 12px -12px var(--divider-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#compose-container .toolbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 8px 0;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar.stretch {
|
|
|
|
justify-content: stretch;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar .spoiler-text-field {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar-button {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: var(--bg-faded-color);
|
|
|
|
padding: 0 8px;
|
|
|
|
border-radius: 8px;
|
2022-12-10 19:52:04 +03:00
|
|
|
min-height: 2.4em;
|
|
|
|
line-height: 2.4em;
|
|
|
|
min-width: 2.6em;
|
2022-12-10 12:14:48 +03:00
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
2022-12-10 19:52:04 +03:00
|
|
|
border: 2px solid transparent;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .toolbar-button > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: inherit;
|
2022-12-11 05:37:43 +03:00
|
|
|
outline: 0;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .toolbar-button:has([disabled]) {
|
2022-12-13 17:34:23 +03:00
|
|
|
pointer-events: none;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .toolbar-button:has([disabled]) > * {
|
2022-12-13 17:34:23 +03:00
|
|
|
filter: opacity(0.5);
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container
|
|
|
|
.toolbar-button:not(.show-field)
|
|
|
|
:is(input[type='checkbox'], select, input[type='file']) {
|
2022-12-10 12:14:48 +03:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
2022-12-10 19:52:04 +03:00
|
|
|
margin: 0;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container .toolbar-button input[type='file'] {
|
2022-12-10 12:14:48 +03:00
|
|
|
/* Move this out of the way, to fix cursor: pointer bug */
|
|
|
|
left: -100vw !important;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar-button select {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0 0 0 8px;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar-button:not(.show-field) select {
|
|
|
|
right: 0;
|
|
|
|
left: auto !important;
|
|
|
|
}
|
|
|
|
#compose-container .toolbar-button:hover {
|
2022-12-10 19:52:04 +03:00
|
|
|
border-color: var(--divider-color);
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .toolbar-button:active {
|
|
|
|
filter: brightness(0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
#compose-container text-expander {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#compose-container .text-expander-menu {
|
|
|
|
color: var(--text-color);
|
|
|
|
background-color: var(--bg-color);
|
|
|
|
position: absolute;
|
|
|
|
margin: 0 0 0 -8px;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2022-12-10 19:52:04 +03:00
|
|
|
border: 1px solid var(--outline-color);
|
2022-12-10 12:14:48 +03:00
|
|
|
/* box-shadow: 0 0 12px var(--outline-color); */
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
top: 0 !important;
|
|
|
|
z-index: 100;
|
|
|
|
min-width: 50vw;
|
|
|
|
}
|
|
|
|
#compose-container .text-expander-menu li {
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
2022-12-13 13:44:35 +03:00
|
|
|
#compose-container .text-expander-menu li b img {
|
2022-12-10 12:14:48 +03:00
|
|
|
/* The shortcode emojis */
|
2022-12-13 13:44:35 +03:00
|
|
|
width: 0.9em;
|
|
|
|
height: 0.9em;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .text-expander-menu li .avatar {
|
|
|
|
width: 2.2em;
|
|
|
|
height: 2.2em;
|
|
|
|
}
|
|
|
|
#compose-container .text-expander-menu li:hover {
|
|
|
|
color: var(--bg-color);
|
|
|
|
background-color: var(--link-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#compose-container .media-attachments {
|
|
|
|
background-color: var(--bg-faded-color);
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 8px;
|
|
|
|
margin: 8px 0 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
#compose-container .media-attachment {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
#compose-container .media-preview {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container .media-preview > * {
|
2022-12-10 12:14:48 +03:00
|
|
|
min-width: 80px;
|
|
|
|
width: 80px !important;
|
|
|
|
height: 80px;
|
|
|
|
object-fit: contain;
|
|
|
|
background-color: var(--img-bg-color);
|
|
|
|
border-radius: 8px;
|
2022-12-10 19:52:04 +03:00
|
|
|
border: 1px solid var(--outline-color);
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
#compose-container .media-attachment textarea {
|
|
|
|
height: 80px;
|
|
|
|
flex-grow: 1;
|
|
|
|
resize: none;
|
|
|
|
}
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container .media-attachments .media-desc {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
#compose-container .media-attachments .media-desc p {
|
|
|
|
font-size: 90%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
/* clamp 2 lines */
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#compose-container .media-attachments .media-desc p i {
|
|
|
|
color: var(--text-insignificant-color);
|
|
|
|
}
|
2022-12-10 12:14:48 +03:00
|
|
|
#compose-container .media-aside {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
#compose-container .media-aside .close-button {
|
|
|
|
padding: 4px;
|
|
|
|
align-self: flex-start;
|
|
|
|
color: var(--text-insignificant-color);
|
|
|
|
}
|
2022-12-12 11:27:44 +03:00
|
|
|
#compose-container .media-aside .close-button:hover {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
2022-12-10 12:14:48 +03:00
|
|
|
#compose-container .media-aside .uploaded {
|
|
|
|
color: var(--green-color);
|
|
|
|
margin-bottom: 4px;
|
2022-12-12 11:27:44 +03:00
|
|
|
}
|