0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-07 00:46:15 +01:00

update to less syntax

This commit is contained in:
Mark Otto 2017-07-02 15:14:53 -07:00
parent 2f8018749d
commit 7ef172df57

View File

@ -1,28 +1,30 @@
/* Outline button for use within the docs */ // Outline button for use within the docs
.btn-outline { .btn-outline {
color: #563d7c; color: #563d7c;
background-color: transparent; background-color: transparent;
border-color: #563d7c; border-color: #563d7c;
}
.btn-outline:hover, &:hover,
.btn-outline:focus, &:focus,
.btn-outline:active { &:active {
color: #fff; color: #fff;
background-color: #563d7c; background-color: #563d7c;
border-color: #563d7c; border-color: #563d7c;
} }
}
/* Inverted outline button (white on dark) */ // Inverted outline button (white on dark)
.btn-outline-inverse { .btn-outline-inverse {
color: #fff; color: #fff;
background-color: transparent; background-color: transparent;
border-color: #cdbfe3; border-color: #cdbfe3;
}
.btn-outline-inverse:hover, &:hover,
.btn-outline-inverse:focus, &:focus,
.btn-outline-inverse:active { &:active {
color: #563d7c; color: #563d7c;
text-shadow: none; text-shadow: none;
background-color: #fff; background-color: #fff;
border-color: #fff; border-color: #fff;
} }
}