/* The checked state of a clear Button */
@define-mixin Button_clear-checked
    /* Sets the view modifier name of a Button */
    $viewName,
    /* Sets the foreground color value of a Button's text */
    $color,
    /* Sets the background color of a Button */
    $fillColor {
    @mixin Button_checked
        $viewName,
        $color,
        $fillColor;

    .Button2_view_$(viewName).Button2_checked .Button2-Text {
        opacity: 1;
    }
}
