author | durandn |
Wed, 09 Sep 2015 17:48:05 +0200 | |
changeset 115 | 5b3afe8c5592 |
parent 0 | 1afc9d2ab94d |
permissions | -rw-r--r-- |
0 | 1 |
// Single side border-radius |
2 |
||
3 |
.border-top-radius(@radius) { |
|
4 |
border-top-right-radius: @radius; |
|
5 |
border-top-left-radius: @radius; |
|
6 |
} |
|
7 |
.border-right-radius(@radius) { |
|
8 |
border-bottom-right-radius: @radius; |
|
9 |
border-top-right-radius: @radius; |
|
10 |
} |
|
11 |
.border-bottom-radius(@radius) { |
|
12 |
border-bottom-right-radius: @radius; |
|
13 |
border-bottom-left-radius: @radius; |
|
14 |
} |
|
15 |
.border-left-radius(@radius) { |
|
16 |
border-bottom-left-radius: @radius; |
|
17 |
border-top-left-radius: @radius; |
|
18 |
} |