2015-02-01 21:25:09 +00:00
|
|
|
// Single side border-radius
|
|
|
|
|
|
|
|
.border-top-radius(@radius) {
|
|
|
|
border-top-right-radius: @radius;
|
2015-09-19 18:05:54 +00:00
|
|
|
border-top-left-radius: @radius;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-09-19 18:05:54 +00:00
|
|
|
|
2015-02-01 21:25:09 +00:00
|
|
|
.border-right-radius(@radius) {
|
|
|
|
border-bottom-right-radius: @radius;
|
2015-09-19 18:05:54 +00:00
|
|
|
border-top-right-radius: @radius;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-09-19 18:05:54 +00:00
|
|
|
|
2015-02-01 21:25:09 +00:00
|
|
|
.border-bottom-radius(@radius) {
|
|
|
|
border-bottom-right-radius: @radius;
|
2015-09-19 18:05:54 +00:00
|
|
|
border-bottom-left-radius: @radius;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-09-19 18:05:54 +00:00
|
|
|
|
2015-02-01 21:25:09 +00:00
|
|
|
.border-left-radius(@radius) {
|
|
|
|
border-bottom-left-radius: @radius;
|
2015-09-19 18:05:54 +00:00
|
|
|
border-top-left-radius: @radius;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|