PluginProbe ʕ •ᴥ•ʔ
Strong Testimonials / 2.38
Strong Testimonials v2.38
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 / admin / css / admin-form.css
strong-testimonials / admin / css Last commit date
about.css 7 years ago admin-compat.css 7 years ago admin-form.css 7 years ago fields.css 7 years ago form-preview.css 7 years ago number-spinner.css 7 years ago order.css 7 years ago polylang.css 7 years ago post-editor.css 7 years ago views.css 7 years ago wpml.css 7 years ago
admin-form.css
139 lines
1
2 /* Settings tab for Form Notification Email
3 ------------------------------------------------*/
4 .match-height {
5 /* match WordPress - divs with text inputs are taller than ones with radio buttons */
6 margin: 0.25em 0 0.5em !important;
7 }
8 .email-container {
9 display: flex;
10 flex-direction: column;
11 max-width: 900px;
12 }
13 .email-container > div {
14 margin-bottom: 2px;
15 }
16 .email-option-row {
17 display: flex;
18 flex-direction: row;
19 background: #FFF;
20 padding: 0 10px;
21 }
22 .no-padding {
23 padding: 0;
24 }
25 .email-option-row.column {
26 flex-direction: column;
27 }
28 /* row > column 1 */
29 .email-option-desc {
30 flex: 0 0 8%;
31 min-width: 80px;
32 padding: 10px 0;
33 font-weight: 600;
34 }
35 /* row > column 2 */
36 .email-option-inputs {
37 flex: 1 0 auto;
38 flex-direction: column;
39 }
40 .email-option {
41 flex: 0 0 100%;
42 display: flex;
43 flex-direction: row;
44 }
45 .email-option.header {
46 padding: 10px 0;
47 }
48 .email-option.body {
49 padding: 10px 0;
50 }
51 .email-option.footer {
52 padding: 10px 0;
53 }
54 .email-option-first {
55 margin-top: 10px ;
56 }
57 .email-option.single {
58 }
59 .email-option:not(:last-child) {
60 border-bottom: 1px solid #F2F2F2;
61 }
62 .email-option-part { /* 2 columns */
63 flex: 1 0 auto;
64 display: flex;
65 flex-direction: column;
66 }
67 .email-option-part:first-child {
68 flex: 0 1 40%;
69 padding-right: 20px;
70 }
71 .email-option-part input[type="text"],
72 .email-option-part input[type="email"],
73 input.wide {
74 width: 100%;
75 }
76 .email-option-label {
77 padding-left: 3px;
78 }
79 .email-option-fieldset {
80 display: flex;
81 flex-direction: row;
82 }
83 .email-option-fieldset .controls {
84 flex: 0 0 30px;
85 justify-content: center;
86 }
87 .email-option-fieldset .controls input[type="radio"] {
88 margin-top: 2px;
89 }
90 .email-option-fieldset .fields {
91 flex: 1 0 auto;
92 }
93 .email-option-fieldset .controls,
94 .email-option-fieldset .fields {
95 display: flex;
96 height: 30px;
97 align-items: center;
98 }
99
100 /* delete email recipient */
101 .delete-recipient {
102 color: #999;
103 display: inline-block;
104 transition: all 0.2s ease;
105 }
106 .delete-recipient:hover {
107 cursor: pointer;
108 color: #FFF;
109 background: #FF0000;
110 border-radius: 1px;
111 }
112
113 /* message */
114 .email-container textarea {
115 white-space: pre-wrap;
116 width: 100%;
117 }
118
119 /* template tags */
120 .template-tags-help {
121 flex: 2 0 auto;
122 background: #FFFFE0;
123 }
124 .template-tags-help ul {
125 margin: 0;
126 }
127 .template-tags-help .title {
128 background: rgba(0, 0, 0, 0.1);
129 padding: 10px;
130 }
131 .template-tags-help .content {
132 padding: 10px;
133 }
134 .template-tags-help ul li {
135 display: inline-block;
136 cursor: pointer;
137 margin-right: 1em;
138 }
139