-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix combined output and single pass (#480)
* single pass metadata fix * combined output fix --------- Co-authored-by: Deepak K <[email protected]>
- Loading branch information
1 parent
edf0898
commit e888153
Showing
3 changed files
with
46 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 43 additions & 42 deletions
85
frontend/src/components/custom-tools/tool-ide/ToolIde.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,103 +1,104 @@ | ||
/* Styles for ToolIde */ | ||
|
||
.tool-ide-layout { | ||
background-color: var(--page-bg-2); | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
background-color: var(--page-bg-2); | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.tool-ide-body { | ||
flex: 1; | ||
overflow-y: hidden; | ||
flex: 1; | ||
overflow-y: hidden; | ||
} | ||
|
||
.tool-ide-body-2 { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-main { | ||
flex-grow: 1; | ||
overflow-y: hidden; | ||
flex-grow: 1; | ||
overflow-y: hidden; | ||
} | ||
|
||
.tool-ide-col { | ||
height: 100%; | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-main-row { | ||
height: 100%; | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-footer { | ||
padding: 0px 12px 12px 12px; | ||
padding: 0px 12px 12px 12px; | ||
} | ||
|
||
.tool-ide-prompts { | ||
padding: 12px 6px 1px 12px; | ||
height: 100%; | ||
padding: 12px 6px 1px 12px; | ||
height: 100% !important; | ||
} | ||
|
||
.tool-ide-pdf { | ||
padding: 12px 12px 1px 6px; | ||
height: 100%; | ||
padding: 12px 12px 1px 6px; | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-prompts > div, .tool-ide-pdf > div { | ||
background-color: var(--white); | ||
height: 100%; | ||
.tool-ide-prompts > div, | ||
.tool-ide-pdf > div { | ||
background-color: var(--white); | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-actions { | ||
padding: 0px 12px; | ||
padding: 0px 12px; | ||
} | ||
|
||
.tool-ide-logs { | ||
height: 10vh; | ||
height: 10vh; | ||
} | ||
|
||
.tool-ide-sider { | ||
background-color: transparent !important; | ||
height: 100%; | ||
background-color: transparent !important; | ||
height: 100%; | ||
} | ||
|
||
.tool-ide-sider-layout { | ||
height: 100%; | ||
background-color: transparent !important; | ||
height: 100%; | ||
background-color: transparent !important; | ||
} | ||
|
||
.tool-ide-sider-btn { | ||
position: fixed; | ||
transform: translate(-50%, 100%); | ||
z-index: 1; | ||
transition: "left 0.1s linear"; | ||
position: fixed; | ||
transform: translate(-50%, 100%); | ||
z-index: 1; | ||
transition: "left 0.1s linear"; | ||
} | ||
|
||
.tool-ide-collapse-panel { | ||
background-color: var(--white); | ||
border: none; | ||
border-radius: 0px; | ||
background-color: var(--white); | ||
border: none; | ||
border-radius: 0px; | ||
} | ||
|
||
/* Remove padding from modal content */ | ||
.custom-modal-wrapper .ant-modal-content { | ||
padding: 0; | ||
height: 90vh; | ||
overflow-y: auto; | ||
padding: 0; | ||
height: 90vh; | ||
overflow-y: auto; | ||
} | ||
|
||
.custom-modal-wrapper .tools-prompts-header-layout { | ||
border-radius: 5px 5px 0px 0px; | ||
border-radius: 5px 5px 0px 0px; | ||
} | ||
|
||
.custom-modal-gen-index .ant-modal { | ||
top: 20px; | ||
right: 20px; | ||
position: absolute !important; | ||
top: 20px; | ||
right: 20px; | ||
position: absolute !important; | ||
} | ||
|
||
.tool-ide-main-card .card-text { | ||
font-size: 12px; | ||
font-size: 12px; | ||
} |