-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUI related modification[Implemented Filter, Sorting and Loader widge…
…t, Fixed Scrollbar alignment issue and SVG image related issue] and removed cmf server related functions from public api doc (#205) * Added loader, filter and sorting functionality inside GUI * Fixed scroll bar issue * Fixed loader issue inside lineage section * Removing server side API's from cmf.md * Modified css for loader component * Fixed svg related lineage image for artifact and execution tree * Added loader, filter and sorting functionality inside GUI * Fixed scroll bar issue * Fixed loader issue inside lineage section * Removing server side API's from cmf.md * Modified css for loader component * Fixed svg related lineage image for artifact and execution tree * Resolved sorting arrow related issue * Changed css related sorting arrow
- Loading branch information
1 parent
e559799
commit 7ead2ba
Showing
12 changed files
with
380 additions
and
282 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.loader-container { | ||
position: relative; /* Relative positioning for the loader to be placed absolutely inside */ | ||
width: 100%; | ||
height: 100%; /* Ensure it takes the full height of its parent */ | ||
} | ||
|
||
/* Loader is absolutely positioned within the loader-container */ | ||
.loader { | ||
position: absolute; | ||
top: 100%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); /* Center the loader */ | ||
border: 8px solid #f3f3f3; | ||
border-top: 8px solid #3498db; | ||
border-radius: 50%; | ||
width: 100px; /* Size of the loader */ | ||
height: 100px; /* Size of the loader */ | ||
animation: spin 1.5s linear infinite; | ||
z-index: 9999; /* Ensure it appears on top */ | ||
} | ||
|
||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} |
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.