-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated way that to detect an admin. (#137) Fixed linting error. * Update backend port setting and makefile dev commands. (#133) * Update README.md (#96) Updated Readme to specify that a build is required prior to running the development server. * Fix for input not allowing blank spaces.: Fix to allow a user to enter an empty string. Fixed with review comment. * Add culler timeout settings feature (#134) * Added types for notebookimage and status (#147) Updated with REST api notebook image endpoints and new notebook image types. * Updated REST API (#155) * Updated with REST API design changes. Fixed formatting error. * Update backend/src/types.ts Co-authored-by: Tom Coufal <7453394+tumido@users.noreply.github.com> Co-authored-by: Tom Coufal <7453394+tumido@users.noreply.github.com> * Updated type.ts in front end with Succeeded * [byon] Implement backend (#156) * feat(byon): List all notebooks Signed-off-by: Tomas Coufal <tcoufal@redhat.com> * feat(byon): Get single notebook Signed-off-by: Tomas Coufal <tcoufal@redhat.com> * fix(byon): Update api spec to include software and id Signed-off-by: Tomas Coufal <tcoufal@redhat.com> * feat(byon): Schedule new notebook import Signed-off-by: Tomas Coufal <tcoufal@redhat.com> * feat(byon): Delete notebook Signed-off-by: Tomas Coufal <tcoufal@redhat.com> * feat(byon): Update notebook Signed-off-by: Tomas Coufal <tcoufal@redhat.com> Co-authored-by: Christopher Chase <cchase@redhat.com> Co-authored-by: Chad Roberts <croberts@redhat.com> Co-authored-by: Juntao Wang <37624318+DaoDaoNoCode@users.noreply.github.com> Co-authored-by: Tom Coufal <7453394+tumido@users.noreply.github.com>
- Loading branch information
1 parent
7c4965b
commit 3427e7a
Showing
18 changed files
with
336 additions
and
168 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
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 |
---|---|---|
@@ -1,20 +1,48 @@ | ||
.odh-cluster-settings { | ||
.pf-c-form__group { | ||
border: var(--pf-global--BorderWidth--sm) solid var(--pf-global--BorderColor--100); | ||
padding: var(--pf-global--spacer--md); | ||
margin: 0; | ||
} | ||
.pf-c-form__group { | ||
border: var(--pf-global--BorderWidth--sm) solid var(--pf-global--BorderColor--100); | ||
padding: var(--pf-global--spacer--md); | ||
margin: 0; | ||
} | ||
|
||
.odh-number-input { | ||
max-width: 100px; | ||
.odh-number-input { | ||
max-width: 100px; | ||
} | ||
|
||
.pf-c-input-group { | ||
padding-top: var(--pf-global--spacer--md); | ||
padding-bottom: var(--pf-global--spacer--md); | ||
&__text { | ||
font-size: var(--pf-global--FontSize--sm); | ||
color: var(--pf-global--Color--100); | ||
} | ||
} | ||
|
||
.pf-c-helper-text { | ||
margin-top: var(--pf-global--spacer--sm); | ||
} | ||
|
||
.pf-c-input-group { | ||
padding-top: var(--pf-global--spacer--md); | ||
padding-bottom: var(--pf-global--spacer--md); | ||
.pf-c-radio { | ||
margin: var(--pf-global--spacer--sm) 0; | ||
padding-left: var(--pf-global--spacer--sm); | ||
&__label { | ||
font-size: var(--pf-global--FontSize--sm); | ||
} | ||
} | ||
|
||
&__form { | ||
margin: 0 var(--pf-global--spacer--lg); | ||
&__form { | ||
margin: 0 var(--pf-global--spacer--lg); | ||
} | ||
|
||
&__culler-input-group { | ||
&.pf-c-input-group { | ||
padding: var(--pf-global--spacer--xs) var(--pf-global--spacer--lg) 0; | ||
} | ||
.odh-number-input { | ||
max-width: 40px; | ||
&__hour { | ||
max-width: 60px; | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.