PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 1.10.2
Subscriptions for WooCommerce with Stripe Recurring Payments v1.10.2
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / assets / css / gateway.css

gateway.css in Subscriptions for WooCommerce with Stripe Recurring Payments 1.10.2, at assets/css/gateway.css

50 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpsubs-toggle {
2 appearance: none !important;
3 -webkit-appearance: none !important;
4 -moz-appearance: none !important;
5 border: none !important;
6
7 height: 18px !important;
8 width: 32px !important;
9 transform: translateY(1px);
10 background: #999 !important;
11 border-radius: 999px !important;
12 position: relative !important;
13 display: inline-block !important;
14 vertical-align: middle !important;
15 transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51) !important;
16 }
17
18 .wpsubs-toggle::before {
19 content: "" !important;
20 position: absolute !important;
21 width: 14px !important;
22 height: 14px !important;
23 background: #fff !important;
24 border-radius: 50% !important;
25 margin: 0 !important;
26 top: 50% !important;
27 transform: translateY(-50%) !important;
28 left: 2px !important;
29 transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51) !important;
30 }
31
32 .wpsubs-toggle:checked {
33 background: var(--wp-admin-theme-color, #720eec) !important;
34 }
35
36 .wpsubs-toggle:checked::before {
37 left: calc(100% - 16px) !important;
38 }
39
40 .wpsubs-toggle:focus {
41 outline: none !important;
42 border: none !important;
43 box-shadow: none !important;
44 }
45
46 .wpsubs-webhook-url {
47 color: #2c3338 !important;
48 border: 1px solid #8c8f94 !important;
49 }
50