PluginProbe ʕ •ᴥ•ʔ
Strong Testimonials / 3.3.2
Strong Testimonials v3.3.2
3.3.2 3.3.1 trunk 1.0.1 2.30.9 2.31.10 2.32 2.32.1 2.32.2 2.32.3 2.32.4 2.33 2.34 2.35 2.36 2.37 2.38 2.38.1 2.39 2.39.1 2.39.2 2.39.3 2.40.0 2.40.1 2.40.2 2.40.3 2.40.4 2.40.5 2.40.6 2.40.7 2.41.0 2.41.1 2.50.0 2.50.1 2.50.2 2.50.3 2.50.4 2.51.0 2.51.1 2.51.2 2.51.3 2.51.4 2.51.5 2.51.6 2.51.7 2.51.8 2.51.9 3.0.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 3.1.19 3.1.2 3.1.20 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.10 3.2.11 3.2.12 3.2.13 3.2.14 3.2.15 3.2.16 3.2.17 3.2.18 3.2.19 3.2.2 3.2.20 3.2.21 3.2.22 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0
strong-testimonials / templates / simple-form / form.css
strong-testimonials / templates / simple-form Last commit date
config.json 1 year ago form.css 1 year ago form.php 1 year ago
form.css
179 lines
1 /**
2 * Strong Testimonials Simple Form template
3 */
4 .strong-form {
5 position: relative;
6 margin: 0 auto;
7 }
8 .strong-form .form-field {
9 margin-bottom: 1.5em;
10 }
11 .strong-form .form-field.wpmtst-submit {
12 margin-bottom: 0;
13 }
14 .strong-form .required.symbol:after {
15 content: '*';
16 color: #FF0000;
17 font-size: 1.5em;
18 font-weight: 400;
19 margin: 0 5px;
20 position: relative;
21 top: 5px;
22 }
23 .strong-form label {
24 display: inline-block;
25 float: none;
26 width: auto;
27 }
28 .strong-form input[type="text"],
29 .strong-form input[type="email"],
30 .strong-form input[type="url"],
31 .strong-form input[type="file"],
32 .strong-form select,
33 .strong-form textarea {
34 box-sizing: border-box;
35 display: block;
36 float: none;
37 width: 100%;
38 }
39 .strong-form input[type="checkbox"] {
40 -webkit-transform: scale(1.4);
41 -moz-transform: scale(1.4);
42 -ms-transform: scale(1.4);
43 transform: scale(1.4);
44 margin-left: 12px;
45 margin-right: 6px;
46 }
47 .strong-form input[type="checkbox"] + label {
48 font-weight: 400;
49 padding: 5px;
50 }
51 .strong-form input[type="checkbox"]:focus + label {
52 outline: 1px solid #CCC;
53 }
54 .strong-form textarea {
55 height: 16em;
56 }
57 .strong-form span.error,
58 .strong-form label.error {
59 display: block;
60 }
61 .strong-form .before {
62 display: block;
63 }
64 .strong-form .after {
65 display: block;
66 }
67
68 .strong-form-inner {
69 padding: 20px;
70 }
71
72 input.captcha {
73 display: block;
74 width: auto;
75 }
76
77 img.captcha {
78 border: 0;
79 }
80
81 .wpmtst-captcha {
82 margin-bottom: 1em;
83 }
84
85 /* category checklist */
86 .strong-form ul.strong-category-list,
87 .strong-form ul.strong-category-list ul.children {
88 list-style-type: none;
89 }
90 .strong-form ul.strong-category-list label,
91 .strong-form ul.strong-category-list ul.children label {
92 font-weight: 400;
93 white-space: nowrap;
94 word-wrap: break-word;
95 }
96 .strong-form ul.strong-category-list {
97 margin: 0;
98 padding-left: 0;
99 }
100 .strong-form ul.strong-category-list ul.children {
101 margin-left: 1.5em;
102 padding-left: 0;
103 }
104
105 /* The "wait" spinner on form submission.
106 -----------------------------------------------*/
107 .strong-form-wait {
108 display: none;
109 position: absolute;
110 top: 0;
111 bottom: 0;
112 left: 0;
113 right: 0;
114 background: rgba(255, 255, 255, 0.7);
115 }
116 .strong-form-wait .message {
117 position: absolute;
118 top: calc( 50% - 25px );
119 text-align: center;
120 width: 100%;
121 height: 50px;
122 line-height: 50px;
123 color: #111;
124 }
125
126 .strong-form-wait .message img {
127 width: 50px;
128 height: 50px;
129 margin: 0 auto;
130 }
131
132 @keyframes wpmtst-spin{
133 0%{
134 transform: rotate(360deg);
135 }
136 100%{
137 transform: rotate(0deg);
138 }
139 }
140
141 .strong-form-wait .message img{
142 animation: wpmtst-spin 2.5s infinite 0s linear;
143 }
144
145 .strong-form {
146 /* error indicators */
147 /* field-wrap is used for checkboxes, radios, star ratings */
148 }
149 .strong-form input.error,
150 .strong-form textarea.error,
151 .strong-form select.error {
152 background: #F9E5E6;
153 border: 1px solid #E8AAAD;
154 color: #B50007;
155 }
156 .strong-form span.error,
157 .strong-form label.error {
158 color: #B50007;
159 }
160 .strong-form .field-wrap {
161 display: block;
162 font-weight: 400;
163 border: 1px solid transparent;
164 }
165 .strong-form .field-wrap.error {
166 background: #F9E5E6;
167 border: 1px solid #E8AAAD;
168 color: #B50007;
169 }
170 .strong-form .field-wrap.error .checkbox-label {
171 outline: none;
172 }
173 .strong-form .field-wrap.error .strong-rating {
174 outline-color: #E8AAAD;
175 }
176 .strong-form .field-wrap input + label + .required.symbol:after {
177 margin-left: 0;
178 }
179