mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 12:17:59 +03:00
25 lines
584 B
Plaintext
Executable File
25 lines
584 B
Plaintext
Executable File
.alert {
|
|
border: 0;
|
|
border-radius: 0;
|
|
|
|
// 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;
|
|
|
|
a, .alert-link {
|
|
color: @variation-color-text;
|
|
}
|
|
});
|
|
|
|
&-info, &-danger, &-warning, &-success {
|
|
color: @mdb-text-color-light;
|
|
}
|
|
|
|
&-default {
|
|
a, .alert-link {
|
|
color: @mdb-text-color-primary;
|
|
}
|
|
}
|
|
}
|