fix button roundness

This commit is contained in:
2015-04-23 23:59:06 +02:00
parent 23ea454d9b
commit 345ca91a43
7 changed files with 16 additions and 40 deletions

View File

@@ -145,52 +145,28 @@ img {
/* Classes */
.round_top {
-moz-border-radius:10px 10px 0 0;
-webkit-border-radius:10px 10px 0 0;
-khtml-border-radius:10px 10px 0 0;
border-radius:10px 10px 0 0;
@include round(10px, 10px, 0, 0);
}
.round_bottom {
-moz-border-radius:0 0 10px 10px;
-webkit-border-radius:0 0 10px 10px;
-khtml-border-radius:0 0 10px 10px;
border-radius:0 0 10px 10px;
@include round(0, 0, 10px, 10px);
}
.round_right {
-moz-border-radius:0 10px 10px 0;
-webkit-border-radius:0 10px 10px 0;
-khtml-border-radius:0 10px 10px 0;
border-radius:0 10px 10px 0;
@include round(0, 10px, 10px, 0);
}
.round_left {
-moz-border-radius:10px 0 0 10px;
-webkit-border-radius:10px 0 0 10px;
-khtml-border-radius:10px 0 0 10px;
border-radius:10px 0 0 10px;
@include round(10px, 0, 0, 10px);
}
.round_bottom_left {
-moz-border-radius:0 0 0 10px;
-webkit-border-radius:0 0 0 10px;
-khtml-border-radius:0 0 0 10px;
border-radius:0 0 0 10px;
@include round(0, 0, 0, 10px);
}
.round {
-moz-border-radius:10px;
-webkit-border-radius:10px;
-khtml-border-radius:10px;
border-radius:10px;
@include round(10px, 10px, 10px, 10px);
}
.tiny_round {
-moz-border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
@include round(5px, 5px, 5px, 5px);
}
.tiny_top_right {
-moz-border-radius:5px 0 5px 5px;
-webkit-border-radius:5px 0 5px 5px;
-khtml-border-radius:5px 0 5px 5px;
border-radius:5px 0 5px 5px;
@include round(5px, 0, 5px, 5px);
}
.inc_border {