| 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 |
|