freeipa/install/ui/less/alerts.less
Serhii Tsymbaliuk 7f6b1c99f0
WebUI: Fix notification area layout
The fix prevents blocking elements in the right side near notification area.
Notification area now has fixed width and it isn't offset.
Also notification icon is aligned to notification text.

Ticket: https://pagure.io/freeipa/issue/8120

Signed-off-by: Serhii Tsymbaliuk <stsymbal@redhat.com>
Reviewed-By: Armando Neto <abiagion@redhat.com>
2019-11-21 16:44:11 +01:00

34 lines
504 B
Plaintext

//
// Alerts
// --------------------------------------------------
// Add styles for Font Awesome
.alert {
> .fa, > .fa-layered {
font-size: 20px;
position: absolute;
left: 11px;
top: 11px;
}
.fa-info {
color: #72767b;
}
}
.alert-success .fa-check-circle-o {
color: #5cb75c;
}
.alert-info .fa-info-circle {
color: #ccc;
}
.alert-danger .fa-exclamation-circle {
color: #c90813;
}
.alert-warning .fa-warning {
color: #eb7720;
}