fix css : round

This commit is contained in:
2015-04-25 17:31:57 +02:00
parent 345ca91a43
commit 60dfaae271
6 changed files with 10 additions and 11 deletions

View File

@@ -135,11 +135,11 @@ img {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );
}
@mixin round($TopLeft, $TopRight, $BottomLeft, $BottomLeft) {
-moz-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
-webkit-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
-khtml-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
@mixin round($TopLeft, $TopRight, $BottomRight, $BottomLeft) {
-moz-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-webkit-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-khtml-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
}
/* Classes */

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