PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.8
GiveWP – Donation Plugin and Fundraising Platform v4.16.8
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / src / Views / Components / ListTable / BulkActions / BulkActionCheckbox.module.scss
BulkActionCheckbox.module.scss
50 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 input[type="checkbox"]="checkbox""].checkbox {
2 --transition: 0.2s ease;
3
4 appearance: none;
5 background-color: transparent;
6 border-radius: var(--givewp-rounded-4);
7 border: solid 1px var(--givewp-neutral-200);
8 color: #2271b1;
9 cursor: pointer;
10 flex-shrink: 0;
11 font-size: inherit;
12 height: 1.5rem;
13 margin: 0;
14 margin: 0;
15 padding: 0;
16 transform: translateY(-1px);
17 transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
18 vertical-align: middle;
19 width: 1.5rem;
20
21 &::before {
22 content: none;
23 }
24
25 &:focus {
26 border-color: transparent;
27 box-shadow: #2271b1 0px 0px 0px 0.125rem;
28 outline: none;
29 }
30
31 &:checked,
32 &:checked:active,
33 &:checked:focus {
34 background-color: #2271b1;
35 background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27rgb%28255, 255, 255%29%27 stroke-width=%274%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpolyline points=%2720 6 9 17 4 12%27%3E%3C/polyline%3E%3C/svg%3E");
36 background-position: center;
37 background-size: 1rem auto;
38 background-repeat: no-repeat;
39 border-color: #2271b1;
40 }
41
42 &[aria-invalid="false"]="false""] {
43 border-color: var(--givewp-green-500);
44 }
45
46 &[aria-invalid="true"]="true""] {
47 border-color: var(--givewp-red-400);
48 }
49 }
50