mdb-ui-kit/less/_alerts.less

25 lines
586 B
Plaintext
Raw Normal View History

.alert {
2014-08-18 18:25:33 +04:00
border: 0px;
border-radius: 0;
2015-02-23 11:39:08 +03:00
// SASS conversion note: please mirror any content change in _mixins-shared.scss alert-variations-content
.generic-variations(~".alert", ~"", @mdb-text-color-light, {
background-color: @variation-color;
color: @variation-color-text;
2015-02-23 11:39:08 +03:00
2015-06-27 13:23:55 +03:00
a, .alert-link {
color: @variation-color-text;
2015-06-27 13:23:55 +03:00
}
2015-02-23 11:39:08 +03:00
});
&-info, &-danger, &-warning, &-success {
color: @mdb-text-color-light;
}
2015-02-23 11:39:08 +03:00
&-default {
a, .alert-link {
color: @mdb-text-color-primary;
}
}
2014-08-18 18:25:33 +04:00
}