fix button roundness
This commit is contained in:
@@ -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 {
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user