PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 7.2.1
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v7.2.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-customizer-controls.css

mlsimport-customizer-controls.css in MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings 7.2.1, at admin/css/mlsimport-customizer-controls.css

65 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 * mlsimport-customizer-controls.css
3 * ---------------------------------------------------------------------------
4 * Styles the custom "arrange sections" control shown in the WordPress
5 * Customizer for the standalone (theme-agnostic) design settings. The control
6 * renders active/inactive lists of page sections with per-item move/toggle
7 * actions so the user can order and enable/disable them.
8 */
9
10 /* MLSImport Customizer "arrange sections" control. */
11 /* Small uppercase group heading above each arranger list. */
12 .mlsimport-arranger__heading {
13 margin: 12px 0 4px;
14 font-weight: 600;
15 text-transform: uppercase;
16 font-size: 11px;
17 letter-spacing: .04em;
18 color: #6b6358;
19 }
20 /* Bordered container holding the sortable section items. */
21 .mlsimport-arranger__list {
22 margin: 0 0 8px;
23 padding: 0;
24 list-style: none;
25 border: 1px solid rgba( 28, 25, 23, 0.12 );
26 border-radius: 10px;
27 min-height: 12px;
28 background: #fff;
29 }
30 /* Greyed background for the list of inactive/disabled sections. */
31 .mlsimport-arranger__inactive {
32 background: #f3efe7;
33 }
34 /* One section row: label on the left, action buttons on the right. */
35 .mlsimport-arranger__item {
36 display: flex;
37 align-items: center;
38 justify-content: space-between;
39 gap: 8px;
40 padding: 6px 8px;
41 border-bottom: 1px solid #f3efe7;
42 font-size: 13px;
43 }
44 /* Drop the divider on the final row. */
45 .mlsimport-arranger__item:last-child {
46 border-bottom: 0;
47 }
48 /* Row action buttons (move up/down, toggle) kept together, no shrink. */
49 .mlsimport-arranger__actions {
50 display: inline-flex;
51 gap: 6px;
52 flex: 0 0 auto;
53 }
54 .mlsimport-arranger__actions .button-link {
55 text-decoration: none;
56 font-size: 14px;
57 line-height: 1;
58 padding: 2px 4px;
59 color: #e85d3c;
60 }
61 /* Bolded move (arrow) button glyphs. */
62 .mlsimport-arranger__move {
63 font-weight: 700;
64 }
65