diff --git a/src/app/profiles/profiles.editor.modal.html b/src/app/profiles/profiles.editor.modal.html index 82409e0a1..0bbc83534 100644 --- a/src/app/profiles/profiles.editor.modal.html +++ b/src/app/profiles/profiles.editor.modal.html @@ -123,14 +123,14 @@ - + - This Identity cannot be deleted + This Identity cannot be deleted. - - + + diff --git a/src/app/profiles/profiles.lister.html b/src/app/profiles/profiles.lister.html index baa109e37..dd028e4d4 100644 --- a/src/app/profiles/profiles.lister.html +++ b/src/app/profiles/profiles.lister.html @@ -6,7 +6,7 @@ -

Username Identity

+

Username Identity

Email: @@ -43,7 +43,7 @@

Username Identity

- Email not validated. + Email not validated. diff --git a/src/app/profiles/profiles.lister.scss b/src/app/profiles/profiles.lister.scss index d6a943a88..9a82154cb 100644 --- a/src/app/profiles/profiles.lister.scss +++ b/src/app/profiles/profiles.lister.scss @@ -47,7 +47,3 @@ height: 50px; } } -.identity-warning { - font-weight: bold; - color: crimson; -} diff --git a/src/styles.scss b/src/styles.scss index 7c7cae140..7190097bb 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -20,6 +20,8 @@ $rmm-default-primary: mat.define-palette(mat.$light-blue-palette, 900, A400, A700); $rmm-default-accent: mat.define-palette(mat.$blue-palette, 200, 100, 400); $rmm-default-warn: mat.define-palette(mat.$orange-palette, 500, A400, A700); +$rmm-default-caution: mat.define-palette(mat.$deep-orange-palette, 500, A400, A700); +$rmm-default-error: mat.define-palette(mat.$red-palette, 500, A400, A700); $rmm-default-foreground: mat.define-palette(mat.$light-blue-palette, 400, 200, 600); $rmm-default-highlight: mat.define-palette(mat.$light-blue-palette, 100, 50, 200); $rmm-default-background: mat.define-palette(mat.$light-blue-palette, 900, A400, A700); @@ -323,6 +325,22 @@ mat-grid-tile.tableTitle { font-size: 12px; } ++.warning { + color: mat.get-color-from-palette($rmm-default-warn); + font-weight: bold; +} + +.caution { + color: mat.get-color-from-palette($rmm-default-caution); + font-weight: bold; +} + +.error { + color: mat.get-color-from-palette($rmm-default-error); + font-weight: bold; +} + + /* Palette colors */ .themePalettePrimary {