Codebase list gnome-shell-extensions / de17c4f0-7fd8-42a4-9ef0-07a69befad8e/upstream data / gnome-shell-sass / widgets / _switches.scss
de17c4f0-7fd8-42a4-9ef0-07a69befad8e/upstream

Tree @de17c4f0-7fd8-42a4-9ef0-07a69befad8e/upstream (Download .tar.gz)

_switches.scss @de17c4f0-7fd8-42a4-9ef0-07a69befad8e/upstreamraw · history · blame

/* Switches */

// these are equal to the size of the SVG assets
$switch_height: 22px;
$switch_width: 46px;

.toggle-switch {
  color: $fg_color;
  height: $switch_height;
  width: $switch_width;
  background-size: contain;
  background-image: if($variant == 'light', url("resource:///org/gnome/shell/theme/toggle-off.svg"),url("resource:///org/gnome/shell/theme/toggle-off-dark.svg"));
  &:checked { 
    background-image: if($variant == 'light', url("resource:///org/gnome/shell/theme/toggle-on.svg"),url("resource:///org/gnome/shell/theme/toggle-on-dark.svg"));
  }
}