Skip to content

Commit

Permalink
feat: add warning message on profile management screens (#12)
Browse files Browse the repository at this point in the history
Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
  • Loading branch information
thesuperzapper authored May 19, 2024
1 parent 8a6ccf3 commit fbd0d34
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dashboard/public/components/registration-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ h2+aside {
}

#MainCard .Main-Content {
height: 275px;
height: 350px;
}

neon-animatable {
Expand Down
14 changes: 14 additions & 0 deletions dashboard/public/components/resources/md2-input/md2-input.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,18 @@ input {
color: var(--action-color);
@apply --paper-input-error;
@apply --md2-error;
}
.paper-material {
display: inline-block;
box-sizing: border-box;
padding: 1rem;
color: var(--paper-grey-800);
background-color: var(--paper-grey-50);
@apply --shadow-elevation-2dp;
@apply --paper-material;
}
.paper-material h3 {
margin: 0;
font-size: 1.2rem;
color: var(--paper-red-500);
}
17 changes: 16 additions & 1 deletion dashboard/public/components/resources/md2-input/md2-input.pug
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,19 @@
on-focus='inputFocused', on-blur='inputBlurred', on-keydown='validateRange')
slot(name='suffix', slot='suffix')
iron-a11y-keys#keys(target='[[inputElement]]', keys='enter', on-keys-pressed='fireEnter')
aside.Error [[error]]
aside.Error [[error]]

div(class="paper-material")
h3 WARNING
p
| deployKF does
|
strong NOT
|
| support managing profiles through this interface.
br
| Please see the
|
a(href='https://www.deploykf.org/guides/platform/deploykf-profiles/') profile management
|
| guide.

0 comments on commit fbd0d34

Please sign in to comment.