css: Use specific colors to represent grants, refusals and restrictions

This commit is contained in:
Johannes Meyer 2021-03-25 17:45:35 +01:00
parent ab90b3e0a1
commit ce1fed1b1d
2 changed files with 7 additions and 2 deletions

View File

@ -67,6 +67,11 @@
@menu-flyout-bg-color: @body-bg-color;
@menu-flyout-color: @text-color;
// Other colors
@color-granted: #59cd59;
@color-refused: #ee7373;
@color-restricted: #dede7d;
// Font families
@font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
@font-family-fixed: "Liberation Mono", "Lucida Console", Courier, monospace;

View File

@ -255,11 +255,11 @@ form.role-form {
text-align: center;
&.icon-ok {
color: @color-ok;
color: @color-granted;
}
&.icon-cancel {
color: @color-critical;
color: @color-refused;
}
}
}