| 1 |
/** |
| 2 |
* #.# Editor Styles |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
.frm-block-intro-screen .frm-block-intro-content { |
| 7 |
display: -ms-flexbox; |
| 8 |
display: flex; |
| 9 |
-ms-flex-direction: column; |
| 10 |
flex-direction: column; |
| 11 |
-ms-flex-pack: center; |
| 12 |
justify-content: center; |
| 13 |
-ms-flex-align: center; |
| 14 |
align-items: center; |
| 15 |
text-align: center; |
| 16 |
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif; |
| 17 |
} |
| 18 |
|
| 19 |
.frm-block-intro-content .frm-block-title { |
| 20 |
margin-bottom: 10px; |
| 21 |
font-size: 20px; |
| 22 |
color: #535353; |
| 23 |
} |
| 24 |
|
| 25 |
.frm-block-intro-content svg { |
| 26 |
margin-top: 32px; |
| 27 |
margin-bottom: 12px; |
| 28 |
color: #4d4d4d; |
| 29 |
} |
| 30 |
|
| 31 |
.frm-block-intro-content select + span svg { |
| 32 |
margin: unset; |
| 33 |
} |
| 34 |
|
| 35 |
.editor-styles-wrapper h2.frm-block-title { |
| 36 |
color: #4d4d4d; |
| 37 |
font-weight: 500; |
| 38 |
font-size: 1.3em; |
| 39 |
} |
| 40 |
|
| 41 |
.frm-block-intro-content .cls-1 { |
| 42 |
fill: #4d4d4d; |
| 43 |
} |
| 44 |
|
| 45 |
.frm-block-intro-content .cls-1.orange { |
| 46 |
fill: #f05a24; |
| 47 |
} |
| 48 |
|
| 49 |
.frm-block-intro-content .dashicons-feedback, |
| 50 |
.frm-block-intro-content .frm_white_label_icon { |
| 51 |
width:120px; |
| 52 |
height:120px; |
| 53 |
} |
| 54 |
.frm-block-intro-content .dashicons-feedback:before, |
| 55 |
.frm-block-intro-content .frm_white_label_icon:before { |
| 56 |
font-size:120px; |
| 57 |
} |
| 58 |
|
| 59 |
.frm-block-selector-screen { |
| 60 |
margin-bottom: 15px; |
| 61 |
} |
| 62 |
|
| 63 |
.frm-view-filter-component p { |
| 64 |
margin-left: 28px; |
| 65 |
} |
| 66 |
|
| 67 |
.frm-view-filter-component label { |
| 68 |
font-weight: 600; |
| 69 |
} |
| 70 |
|
| 71 |
.components-panel__row.frm-row-small-top-margin { |
| 72 |
margin-top: 5px; |
| 73 |
} |
| 74 |
|
| 75 |
.frm-admin-loading { |
| 76 |
width: 200px; |
| 77 |
} |
| 78 |
|
| 79 |
.editor-styles-wrapper .frm_repeat_buttons i { |
| 80 |
/* Avoid font-style: italic conflicts. The +/- icon should not be italic */ |
| 81 |
font-style: unset; |
| 82 |
} |
| 83 |
|
| 84 |
.editor-styles-wrapper .wp-block-post-content .with_frm_style .frm_repeat_buttons .frm_button { |
| 85 |
/* Prevent blue anchor text in Add/Remove buttons */ |
| 86 |
color: var(--submit-text-color) !important; |
| 87 |
/* Ensure consistent background color on focus for Add/Remove buttons */ |
| 88 |
background: var(--submit-bg-color) !important; |
| 89 |
} |
| 90 |
|
| 91 |
/* Disables all interactions with form fields */ |
| 92 |
.editor-styles-wrapper .frm_form_fields * { |
| 93 |
pointer-events: none; |
| 94 |
} |
| 95 |
|