2014-03-09 23:18:48 -07:00
|
|
|
// Single side border-radius
|
|
|
|
|
|
|
|
.border-top-radius(@radius) {
|
2017-11-25 18:06:34 -08:00
|
|
|
border-top-left-radius: @radius;
|
2014-03-09 23:18:48 -07:00
|
|
|
border-top-right-radius: @radius;
|
|
|
|
}
|
|
|
|
.border-right-radius(@radius) {
|
2017-11-25 18:06:34 -08:00
|
|
|
border-top-right-radius: @radius;
|
2014-03-09 23:18:48 -07:00
|
|
|
border-bottom-right-radius: @radius;
|
|
|
|
}
|
|
|
|
.border-bottom-radius(@radius) {
|
|
|
|
border-bottom-right-radius: @radius;
|
2017-11-25 18:06:34 -08:00
|
|
|
border-bottom-left-radius: @radius;
|
2014-03-09 23:18:48 -07:00
|
|
|
}
|
|
|
|
.border-left-radius(@radius) {
|
2017-11-25 18:06:34 -08:00
|
|
|
border-top-left-radius: @radius;
|
2014-03-09 23:18:48 -07:00
|
|
|
border-bottom-left-radius: @radius;
|
|
|
|
}
|