PluginProbe
Booking Calendar / 11.2
Booking Calendar v11.2
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / includes / __css / admin / settings / ui__right_palette.css

ui__right_palette.css in Booking Calendar 11.2, at includes/__css/admin/settings/ui__right_palette.css

122 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Shared right palette styles for Booking Calendar admin pages.
3 */
4
5 .wpbc_rightbar_palette {
6 --wpbc-palette-accent: var(--wpbc-ts-red, #df202b);
7 --wpbc-palette-bg: var(--wpbc-ts-bg, #fff);
8 --wpbc-palette-bg-soft: var(--wpbc-ts-bg-soft, #f6f7f7);
9 --wpbc-palette-border: var(--wpbc-ts-border, #dfe4ea);
10 --wpbc-palette-muted: var(--wpbc-ts-muted, #646970);
11 --wpbc-palette-radius: var(--wpbc-ts-radius, 6px);
12 --wpbc-palette-text: var(--wpbc-ts-text, #1d2327);
13 }
14 .wpbc_ui_el__vert_right_bar__content .wpbc_ui_el__expand_colapse_btns {
15 display: none;
16 }
17
18 .wpbc_rightbar_palette .wpbc_bfb__inspector__head {
19 border-bottom: 1px solid var(--wpbc-palette-border);
20 margin: 0;
21 padding: 0 10px 10px 10px;
22 }
23
24 .wpbc_rightbar_palette .wpbc_bfb__inspector__head .header_container {
25 padding: 0;
26 }
27
28 .wpbc_rightbar_palette .wpbc_bfb__inspector__head .title {
29 color: var(--wpbc-palette-text);
30 font-size: 14px;
31 font-weight: 700;
32 letter-spacing: 0;
33 line-height: 1.74;
34 margin: 0;
35 text-transform: uppercase;
36 }
37
38 .wpbc_rightbar_palette .wpbc_bfb__inspector__head .desc {
39 color: var(--wpbc-palette-muted);
40 font-size: 12px;
41 line-height: 1.75;
42 margin: 5px 0 0;
43 }
44
45 .wpbc_rightbar_palette .wpbc_bfb__inspector__body,
46 .wpbc_rightbar_palette .wpbc_ts_inspector_body {
47 padding: 0;
48 }
49
50 .wpbc_rightbar_palette__row,
51 .wpbc_rightbar_palette .wpbc_ts_inspector_row {
52 align-items: flex-start;
53 display: flex;
54 flex-flow: row wrap;
55 gap: 8px;
56 margin-bottom: 14px;
57 }
58
59 .wpbc_rightbar_palette__row.row__bordered,
60 .wpbc_rightbar_palette .wpbc_ts_inspector_row.row__bordered {
61 background: var(--wpbc-palette-bg-soft);
62 border: 1px solid var(--wpbc-palette-border);
63 border-radius: var(--wpbc-palette-radius);
64 padding: 10px;
65 }
66
67 .wpbc_rightbar_palette__label,
68 .wpbc_rightbar_palette__value,
69 .wpbc_rightbar_palette .wpbc_ts_inspector_label,
70 .wpbc_rightbar_palette .wpbc_ts_inspector_value {
71 flex: 1 1 100%;
72 }
73
74 .wpbc_rightbar_palette__label,
75 .wpbc_rightbar_palette .wpbc_ts_inspector_label {
76 color: var(--wpbc-palette-text);
77 font-weight: 600;
78 }
79
80 .wpbc_rightbar_palette__value,
81 .wpbc_rightbar_palette .wpbc_ts_inspector_value {
82 color: var(--wpbc-palette-muted);
83 line-height: 1.5;
84 }
85
86 .wpbc_rightbar_palette__select,
87 .wpbc_rightbar_palette .wpbc_ts_inspector_select {
88 min-height: 36px;
89 width: 100%;
90 }
91
92 .wpbc_rightbar_palette__segmented,
93 .wpbc_rightbar_palette .wpbc_ts_segmented {
94 background: var(--wpbc-palette-bg);
95 border: 1px solid var(--wpbc-palette-border);
96 border-radius: var(--wpbc-palette-radius);
97 display: flex;
98 margin-bottom: 12px;
99 overflow: hidden;
100 }
101
102 .wpbc_rightbar_palette__segmented a,
103 .wpbc_rightbar_palette .wpbc_ts_segmented a {
104 border-right: 1px solid var(--wpbc-palette-border);
105 color: var(--wpbc-palette-text);
106 flex: 1 1 0;
107 padding: 9px 12px;
108 text-align: center;
109 text-decoration: none;
110 }
111
112 .wpbc_rightbar_palette__segmented a:last-child,
113 .wpbc_rightbar_palette .wpbc_ts_segmented a:last-child {
114 border-right: 0;
115 }
116
117 .wpbc_rightbar_palette__segmented a.is-active,
118 .wpbc_rightbar_palette .wpbc_ts_segmented a.is-active {
119 background: var(--wpbc-palette-accent);
120 color: #fff;
121 }
122