-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from ABI-Deployment-Thesis/ruiar/add-cpu-and-me…
…mory feat(ui): add docker tag, cpu and memory, UI enhancements
- Loading branch information
Showing
12 changed files
with
378 additions
and
73 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
27 changes: 27 additions & 0 deletions
27
src/components/ModelRunDetailsModal/ModelRunDetailsModal.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,6 +1,33 @@ | ||
/* src/components/ModelRunDetailsModal/ModelRunDetailsModal.css */ | ||
|
||
.custom-modal-width { | ||
max-width: 80%; | ||
/* Adjust the percentage as needed */ | ||
width: 800px; | ||
/* Or set a fixed width */ | ||
} | ||
|
||
.state-queue { | ||
color: gray; | ||
} | ||
|
||
.state-building { | ||
color: #0d6efd; | ||
} | ||
|
||
.state-running { | ||
color: orange; | ||
} | ||
|
||
.state-finished { | ||
color: green; | ||
} | ||
|
||
.state-failed { | ||
color: red; | ||
} | ||
|
||
.modal-body { | ||
word-wrap: break-word; | ||
/* Ensure long words break and wrap */ | ||
} |
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
Oops, something went wrong.