toggles-soft.less 713 Bytes
.toggle-soft {
  .toggle-slide {
    border-radius: 5px;
    box-shadow: 0 0 0 1px #999;
  }

  .toggle-on, .toggle-off {
    color: rgba(0, 0, 0, 0.7);
    font-size: 11px;
    text-shadow: 1px 1px white;
  }

  .toggle-on, .toggle-select .toggle-inner .active {
    background: linear-gradient(#d2ff52, #91e842);
  }

  .toggle-off, .toggle-select .toggle-on {
    background: linear-gradient(#cfcfcf, #f5f5f5);
  }

  .toggle-blob {
    border-radius: 4px;
    background: linear-gradient(#cfcfcf, #f5f5f5);
    box-shadow: inset 0 0 0 1px #bbb, inset 0 0 0 2px white;

    &:hover {
      background: linear-gradient(#e4e4e4, #f9f9f9);
      box-shadow: inset 0 0 0 1px #ddd,inset 0 0 0 2px #ddd;
    }
  }
}