29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-07-01 01:23:43 +00:00

Remove unused alert override

This commit is contained in:
wilsonge 2018-09-13 00:45:16 +01:00
parent 1819f897b7
commit 7d29f87dad
No known key found for this signature in database
GPG Key ID: EF81319318FC9D04

View File

@ -1,32 +0,0 @@
// Alerts
@mixin alert-variant($background, $border, $body-color) {
background-color: $background;
border-color: $border;
border-left: 10px solid $background;
color: $body-color;
hr {
border-top-color: darken($background, 5%);
}
.alert-link {
color: darken($background, 10%);
}
}
.alert-success {
@include alert-variant(theme-color("success"), theme-color("success"), $gray-200);
}
.alert-info {
@include alert-variant(theme-color("info"), theme-color("info"), $gray-200);
}
.alert-warning {
@include alert-variant(theme-color("warning"), theme-color("warning"), $gray-200);
}
.alert-danger {
@include alert-variant(theme-color("danger"), theme-color("danger"), $gray-200);
}