# give/4.16.8.1/src/Donations/resources/components/ListTable.module.scss

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 52 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Donations/resources/components/ListTable.module.scss
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Donations/resources/components/ListTable.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.8.1/code/src/Donations/resources/components/ListTable.module.scss#L10-L20`.

```scss
.paymentType {
    padding-inline-end: 0;
}

.manualDonationsNotice {
    position: relative;
    gap: .5rem;
    text-decoration: none;

    img {
        transform: scale(.8)
    }

    .manualDonationsAddOn {
        background: var(--givewp-blue-50);
        color: var(--givewp-blue-500);
        font-size: 0.625rem;
        font-weight: 700;
        padding: 0.15rem 0.5rem;
        border-radius: 4px;
    }

    .manualDonationsMessage {
        display: none;
        visibility: hidden;
        position: absolute;
        top: 3.35rem;
        left: -5%;
        background: var(--givewp-blue-700);
        box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.15);
        border-radius: 4px;
        color: var(--givewp-shades-white);
        padding: var(--givewp-spacing-3) var(--givewp-spacing-4);
        width: 290px;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 150%;
        white-space: normal;
        z-index: 999;

        img {
            position: absolute;
            top: -.5rem;
            right: 49%;
        }
    }

    &:hover .manualDonationsMessage {
        display: block;
        visibility: visible;
    }
}
```
