give
/
src
/
Donations
/
resources
/
admin
/
components
/
DonationDetailsPage
/
DonationDetailsPage.module.scss
Tabs
6 months ago
DonationDetailsPage.module.scss
9 months ago
index.tsx
9 months ago
slots.ts
1 year ago
DonationDetailsPage.module.scss
60 lines
| 1 | .statusBadge { |
| 2 | --statusBadgeBgColor: var(--givewp-grey-25); |
| 3 | --statusBadgeTextColor: var(--givewp-grey-900); |
| 4 | |
| 5 | align-items: center; |
| 6 | background-color: var(--statusBadgeBgColor); |
| 7 | border-radius: var(--givewp-rounded-full); |
| 8 | border: 1px solid var(--statusBadgeBorderColor); |
| 9 | color: var(--statusBadgeTextColor); |
| 10 | display: flex; |
| 11 | font-size: 0.75rem; |
| 12 | font-weight: 600; |
| 13 | gap: var(--givewp-spacing-1); |
| 14 | justify-content: center; |
| 15 | padding: var(--givewp-spacing-1) var(--givewp-spacing-3); |
| 16 | text-align: center; |
| 17 | |
| 18 | &.statusBadge--pending, |
| 19 | &.statusBadge--processing { |
| 20 | --statusBadgeBgColor: var(--givewp-blue-100); |
| 21 | --statusBadgeTextColor: var(--givewp-blue-900); |
| 22 | } |
| 23 | |
| 24 | &.statusBadge--publish { |
| 25 | --statusBadgeBgColor: var(--givewp-green-100); |
| 26 | --statusBadgeTextColor: var(--givewp-green-900); |
| 27 | } |
| 28 | |
| 29 | &.statusBadge--failed, |
| 30 | &.statusBadge--cancelled, |
| 31 | &.statusBadge--revoked { |
| 32 | --statusBadgeBgColor: var(--givewp-red-100); |
| 33 | --statusBadgeTextColor: var(--givewp-red-900); |
| 34 | } |
| 35 | |
| 36 | &.statusBadge--give_subscription { |
| 37 | --statusBadgeBgColor: var(--givewp-green-700); |
| 38 | --statusBadgeTextColor: var(--givewp-green-25); |
| 39 | } |
| 40 | |
| 41 | &.statusBadge--trash { |
| 42 | --statusBadgeBgColor: var(--givewp-red-700); |
| 43 | --statusBadgeTextColor: var(--givewp-red-25); |
| 44 | } |
| 45 | |
| 46 | &.testBadge { |
| 47 | --statusBadgeBgColor: var(--givewp-orange-400); |
| 48 | --statusBadgeTextColor: var(--givewp-shades-white); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | .archive { |
| 53 | --contextMenuItemColor: var(--givewp-red-500); |
| 54 | } |
| 55 | |
| 56 | .sectionFieldInputWrapper { |
| 57 | display: flex; |
| 58 | gap: var(--givewp-spacing-2); |
| 59 | } |
| 60 |