mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 03:09:12 +00:00
30 lines
562 B
SCSS
30 lines
562 B
SCSS
@import '../variables';
|
|
|
|
/// Styles a dot that indicates that user attention is required
|
|
.notification-dot {
|
|
width: 0;
|
|
height: 0;
|
|
display: block;
|
|
margin: auto;
|
|
border-style: solid;
|
|
border-width: 4px;
|
|
border-color: set-color(red, maroonflush);
|
|
border-radius: 50%;
|
|
|
|
&--has-prediction {
|
|
border-color: $compliance-suggestion-hint;
|
|
}
|
|
|
|
&--needs-review {
|
|
border-color: set-color(blue, blue5);
|
|
}
|
|
|
|
/// Adapts the notification-dot for a tab header
|
|
&--on-tab {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 26px;
|
|
right: 5px;
|
|
}
|
|
}
|