Commit 94ba211c authored by Mark Otto's avatar Mark Otto

fixes #4462: mixins instead of vanilla css

parent b745b776
...@@ -196,17 +196,13 @@ input[type="submit"].btn { ...@@ -196,17 +196,13 @@ input[type="submit"].btn {
.btn-link:active { .btn-link:active {
background-color: transparent; background-color: transparent;
background-image: none; background-image: none;
-webkit-box-shadow: none; .box-shadow(none);
-moz-box-shadow: none;
box-shadow: none;
} }
.btn-link { .btn-link {
border-color: transparent; border-color: transparent;
cursor: pointer; cursor: pointer;
color: @linkColor; color: @linkColor;
-webkit-border-radius: 0; .border-radius(0);
-moz-border-radius: 0;
border-radius: 0;
} }
.btn-link:hover { .btn-link:hover {
color: @linkColorHover; color: @linkColorHover;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment