Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/static/sass/backend/options/date-picker.scss

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + .ct-date-time-picker-dropdown,
2 + .ct-recurring-scheduling-dropdown {
3 + max-height: 400px;
4 +
5 + .components-datetime__time-wrapper {
6 + gap: 5px;
7 + justify-content: initial;
8 +
9 + > div:is(:empty),
10 + .components-datetime__timezone {
11 + display: none;
12 + }
13 + }
14 + }
15 +
16 +
17 + // range date/time picker dropdown
18 + .ct-date-time-picker-dropdown {
19 +
20 + .ct-start-end-date-switcher {
21 + position: sticky;
22 + top: 0;
23 + z-index: 2;
24 + display: flex;
25 + width: 100%;
26 + padding: 20px;
27 + box-sizing: border-box;
28 + border-bottom: 1px solid #efefef;
29 + background: #fff;
30 +
31 + button {
32 + flex: 1;
33 + justify-content: center;
34 + }
35 + }
36 +
37 + .ct-date-time-picker {
38 + padding: 20px;
39 +
40 + .components-datetime__time {
41 + display: grid;
42 + grid-template-columns: 1fr auto;
43 + gap: 15px;
44 +
45 + > * {
46 + margin: 0;
47 +
48 + &:first-child {
49 + order: 2;
50 + }
51 + }
52 + }
53 + }
54 + }
55 +
56 +
57 + // recurring scheduling dropdown
58 + .ct-recurring-scheduling-dropdown {
59 + display: grid;
60 + grid-template-columns: repeat(2, 1fr);
61 + gap: 20px;
62 + padding: 20px;
63 +
64 + .ct-label {
65 + font-size: 11px;
66 + font-weight: 500;
67 + line-height: 1.4;
68 + text-transform: uppercase;
69 + display: inline-block;
70 + margin-bottom: 10px;
71 + }
72 + }
73 +
74 + .ct-recurring-scheduling-time {
75 +
76 + .components-datetime__time {
77 +
78 + fieldset {
79 + margin-bottom: 30px;
80 +
81 + legend {
82 + display: none;
83 + }
84 +
85 + &:nth-child(2) {
86 + display: none;
87 + }
88 + }
89 + }
90 + }