mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-08 17:22:31 +03:00
348b7de7f7
Move all deprecated vendor prefix mixins to less/mixins/vendor-prefixes.less Create mixins directory and move partials to that directory. FIXES #12994
15 lines
257 B
Plaintext
15 lines
257 B
Plaintext
// Alerts
|
|
|
|
.alert-variant(@background; @border; @text-color) {
|
|
background-color: @background;
|
|
border-color: @border;
|
|
color: @text-color;
|
|
|
|
hr {
|
|
border-top-color: darken(@border, 5%);
|
|
}
|
|
.alert-link {
|
|
color: darken(@text-color, 10%);
|
|
}
|
|
}
|