PluginProbe
Happyforms – Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms / trunk
Happyforms – Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms vtrunk
1.26.15 trunk 1.0 1.10.0 1.11.0 1.11.1 1.12.0 1.12.1 1.12.10 1.12.11 1.12.12 1.12.2 1.12.3 1.12.4 1.12.5 1.12.6 1.12.7 1.12.8 1.12.9 1.13.0 1.13.1 1.13.10 1.13.11 1.13.12 1.13.2 All 194 releases
happyforms / core / assets / css / preview.css

preview.css in Happyforms – Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms trunk, at core/assets/css/preview.css

112 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 body:not(.mce-content-body) {
2 background-color: #fff !important;
3 padding: 40px !important;
4 }
5
6 body::before, body::after {
7 content: '' !important;
8 display: none !important;
9 }
10
11 .happyforms-form {
12 width: 100%;
13 }
14
15 .happyforms-block-editable {
16 position: relative;
17 }
18
19 .customize-partial-edit-shortcut.happyforms-partial-edit-shortcut {
20 display: block !important;
21 position: absolute;
22 top: 0;
23 }
24
25 .notice {
26 margin-bottom: 15px;
27 }
28
29 .notice-success {
30 padding: 1px 12px;
31 border-left: 4px solid #46b450;
32 box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
33 background: #fff;
34 }
35
36 .notice p {
37 margin: 10px 0;
38 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
39 font-size: 13px;
40 color: #444;
41 }
42
43 .notice a {
44 color: #0073aa;
45 text-decoration: underline;
46 transition: color 0.05s ease-in-out;
47 cursor: auto;
48 }
49
50 .notice a:hover {
51 color: #00a0d2;
52 }
53
54 .happyforms-preview-badge {
55 padding-left: 10px;
56 font-weight: 400;
57 font-size: 16px;
58 }
59
60 .happyforms-part.unloading, .happyforms-block-editable--partial.unloading {
61 opacity: 0.25;
62 cursor: progress !important;
63 -webkit-transition: opacity 0.5s;
64 transition: opacity 0.5s;
65 }
66
67 .happyforms-part.highlighted {
68 outline: 1px solid lightblue;
69 }
70
71 a.happyforms-ask-link,
72 a.happyforms-ask-link.customize-unpreviewable {
73 cursor: pointer !important;
74 }
75
76 .happyforms-form__part.happyforms-part--recaptcha {
77 display: none;
78 }
79
80 .happyforms-part--width-auto + .happyforms-part--recaptcha {
81 display: none !important;
82 }
83
84 .preview-hidden {
85 display: none !important;
86 }
87
88 a.disabled {
89 pointer-events: none;
90 cursor: not-allowed;
91 }
92
93 .happyforms-part__label span.label:empty:before,
94 .happyforms-table__row span.happyforms-table__row-label:empty:before,
95 .happyforms-table__cell--column-title span:empty:before,
96 .option-label span.label:empty:before,
97 span.happyforms-form-progress__step-title:empty:before,
98 .happyforms-custom-select-dropdown .happyforms-dropdown-item:empty:before {
99 content: "Add label";
100 opacity: .5;
101 }
102
103 .happyforms-part--layout_title h1.happyforms-layout-title:empty:before,
104 .happyforms-part--layout_title h2.happyforms-layout-title:empty:before,
105 .happyforms-part--layout_title h3.happyforms-layout-title:empty:before,
106 .happyforms-part--layout_title h4.happyforms-layout-title:empty:before,
107 .happyforms-part--layout_title h5.happyforms-layout-title:empty:before,
108 .happyforms-part--layout_title h6.happyforms-layout-title:empty:before {
109 content: "Heading";
110 opacity: .5;
111 }
112