2017-09-27 09:33:20 -07:00
|
|
|
@import '../variables';
|
2017-08-18 03:42:40 -07:00
|
|
|
|
|
|
|
|
/// Styles a dot that indicates that user attention is required
|
2017-05-19 03:05:25 -07:00
|
|
|
.notification-dot {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
2017-08-18 03:42:40 -07:00
|
|
|
display: block;
|
2017-05-19 03:05:25 -07:00
|
|
|
margin: auto;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-width: 4px;
|
|
|
|
|
border-color: set-color(red, maroonflush);
|
|
|
|
|
border-radius: 50%;
|
2017-08-18 03:42:40 -07:00
|
|
|
|
|
|
|
|
&--has-prediction {
|
|
|
|
|
border-color: $compliance-suggestion-hint;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-27 09:33:20 -07:00
|
|
|
&--needs-review {
|
2017-08-20 16:46:43 -07:00
|
|
|
border-color: set-color(blue, blue5);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-18 03:42:40 -07:00
|
|
|
/// Adapts the notification-dot for a tab header
|
|
|
|
|
&--on-tab {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 26px;
|
|
|
|
|
right: 5px;
|
|
|
|
|
}
|
2017-05-19 03:05:25 -07:00
|
|
|
}
|