56 lines
1.2 KiB
SCSS
56 lines
1.2 KiB
SCSS
%notice {
|
|
border-radius: $radius-small;
|
|
border-width: 1px;
|
|
}
|
|
%notice-success,
|
|
%notice-info,
|
|
%notice-highlight,
|
|
%notice-error,
|
|
%notice-warning {
|
|
@extend %notice;
|
|
}
|
|
%notice-success {
|
|
@extend %with-passing;
|
|
background-color: $ui-green-050;
|
|
border-color: $ui-color-success;
|
|
color: $ui-green-700;
|
|
}
|
|
%notice-success::before {
|
|
color: $ui-color-success;
|
|
}
|
|
%notice-info {
|
|
/* %frame-blue-000*/
|
|
border-style: solid; /*TODO: this can go once we are using a frame*/
|
|
@extend %with-passing; /* needs a better info button*/
|
|
background-color: $ui-blue-050;
|
|
border-color: $ui-color-action; /* TODO: change to info */
|
|
color: $ui-blue-700;
|
|
}
|
|
%notice-highlight {
|
|
/* %frame-blue-000*/
|
|
border-style: solid; /*TODO: this can go once we are using a frame*/
|
|
@extend %with-star;
|
|
border-color: $ui-gray-300;
|
|
background-color: $ui-gray-050;
|
|
}
|
|
%notice-info::before {
|
|
color: $ui-color-action; /* change to info */
|
|
}
|
|
%notice-highlight::before {
|
|
/* %with-star, bigger */
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
%notice-warning {
|
|
@extend %frame-yellow-500, %with-warning;
|
|
}
|
|
%notice-error {
|
|
@extend %with-critical;
|
|
background-color: $ui-red-050;
|
|
border-color: $ui-color-failure;
|
|
color: $ui-red-600;
|
|
}
|
|
%notice-error::before {
|
|
color: $ui-color-failure;
|
|
}
|