-
-
Notifications
You must be signed in to change notification settings - Fork 692
Composable text interfaces over graphical abstractions #914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -134,7 +134,7 @@ export default { | |||||
| display: flex; | ||||||
| align-items: center; | ||||||
| min-height: 52px; | ||||||
| border-radius: 10px; | ||||||
| border-radius: 2px; | ||||||
| transition: all ease-in-out 0.15s; | ||||||
| width: 100%; | ||||||
| padding: 5px 8px; | ||||||
|
|
@@ -151,7 +151,7 @@ export default { | |||||
| margin-top: -4px; | ||||||
| } | ||||||
| .endpoint { | ||||||
| font-size: 12px; | ||||||
| font-size: 9px; | ||||||
|
||||||
| font-size: 9px; | |
| font-size: 12px; |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -82,7 +82,7 @@ export default { | |||||
| } | ||||||
|
|
||||||
| this.terminal = new Terminal({ | ||||||
| fontSize: 14, | ||||||
| fontSize: 11, | ||||||
|
||||||
| fontSize: 11, | |
| fontSize: 14, |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,12 +44,12 @@ export default { | |
|
|
||
| <style scoped> | ||
| .badge { | ||
| min-width: 62px; | ||
| min-width: 20px; | ||
|
|
||
| } | ||
|
|
||
| .fixed-width { | ||
| width: 62px; | ||
| width: 20px; | ||
|
Comment on lines
+47
to
+52
|
||
| overflow: hidden; | ||
| text-overflow: ellipsis; | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -183,7 +183,7 @@ export default { | |||||
| display: inline-block; | ||||||
| height: 100%; | ||||||
| padding: 8px 10px 0; | ||||||
| font-size: 13px; | ||||||
| font-size: 10px; | ||||||
| color: #c1c1c1; | ||||||
| overflow: hidden; | ||||||
| text-decoration: none; | ||||||
|
|
@@ -194,7 +194,7 @@ export default { | |||||
| } | ||||||
|
|
||||||
| div { | ||||||
| font-size: 20px; | ||||||
| font-size: 15px; | ||||||
| } | ||||||
| } | ||||||
| } | ||||||
|
|
@@ -242,7 +242,7 @@ main { | |||||
| padding-left: 0; | ||||||
| padding-bottom: 0; | ||||||
| margin-top: 8px !important; | ||||||
| border-radius: 16px; | ||||||
| border-radius: 2px; | ||||||
| overflow: hidden; | ||||||
|
|
||||||
| .dropdown-divider { | ||||||
|
|
@@ -252,7 +252,7 @@ main { | |||||
| } | ||||||
|
|
||||||
| .dropdown-item-text { | ||||||
| font-size: 14px; | ||||||
| font-size: 11px; | ||||||
| padding-bottom: 0.7rem; | ||||||
| } | ||||||
|
|
||||||
|
|
@@ -291,7 +291,7 @@ main { | |||||
| margin-right: 5px; | ||||||
| border-radius: 50rem; | ||||||
| font-weight: bold; | ||||||
| font-size: 10px; | ||||||
| font-size: 8px; | ||||||
|
||||||
| font-size: 8px; | |
| font-size: 10px; |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -106,6 +106,19 @@ | |||||||||||||||||||||
| </div> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| <!-- Combined Terminal Output --> | ||||||||||||||||||||||
| <div v-show="!isEditMode"> | ||||||||||||||||||||||
| <h4 class="mb-3">{{ $t("terminal") }}</h4> | ||||||||||||||||||||||
| <Terminal | ||||||||||||||||||||||
| ref="combinedTerminal" | ||||||||||||||||||||||
| class="mb-3 terminal" | ||||||||||||||||||||||
| :name="combinedTerminalName" | ||||||||||||||||||||||
| :endpoint="endpoint" | ||||||||||||||||||||||
| :rows="combinedTerminalRows" | ||||||||||||||||||||||
| :cols="combinedTerminalCols" | ||||||||||||||||||||||
| ></Terminal> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
|
Comment on lines
+109
to
+120
|
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| <!-- Containers --> | ||||||||||||||||||||||
| <h4 class="mb-3">{{ $tc("container", 2) }}</h4> | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
|
@@ -148,20 +161,6 @@ | |||||||||||||||||||||
| </div> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| <!-- Combined Terminal Output --> | ||||||||||||||||||||||
| <div v-show="!isEditMode"> | ||||||||||||||||||||||
| <h4 class="mb-3">{{ $t("terminal") }}</h4> | ||||||||||||||||||||||
| <Terminal | ||||||||||||||||||||||
| ref="combinedTerminal" | ||||||||||||||||||||||
| class="mb-3 terminal" | ||||||||||||||||||||||
| :name="combinedTerminalName" | ||||||||||||||||||||||
| :endpoint="endpoint" | ||||||||||||||||||||||
| :rows="combinedTerminalRows" | ||||||||||||||||||||||
| :cols="combinedTerminalCols" | ||||||||||||||||||||||
| style="height: 315px;" | ||||||||||||||||||||||
| ></Terminal> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
| </div> | ||||||||||||||||||||||
| <div class="col-lg-6"> | ||||||||||||||||||||||
| <h4 class="mb-3">{{ stack.composeFileName }}</h4> | ||||||||||||||||||||||
|
|
@@ -785,16 +784,17 @@ export default { | |||||||||||||||||||||
| @import "../styles/vars.scss"; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| .terminal { | ||||||||||||||||||||||
| height: 200px; | ||||||||||||||||||||||
| height: auto; | ||||||||||||||||||||||
| min-height: 400px; | ||||||||||||||||||||||
| } | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
Comment on lines
+788
to
790
|
||||||||||||||||||||||
| min-height: 400px; | |
| } | |
| min-height: 200px; | |
| } | |
| @media (min-height: 700px) { | |
| .terminal { | |
| min-height: 400px; | |
| } | |
| } |
Copilot
AI
Jan 18, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The font size has been reduced from 14px to 11px for code editor content. Code editors require good readability for developers to write and debug code effectively, and reducing the font size may lead to eye strain and errors.
| font-size: 11px; | |
| font-size: 14px; |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,14 +1,14 @@ | ||||||||
| <template> | ||||||||
| <div class="container-fluid"> | ||||||||
| <div class="row"> | ||||||||
| <div v-if="!$root.isMobile" class="col-12 col-md-4 col-xl-3"> | ||||||||
| <div v-if="!$root.isMobile" class="col-12 col-md-2 col-xl-2"> | ||||||||
| <div> | ||||||||
| <router-link to="/compose" class="btn btn-primary mb-3"><font-awesome-icon icon="plus" /> {{ $t("compose") }}</router-link> | ||||||||
| </div> | ||||||||
| <StackList :scrollbar="true" /> | ||||||||
| </div> | ||||||||
|
|
||||||||
| <div ref="container" class="col-12 col-md-8 col-xl-9 mb-3"> | ||||||||
| <div ref="container" class="col-12 col-md-10 col-xl-10 mb-3"> | ||||||||
|
Comment on lines
+4
to
+11
|
||||||||
| <!-- Add :key to disable vue router re-use the same component --> | ||||||||
| <router-view :key="$route.fullPath" :calculatedHeight="height" /> | ||||||||
| </div> | ||||||||
|
|
@@ -37,6 +37,6 @@ export default { | |||||||
|
|
||||||||
| <style lang="scss" scoped> | ||||||||
| .container-fluid { | ||||||||
| width: 98%; | ||||||||
| width: 100%; | ||||||||
|
||||||||
| width: 100%; | |
| width: 98%; | |
| margin: 0 auto; |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,7 +38,7 @@ | |||||
| <div class="col-md-5"> | ||||||
| <!-- Agent List --> | ||||||
| <div class="shadow-box big-padding"> | ||||||
| <h4 class="mb-3">{{ $tc("dockgeAgent", 2) }} <span class="badge bg-warning" style="font-size: 12px;">beta</span></h4> | ||||||
| <h4 class="mb-3">{{ $tc("dockgeAgent", 2) }} <span class="badge bg-warning" style="font-size: 9px;">beta</span></h4> | ||||||
|
||||||
| <h4 class="mb-3">{{ $tc("dockgeAgent", 2) }} <span class="badge bg-warning" style="font-size: 9px;">beta</span></h4> | |
| <h4 class="mb-3">{{ $tc("dockgeAgent", 2) }} <span class="badge bg-warning" style="font-size: 12px;">beta</span></h4> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -184,7 +184,7 @@ export default { | |||||
|
|
||||||
| footer { | ||||||
| color: #aaa; | ||||||
| font-size: 13px; | ||||||
| font-size: 10px; | ||||||
|
||||||
| font-size: 10px; | |
| font-size: 13px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The status names have been abbreviated to single letters (I, A, E). While this aligns with the "text interfaces" theme, single-letter abbreviations are ambiguous and reduce clarity. Users may not immediately understand what "I", "A", and "E" represent without additional context or documentation. Consider whether this change improves or hinders user experience, especially for new users or in accessibility contexts where screen readers would announce single letters.