2014-03-10 07:18:48 +01:00
|
|
|
// Single side border-radius
|
|
|
|
|
|
|
|
.border-top-radius(@radius) {
|
2017-11-26 03:06:34 +01:00
|
|
|
border-top-left-radius: @radius;
|
2014-03-10 07:18:48 +01:00
|
|
|
border-top-right-radius: @radius;
|
|
|
|
}
|
|
|
|
.border-right-radius(@radius) {
|
2017-11-26 03:06:34 +01:00
|
|
|
border-top-right-radius: @radius;
|
2014-03-10 07:18:48 +01:00
|
|
|
border-bottom-right-radius: @radius;
|
|
|
|
}
|
|
|
|
.border-bottom-radius(@radius) {
|
|
|
|
border-bottom-right-radius: @radius;
|
2017-11-26 03:06:34 +01:00
|
|
|
border-bottom-left-radius: @radius;
|
2014-03-10 07:18:48 +01:00
|
|
|
}
|
|
|
|
.border-left-radius(@radius) {
|
2017-11-26 03:06:34 +01:00
|
|
|
border-top-left-radius: @radius;
|
2014-03-10 07:18:48 +01:00
|
|
|
border-bottom-left-radius: @radius;
|
|
|
|
}
|