# wp-ultimate-post-grid/3.3.0/assets/css/admin/shared/icon.scss

WP Ultimate Post Grid, version 3.3.0. 45 lines.

- Page: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/code/assets/css/admin/shared/icon.scss
- Raw: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/raw/assets/css/admin/shared/icon.scss
- Modified: 2020-01-24T07:47: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/wp-ultimate-post-grid/3.3.0/code/assets/css/admin/shared/icon.scss#L10-L20`.

```scss
.wpupg-admin-icon {
    opacity: 0.5;
    margin-top: 2px;

    &:hover {
        opacity: 1;
        cursor: pointer;
    }

    &.wpupg-admin-icon-required {
        cursor: help !important;
    }
}

.wpupg-admin-icon-help {
    display: inline-block;
    margin-top: 0;
    margin-left: 5px;

    border: 1px solid #444;
    border-radius: 100%;
    opacity: 1;

    width: 16px;
    height: 16px;
    text-align: center;
    font-size: 12px;

    svg {
        width: 10px;
        height: 9px;
        margin-bottom: 2px;
    }

    &:hover {
        background-color: #444;

        svg {
            g,
            path {
                fill: white;
            }
        }
    }
}
```
