status.css in Subscriptions for WooCommerce with Stripe Recurring Payments 1.3.2, at assets/css/status.css
| 1 | span.subscrpt-pending { |
| 2 | background: #535050; |
| 3 | color: white; |
| 4 | text-transform: capitalize; |
| 5 | padding: 8px; |
| 6 | } |
| 7 | |
| 8 | span.subscrpt-active { |
| 9 | background: green; |
| 10 | color: white; |
| 11 | text-transform: capitalize; |
| 12 | padding: 8px; |
| 13 | } |
| 14 | |
| 15 | span.subscrpt-expired { |
| 16 | background: red; |
| 17 | color: white; |
| 18 | text-transform: capitalize; |
| 19 | padding: 8px; |
| 20 | } |
| 21 | |
| 22 | span.subscrpt-cancelled { |
| 23 | background: #cecece; |
| 24 | color: white; |
| 25 | text-transform: capitalize; |
| 26 | padding: 8px; |
| 27 | } |
| 28 | |
| 29 | span.subscrpt-pe_cancelled { |
| 30 | background: #ecb03e; |
| 31 | color: white; |
| 32 | text-transform: capitalize; |
| 33 | padding: 8px; |
| 34 | } |
| 35 |