This re-introduces the correct change made in #4454 which was
accidentally reverted with
9d029fcde921efca9a7b502956de9aaa0a7e12bb:
The `button-style` mixin must have a default value of `true` in order
for global radius settings taking effect.
// $bg - Primary color set in settings file. Default: $button-bg.
// $radius - If true, set to button radius which is $global-radius || explicitly set radius amount in px (ex. $radius:10px). Default: true
// $disabled - We can set $disabled:true to create a disabled transparent button. Default: false
-@mixin button-style($bg:$button-bg, $radius:false, $disabled:false) {
+@mixin button-style($bg:$button-bg, $radius:true, $disabled:false) {
// We control which background styles are used,
// these can be removed by setting $bg:false