PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 4.16.9 4.16.8.1 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 All 256 releases
give / src / Campaigns / Blocks / shared / components / EntitySelector / styles / index.scss

index.scss in GiveWP – Donation Plugin and Fundraising Platform 4.17.0, at src/Campaigns/Blocks/shared/components/EntitySelector/styles/index.scss

58 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .givewp-entity-selector {
2 display: flex;
3 flex-direction: column;
4 gap: 20px;
5 padding: 40px 24px;
6 border: 1px solid #e5e7eb;
7 border-radius: 5px;
8 box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
9
10 &__label {
11 padding-bottom: 16px;
12 }
13
14 &__select {
15 input[type='text']='text']:focus {
16 border-color: transparent;
17 box-shadow: 0 0 0 1px transparent;
18 outline: 2px solid transparent;
19 }
20 }
21
22 &__logo {
23 align-self: center;
24 }
25
26 &__open {
27 color: #fff;
28 background: #2271b1;
29 padding: 0.5rem 1rem;
30 cursor: pointer;
31 border: none;
32 border-radius: 5px;
33 }
34
35 &__submit {
36 width: 100%;
37 background-color: #27ae60;
38 color: #fff;
39 padding: 1rem;
40 border-radius: 5px;
41 font-weight: bold;
42 text-align: center;
43 outline: none;
44 border: 0;
45 transition: 0.2s;
46
47 &:disabled {
48 background-color: #f3f4f6;
49 color: #9ca0af;
50 }
51
52 &:hover:not(:disabled) {
53 cursor: pointer;
54 filter: brightness(1.2);
55 }
56 }
57 }
58