2014-12-02 14:02:35 -08:00
|
|
|
// Single side border-radius
|
|
|
|
|
2015-10-07 00:05:38 -07:00
|
|
|
@mixin border-radius($radius: $border-radius) {
|
|
|
|
@if $enable-rounded {
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
@mixin border-top-radius($radius) {
|
2015-09-03 09:04:51 -07:00
|
|
|
@if $enable-rounded {
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-right-radius($radius) {
|
2015-09-03 09:04:51 -07:00
|
|
|
@if $enable-rounded {
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-bottom-radius($radius) {
|
2015-09-03 09:04:51 -07:00
|
|
|
@if $enable-rounded {
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-left-radius($radius) {
|
2015-09-03 09:04:51 -07:00
|
|
|
@if $enable-rounded {
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|