Skip to content

Instantly share code, notes, and snippets.

@seven-phases-max
Created January 9, 2014 16:13
Show Gist options
  • Save seven-phases-max/8336820 to your computer and use it in GitHub Desktop.
Save seven-phases-max/8336820 to your computer and use it in GitHub Desktop.
.border-top-radius(@radius) {
.border-radius-value(@radius);
border-top-right-radius: @value;
border-top-left-radius: @value;
}
.border-right-radius(@radius) {
.border-radius-value(@radius);
border-bottom-right-radius: @value;
border-top-right-radius: @value;
}
.border-bottom-radius(@radius) {
.border-radius-value(@radius);
border-bottom-right-radius: @value;
border-bottom-left-radius: @value;
}
.border-left-radius(@radius) {
.border-radius-value(@radius);
border-bottom-left-radius: @value;
border-top-left-radius: @value;
}
.border-radius-value(@radius) {@value: 0;}
.border-radius-value(@radius) when (@radius > 0) {
@value: @radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment