Skip to content

Commit

Permalink
fix: shell window size (#3198)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdy666 committed May 19, 2024
1 parent e336a25 commit 4c5b612
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
16 changes: 13 additions & 3 deletions frontend/src/css/_shell.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,22 @@
background: var(--surfacePrimary);
color: var(--textPrimary);
z-index: 9999;
background: rgba(127, 127, 127, 0.1);
background: var(--dividerSecondary);
transition: 0.2s ease background;
cursor: ns-resize;
touch-action: none;
user-select: none;
width: 100%;
}

.shell__divider{
background: rgba(127, 127, 127, 0.3);
width: 100%;
height: 8px;
}

.shell__divider:hover {
background: rgba(127, 127, 127, 0.4);
background: rgba(127, 127, 127, 0.9);
}

.shell__content {
Expand All @@ -34,7 +41,7 @@
top: 0px;
left: 0px;
z-index: 9998;
background-color: rgba(0, 0, 0, 0.05);
background-color: var(--dividerPrimary);
}

body.rtl .shell-content {
Expand Down Expand Up @@ -62,6 +69,8 @@ body.rtl .shell-content {
font-size: inherit;
}



.shell__prompt {
width: 1.2rem;
}
Expand All @@ -75,4 +84,5 @@ body.rtl .shell-content {
font-family: inherit;
white-space: pre-wrap;
width: 100%;
color:var(--textSecondary);
}
4 changes: 4 additions & 0 deletions frontend/src/css/_variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
--hover: rgba(0, 0, 0, 0.1);
--borderPrimary: rgba(0, 0, 0, 0.1);
--borderSecondary: rgba(0, 0, 0, 0.2);
--dividerPrimary: rgba(255, 255, 255, 0.4);
--dividerSecondary: rgba(255, 255, 255, 0.9);
}

:root.dark {
Expand All @@ -51,4 +53,6 @@
--hover: rgba(255, 255, 255, 0.1);
--borderPrimary: rgba(255, 255, 255, 0.05);
--borderSecondary: rgba(255, 255, 255, 0.15);
--dividerPrimary: rgba(30, 30, 30, 0.4);
--dividerSecondary:rgba(30, 30, 30, 0.6);
}

0 comments on commit 4c5b612

Please sign in to comment.