open-consul/ui-v2/app/styles/components/notice.scss
Kenia 689d1375a3
ui: Add sorting to ACLs tokens with tests (#8359)
* Add sorting to ACLs tokens with tests

* Create token comparator and implement in template

* Upgrade @hashicorp/consul-api-double to 3.1.6

* Add navigation test to acls tokens
2020-07-29 09:41:40 -04:00

32 lines
569 B
SCSS

%notice {
margin: 1em 0;
}
%notice-success::before {
@extend %with-check-circle-fill-color-icon;
}
%notice-info::before {
@extend %with-info-circle-fill-color-icon;
}
%notice-highlight::before {
@extend %with-star-icon;
}
%notice-warning::before {
@extend %with-alert-triangle-color-icon;
}
%notice-error::before {
@extend %with-cancel-square-fill-color-icon;
}
/**/
.notice.warning {
@extend %notice-warning;
}
.notice.error {
@extend %notice-error;
}
.notice.info {
@extend %notice-info;
}
.notice.policy-management {
@extend %notice-highlight;
}