Skip to content

Commit 4795c6e

Browse files
dawoodkhan82gradio-pr-bothannahblaireltociearxu-song
authored
Fix multimodal textbox styling for certain themes (#8369)
* fix css * add changeset * Add `--table-text-color` var to fix body text in `Examples` (#8364) * add --table-text-color var * add changeset * format * tweak * add changeset * fix * add changeset --------- Co-authored-by: gradio-pr-bot <[email protected]> * Include JS Client package in CI for PR testing (#8362) * add js client pkg action * test * Revert "test" This reverts commit 575bcfc. * tweaks (#8374) * chore: update docs.py (#8378) * chore: update docs.py Documention -> Documentation * add changeset * add changeset --------- Co-authored-by: gradio-pr-bot <[email protected]> * Fix encoding error (#8381) * Set orig_name in python client file uploads (#8371) * Add code * add changeset * URL case --------- Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: Hannah <[email protected]> * Include instructions on starting from someone else's custom component repository (#8386) * Add guide * add changeset * Fix link * add changeset * Add code --------- Co-authored-by: gradio-pr-bot <[email protected]> * Fix bug in reload mode equality check. Better equality conversion for state variables (#8385) * Add code * Add deep equality * add changeset * Add code * add changeset * Update gradio/utils.py Co-authored-by: Abubakar Abid <[email protected]> * Add code * Add code * add code --------- Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: Abubakar Abid <[email protected]> * Change z-index of status tracker (#8372) * change z-index of status tracker * add changeset --------- Co-authored-by: gradio-pr-bot <[email protected]> * Add CDN installation to JS docs (#8401) * add cdn copy * add changeset * tweak * tweak * add changeset * Update guides/08_gradio-clients-and-lite/02_getting-started-with-the-js-client.md Co-authored-by: Abubakar Abid <[email protected]> * remove version from cdn link * tweak * tweak --------- Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: Abubakar Abid <[email protected]> * Improve rendering (#8398) * changes * add changeset * changes * changes * changes * changes * changes * changes * changeas * changes * add changeset * changes * add changeset * changes * changes * changes * changes * changes * changes * changes * changes * add changeset * changes * cganges * changes * changes * changes * changes * add changeset * changes * chagnes * changes * changes * changes * changes * changes * js * remove console log * changes * changes * changes * changes * changes * changes * changes * changes * changes * add changeset * changes * chnages * changes * cnages * changes * changes * changes * changes * changes * changes * changes * changes * changes * changes * changes * changes * add changeset * changes * changes * changes * changes * changes * changes * changes * add changeset * changes * changes * changes * changes * changes * changes * changes * changes * changes * changes * changes * add changeset * Add `state.change` listener (#8297) * state changes * changes --------- Co-authored-by: Ali Abid <[email protected]> Co-authored-by: Abubakar Abid <[email protected]> * changes * changes * add changeset * changes * changes * changes * changes * changes * changes * updates * changes * add changeset * changes * changes * add changeset * fix * changes * changes * changes * changes * changes * changes * add changeset * changes --------- Co-authored-by: Ali Abid <[email protected]> Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: Abubakar Abid <[email protected]> * Render decorator documentation (#8409) * changes * changes * add changeset * fix dependency loop and documentation group * add changeset * changes * fix numbered list * changes * changes --------- Co-authored-by: Ali Abid <[email protected]> Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: aliabd <[email protected]> * Connect heartbeat if state created in render. Also fix config cleanup bug #8407 (#8408) * Add code * add changeset * add changeset * lint --------- Co-authored-by: gradio-pr-bot <[email protected]> * Model3D right-handed coordinate system (#8376) * changes (#8411) Co-authored-by: Ali Abid <[email protected]> * Editable Docs (#8403) * docs intro page and guides * python library docs and js client * reorg * changes * add better hovering * fix broken version routing * add redirects and remove duplicate pages * fix build issues * fix issues * formatting * add changeset * working templates for all components * add other pages * merge * merge * changes * changes * working from templates * changes * refactoring * changes * build working * formatting * importing meta globs * add uploading templates to ci * fixes * add changeset * remove fake version * fix * ignore * formatting * adding render page to docs * add changeset * formatting fix * typo --------- Co-authored-by: gradio-pr-bot <[email protected]> * chore: update versions (#8348) --------- Co-authored-by: gradio-pr-bot <[email protected]> Co-authored-by: Hannah <[email protected]> Co-authored-by: Ikko Eltociear Ashimine <[email protected]> Co-authored-by: Xu Song <[email protected]> Co-authored-by: Freddy Boulton <[email protected]> Co-authored-by: Abubakar Abid <[email protected]> Co-authored-by: aliabid94 <[email protected]> Co-authored-by: Ali Abid <[email protected]> Co-authored-by: aliabd <[email protected]> Co-authored-by: Dylan Ebert <[email protected]> Co-authored-by: pngwn <[email protected]>
1 parent 1a9ac4b commit 4795c6e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.changeset/nice-plums-bet.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@gradio/multimodaltextbox": patch
3+
"gradio": patch
4+
---
5+
6+
fix:Fix multimodal textbox styling for certain themes

js/multimodaltextbox/shared/MultimodalTextbox.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@
313313
background: var(--input-background-fill);
314314
padding: var(--input-padding);
315315
width: 90%;
316+
max-width: 95%;
316317
max-height: 100%;
317318
height: 25px;
318319
color: var(--body-text-color);
@@ -322,7 +323,7 @@
322323
border: none;
323324
margin-top: 0px;
324325
margin-bottom: 0px;
325-
margin-left: 30px;
326+
margin-left: 35px;
326327
padding-top: 12px;
327328
resize: none;
328329
}
@@ -352,7 +353,6 @@
352353
border-radius: 50%;
353354
width: 30px;
354355
height: 30px;
355-
bottom: 15px;
356356
}
357357
358358
.upload-button:hover,
@@ -366,7 +366,7 @@
366366
}
367367
368368
.submit-button {
369-
right: 10px;
369+
right: 15px;
370370
margin-left: 5px;
371371
padding-bottom: 5px;
372372
padding-left: 2px;

0 commit comments

Comments
 (0)