Feat/messaging ui foundation #13

Merged
maaz519 merged 6 commits from feat/messaging-ui-foundation into dev 2026-07-25 12:28:38 +00:00
2 changed files with 12 additions and 6 deletions
Showing only changes of commit e2f66fe622 - Show all commits
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@insignia/iios-messaging-ui", "name": "@insignia/iios-messaging-ui",
"version": "0.1.11", "version": "0.1.12",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",
"module": "dist/index.js", "module": "dist/index.js",
+11 -5
View File
@@ -10,6 +10,8 @@
--miu-accent: #fda913; --miu-accent: #fda913;
--miu-accent-text: #1a1206; --miu-accent-text: #1a1206;
--miu-radius: 12px; --miu-radius: 12px;
/* Collapsed composer height — textarea, attach and send all use this so they never diverge. */
--miu-composer-h: 38px;
display: flex; display: flex;
height: 100%; height: 100%;
@@ -380,8 +382,8 @@
.miu-attach-btn { .miu-attach-btn {
flex-shrink: 0; flex-shrink: 0;
box-sizing: border-box; box-sizing: border-box;
width: 40px; width: var(--miu-composer-h);
height: 40px; height: var(--miu-composer-h);
border-radius: 10px; border-radius: 10px;
border: 1px solid var(--miu-border); border: 1px solid var(--miu-border);
background: var(--miu-panel); background: var(--miu-panel);
@@ -525,10 +527,14 @@ button.miu-attach-dl:hover {
.miu-textarea { .miu-textarea {
box-sizing: border-box; box-sizing: border-box;
resize: none; resize: none;
min-height: 40px; /* Collapsed height must equal the single-line <input> this replaced: 20px of line + 16px
padding + 2px border = 38px. Padding is tightened from .miu-input's 9px so a 14px/1.4 line
fits the content box exactly — at 9px it overflowed and forced a scrollbar. */
padding: 8px 12px;
line-height: 1.4;
min-height: var(--miu-composer-h);
max-height: 160px; max-height: 160px;
overflow-y: auto; overflow-y: auto;
line-height: 1.45;
font-family: inherit; font-family: inherit;
} }
.miu-format-bar { .miu-format-bar {
@@ -597,7 +603,7 @@ button.miu-attach-dl:hover {
.miu-composer .miu-send { .miu-composer .miu-send {
box-sizing: border-box; box-sizing: border-box;
flex-shrink: 0; flex-shrink: 0;
height: 40px; height: var(--miu-composer-h);
} }
.miu-send:disabled { .miu-send:disabled {
opacity: 0.5; opacity: 0.5;