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