# give/4.16.9/src/Admin/fields/Status/styles.module.scss

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 53 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Admin/fields/Status/styles.module.scss
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Admin/fields/Status/styles.module.scss
- Modified: 2025-10-01T11:37:12+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/give/4.16.9/code/src/Admin/fields/Status/styles.module.scss#L10-L20`.

```scss

.statusSelect {
    --statusOptionColor: var(--givewp-grey-500);
    position: relative;

    &::before {
        background-color: var(--statusOptionColor);
        border-radius: 50%;
        content: '';
        display: inline-block;
        height: 0.75rem;
        left: var(--givewp-spacing-4);
        pointer-events: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 0.75rem;
    }

    &--pending,
    &--processing {
        --statusOptionColor: var(--givewp-blue-500);
    }

    &--active,
    &--publish {
        --statusOptionColor: var(--givewp-green-500);
    }

    &--completed {
        --statusOptionColor: var(--givewp-emerald-500);
    }

    &--expired,
    &--cancelled,
    &--failing,
    &--failed,
    &--cancelled,
    &--revoked,
    &--trashed {
        --statusOptionColor: var(--givewp-red-500);
    }

    select.statusSelectInput {
        padding-left: calc(var(--givewp-spacing-6) + 0.75rem);
    }
}

.notice {
    margin-top: var(--givewp-spacing-1);
    transform: translateX(1px);
}

```
