PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 7.1
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v7.1
7.2.1 7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 6.0.5 All 36 releases
mlsimport / admin / css / mlsimport-elementor-editor.css

mlsimport-elementor-editor.css in MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings 7.1, at admin/css/mlsimport-elementor-editor.css

43 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 * Elementor editor-only styling for MLSImport widget tiles.
3 *
4 * Every widget's get_icon() returns "mlsimport-note eicon-*": the eicon draws the
5 * glyph, .mlsimport-note stamps an "MLSImport" label across the top of the tile so
6 * our widgets are identifiable at a glance in the panel.
7 */
8
9 /*
10 * Elementor's NUMBER control renders a fixed narrow <input>, so a full price
11 * (e.g. 1500000) is clipped. Controls carrying 'mlsimport-control-wide' (Price min
12 * + Price max on the Property List widget) stretch the input to the full row.
13 */
14 .elementor-control.mlsimport-control-wide .elementor-control-input-wrapper {
15 width: 100%;
16 max-width: 100%;
17 }
18
19 .elementor-control.mlsimport-control-wide .elementor-control-input-wrapper input[type="number"] {
20 width: 100%;
21 }
22
23 i.mlsimport-note {
24 margin-top: 8px;
25 }
26
27 .elementor-element .mlsimport-note:after {
28 content: "MLSImport";
29 position: absolute;
30 top: 0;
31 left: 0;
32 right: auto;
33 z-index: 1;
34 color: #9a9285;
35 background: var(--e-a-bg-default);
36 font-size: 11px;
37 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
38 padding: 2px;
39 border: var(--e-a-border-bold);
40 letter-spacing: 0.05em;
41 border-bottom-right-radius: 2px;
42 }
43