Skip to content

Commit

Permalink
fix: border and editor display issues (#4142)
Browse files Browse the repository at this point in the history
* Fixed border on chat input on playground

* Fixed ace editor not taking up entire screen
  • Loading branch information
lucaseduoli authored Oct 14, 2024
1 parent cb3219f commit e043964
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,7 @@ const TextAreaWrapper = ({
? "form-modal-no-input bg-input"
: "form-modal-lock-false bg-background";

const fileClass =
files.length > 0
? "rounded-b-lg ring-0 focus:ring-0 focus:border-2 rounded-t-none border-t-0 border-border focus:border-t-0 focus:border-ring"
: "rounded-md border-t border-border focus:ring-0 focus:border-2 focus:border-ring";
const fileClass = files.length > 0 ? "!rounded-t-none border-t-0" : "";

const additionalClassNames = "form-modal-lockchat pl-14";

Expand All @@ -53,7 +50,6 @@ const TextAreaWrapper = ({
data-testid="input-chat-playground"
onFocus={(e) => {
setInputFocus(true);
e.target.style.borderTopWidth = "0";
}}
onBlur={() => setInputFocus(false)}
onKeyDown={(event) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export const getClassNamesFilePreview = (inputFocus) => {
return `flex w-full items-center gap-4 rounded-t-lg bg-background px-14 py-5 overflow-auto custom-scroll ${
inputFocus
? "border border-b-0 border-ring border-2"
: "border border-b-0 border-border"
return `flex w-full items-center gap-4 rounded-t-lg bg-background px-14 py-5 overflow-auto custom-scroll border ${
inputFocus ? "border-ring" : ""
}`;
};
2 changes: 1 addition & 1 deletion src/frontend/src/modals/codeAreaModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export default function CodeAreaModal({
onChange={(value) => {
setCode(value);
}}
className="h-full w-full rounded-lg border-[1px] border-gray-300 custom-scroll dark:border-gray-600"
className="h-full min-w-full rounded-lg border-[1px] border-gray-300 custom-scroll dark:border-gray-600"
/>
</div>
<div
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/style/applies.css
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@
@apply block w-full overflow-auto border-0 px-3 py-2 text-sm outline-0 word-break-break-word;
}
.form-modal-lockchat {
@apply form-input block w-full rounded-md border-border p-4 pr-16 custom-scroll focus:border-ring focus:ring-ring sm:text-sm;
@apply form-input block w-full rounded-md border border-border p-4 pr-16 custom-scroll focus:border-ring focus:ring-0 sm:text-sm;
}
.form-modal-send-icon-position {
@apply absolute bottom-2 right-4;
Expand Down

0 comments on commit e043964

Please sign in to comment.