fix(reply modal): align composer controls

This commit is contained in:
Tommaso Casaburi
2026-07-01 16:43:21 +07:00
parent 21056ae6b9
commit c0537cc680
2 changed files with 10 additions and 8 deletions
@@ -26,10 +26,8 @@
opacity: 0.6;
}
.toolbarSelect {
height: 20px;
max-width: 74px;
font-size: 10pt;
.toolbar .toolbarSelect.toolbarSelect {
all: revert;
}
.boldButton {
@@ -55,7 +53,7 @@
.preview {
box-sizing: border-box;
width: min(100%, var(--bbcode-editor-width, 420px));
width: var(--bbcode-preview-width, min(100%, var(--bbcode-editor-width, 420px)));
min-height: 72px;
margin-bottom: 2px;
padding: 3px 4px;
@@ -88,8 +88,11 @@
.content {
position: relative;
width: 316px;
--bbcode-editor-width: 316px;
display: inline-block;
width: fit-content;
min-width: 304px;
--bbcode-editor-width: 304px;
--bbcode-preview-width: 304px;
}
.content textarea {
@@ -99,7 +102,7 @@
.footer {
display: flex;
align-items: center;
justify-content: space-between;
justify-content: flex-start;
}
.footer button {
@@ -124,6 +127,7 @@
.publishButton {
width: 75px;
margin-left: auto;
filter: var(--filter80);
}