PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
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 2.30.0 All 255 releases
give / src / DonationForms / FormDesigns / ClassicFormDesign / css / _inputs.scss

_inputs.scss in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/DonationForms/FormDesigns/ClassicFormDesign/css/_inputs.scss

99 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .givewp-groups-name {
2 position: relative;
3 width: 100%;
4 display: flex;
5 flex-direction: row;
6 column-gap: 1rem;
7 }
8
9 .givewp-fields-select-honorific {
10 flex-basis: 35%;
11 }
12
13 .givewp-fields-hidden {
14 display: none;
15 }
16
17 select:not(.givewp-fields-amount__currency-select) {
18 border: 0.078rem solid #666;
19 border-radius: 0.25rem;
20 background-color: #fff;
21 color: #4d4d4d;
22 font-size: 1rem;
23 font-family: inherit;
24 font-weight: 500;
25 line-height: 1.2;
26 padding: 0.9rem var(--givewp-spacing-8) 0.9rem 1.1875rem;
27 appearance: none;
28 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.66016 7.19531C5.90625 7.44141 6.31641 7.44141 6.5625 7.19531L11.8945 1.89062C12.1406 1.61719 12.1406 1.20703 11.8945 0.960938L11.2656 0.332031C11.0195 0.0859375 10.6094 0.0859375 10.3359 0.332031L6.125 4.54297L1.88672 0.332031C1.61328 0.0859375 1.20312 0.0859375 0.957031 0.332031L0.328125 0.960938C0.0820312 1.20703 0.0820312 1.61719 0.328125 1.89062L5.66016 7.19531Z' fill='%23A2A3A2'/%3E%3C/svg%3E"),
29 linear-gradient(to bottom, #fff 0%, #fff 100%);
30 background-repeat: no-repeat, repeat;
31 background-position: right var(--givewp-spacing-4) top 50%, 0 0;
32 background-size: 0.65em auto, 100%;
33
34 &[aria-invalid="true"]="true""],
35 &:invalid {
36 border-color: red;
37 }
38 }
39
40 input[type="text"]="text""],
41 input[type="password"]="password""],
42 input[type="email"]="email""],
43 textarea {
44 border-width: 0.078rem;
45 border-style: solid;
46 border-radius: 0.25rem;
47 padding: 1.1875rem;
48 width: 100%;
49 box-sizing: inherit;
50 inline-size: 100%;
51 background-color: rgb(255, 255, 255);
52 color: #4d4d4d;
53 font-size: 1rem;
54 font-family: inherit;
55 font-weight: 500;
56 line-height: 1.2;
57
58 &::placeholder {
59 color: var(--givewp-grey-400);
60 opacity: 0.6;
61 }
62
63 &:focus {
64 border-color: transparent;
65 }
66 }
67
68 button[type="submit"]="submit""] {
69 display: flex;
70 justify-content: center;
71 align-items: center;
72 padding: 1rem 0;
73 border: 0.125rem solid var(--givewp-primary-color);
74 border-radius: 0.5rem;
75 background-color: var(--givewp-primary-color);
76 color: rgb(255, 255, 255);
77 text-align: center;
78 font-family: inherit;
79 font-size: 1.375rem;
80 font-weight: 600;
81 line-height: 1.2;
82 cursor: pointer;
83 inline-size: 100%;
84 width: 100%;
85 margin: 1rem 0;
86
87 @supports (background-color: color-mix(in lab, var(--givewp-primary-color) 90%, black)) {
88 &:hover {
89 background-color: color-mix(in lab, var(--givewp-primary-color) 90%, black);
90 }
91 }
92 }
93
94 .error-message {
95 font-size: 1rem;
96 height: 1rem;
97 text-align: right;
98 }
99