/**
 * @class Ext.layout.container.Border
 */
 
/**
 * @var {color}
 * The background-color of the Border layout element
 */
$border-layout-ct-background-color: dynamic($neutral-color);
="comment block scss"> * The border-color
 * 
 * @member Global_CSS
 * @private
 */
@mixin border(
    $width: null,
    $style: null,
    $color: null
) {
    @if $width != null and $style != null and $color != null and
            length($width) == 1 and length($style) == 1 and length($color) == 1 {
        border: $width $style $color;
    } @else {
        border-width: $width;
        border-style: $style;
        border-color: $color;
    }
}