# subscription/1.9.6/assets/css/gateway.css

Subscriptions for WooCommerce with Stripe Recurring Payments, version 1.9.6. 50 lines.

- Page: https://pluginprobe.com/plugins/subscription/1.9.6/code/assets/css/gateway.css
- Raw: https://pluginprobe.com/plugins/subscription/1.9.6/raw/assets/css/gateway.css
- Modified: 2025-06-30T14:41:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/subscription/1.9.6/code/assets/css/gateway.css#L10-L20`.

```css
.wpsubs-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: none !important;

  height: 18px !important;
  width: 32px !important;
  transform: translateY(1px);
  background: #999 !important;
  border-radius: 999px !important;
  position: relative !important;
  display: inline-block !important;
  vertical-align: middle !important;
  transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51) !important;
}

.wpsubs-toggle::before {
  content: "" !important;
  position: absolute !important;
  width: 14px !important;
  height: 14px !important;
  background: #fff !important;
  border-radius: 50% !important;
  margin: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: 2px !important;
  transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51) !important;
}

.wpsubs-toggle:checked {
  background: var(--wp-admin-theme-color, #720eec) !important;
}

.wpsubs-toggle:checked::before {
  left: calc(100% - 16px) !important;
}

.wpsubs-toggle:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.wpsubs-webhook-url {
  color: #2c3338 !important;
  border: 1px solid #8c8f94 !important;
}

```
