PluginProbe
Booking Calendar / 11.2.1
Booking Calendar v11.2.1
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 10.11.3 10.11.4 All 201 releases
booking / css / wpbc_time-selector.css

wpbc_time-selector.css in Booking Calendar 11.2.1, at css/wpbc_time-selector.css

59 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*FixIn: 8.7.11.10 */
2 /**********************************************************************************************************************/
3 /* Group */
4 .wpbc_times_selector {
5 display: flex;
6 flex-flow: row wrap;
7 justify-content: flex-start;
8 align-items: flex-start;
9 white-space: nowrap;
10 word-wrap: normal;
11 width: 100%;
12 gap: 15px;
13 }
14 /* Button */
15 .wpbc_times_selector div {
16 margin: 7px 0;
17 padding: 0.1em 1.5em;
18 cursor: pointer;
19 width: auto;
20 line-height: 2;
21
22 flex: 1 1 auto;
23 max-width: Min(250px, 100%);
24 white-space: wrap;
25 word-break: normal;
26
27 }
28 .wpbc_times_selector div.wpbc_time_picker_disabled:hover,
29 .wpbc_times_selector div.wpbc_time_picker_disabled {
30 cursor: not-allowed;
31 color:#fff;
32 background: #dc3400;
33 }
34
35 @media (max-width: 400px) {
36 .wpbc_times_selector div {
37 min-width: Min(200px, 100%);
38 white-space: normal;
39 }
40 }
41
42 /* All times booked message *******************************************************************************************/
43 .wpbc_times_selector span.wpbc_no_time_pickers {
44 /*flex: 1 0 auto;*/
45 /*padding: 5px 0;*/
46 /*width: 130px;*/
47 flex: 1 0 130px;
48 padding: 5px 10px;
49 width: auto;
50
51 margin: 10px 15px 0 0;
52 text-align: center;
53 color: #959595;
54 font-weight: 400;
55 background: #f6f6f6;
56 border: 1px solid #dcdcdc;
57 border-radius: 5px;
58 cursor: pointer;
59 }