@@ -44,7 +44,7 @@ export class Switch extends PureComponent<Props, State> {
)}
<div className={switchClassName}>
<input id={labelId} type="checkbox" checked={checked} onChange={this.internalOnChange} />
- <span class="gf-form-switch__slider" />
+ <span className="gf-form-switch__slider" />
</div>
);
@@ -358,7 +358,7 @@ $variable-option-bg: $blue-dark;
//Switch Slider
// -------------------------
-$switch-bg: $black;
+$switch-bg: $input-bg;
$switch-slider-color: $dark-2;
$switch-slider-off-bg: $gray-1;
$switch-slider-on-bg: linear-gradient(90deg, $orange, $red);
@@ -98,6 +98,8 @@ gf-form-switch[disabled] {
width: 60px;
height: 34px;
background: $switch-bg;
+ border: 1px solid $input-border-color;
+ border-left: none;
input {
opacity: 0;