diff options
| author | bobzel <zzzman@gmail.com> | 2025-01-19 14:35:23 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-01-19 14:35:23 -0500 |
| commit | e4fca20fd4f7d7401fb62d5f700a15c604070484 (patch) | |
| tree | a353029da5065459e2ec13551bf52b7b0c5ca0db /src/client/views/nodes/ImageBox.scss | |
| parent | 156a2040cc51397c3656615f9133279dac900c82 (diff) | |
css fixes for ai editor views.
Diffstat (limited to 'src/client/views/nodes/ImageBox.scss')
| -rw-r--r-- | src/client/views/nodes/ImageBox.scss | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/src/client/views/nodes/ImageBox.scss b/src/client/views/nodes/ImageBox.scss index 29b24b774..fe4f0b1a2 100644 --- a/src/client/views/nodes/ImageBox.scss +++ b/src/client/views/nodes/ImageBox.scss @@ -164,16 +164,15 @@ .imageBox-aiView { text-align: center; font-weight: bold; + transform-origin: top left; + width: 100%; .imageBox-aiView-subtitle { position: relative; align-content: center; - } - - .imageBox-aiView-regenerate-container, - .imageBox-aiView-options-container { - font-weight: normal; - display: flex; + max-width: 10%; + overflow: hidden; + text-overflow: ellipsis; } .imageBox-aiView-regenerate, @@ -183,19 +182,46 @@ flex-direction: row; gap: 5px; width: 100%; + .imageBox-aiView-regenerate-createBtn { + max-width: 10%; + .button-container { + width: 100% !important; + justify-content: left !important; + } + } + } + + .imageBox-aiView-firefly { + overflow: hidden; + text-overflow: ellipsis; + max-width: 10%; + width: 100%; + } + .imageBox-aiView-regenerate-send { + max-width: 10%; } .imageBox-aiView-strength { text-align: center; align-items: center; display: flex; - width: 125px; + max-width: 25%; + width: 100%; + .imageBox-aiView-similarity { + max-width: 65; + overflow: hidden; + text-overflow: ellipsis; + width: 100%; + } } .imageBox-aiView-slider { - width: 50px; + width: 90%; margin-left: 5px; } .imageBox-aiView-input { + overflow: hidden; + text-overflow: ellipsis; + max-width: 65%; width: 100%; } } |
