-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathdialog_content_component.sass
47 lines (38 loc) · 1.26 KB
/
dialog_content_component.sass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
$body-height: 460px
.wp-datepicker-dialog--content
background-color: var(--bgColor-default)
@media screen and (min-width: $breakpoint-sm)
.wp-datepicker-dialog
&--content
max-height: calc(var(--app-height) - 2rem)
width: 600px
overflow: auto
&--body
// We set a fixed height for this dialog zo avoid that it jumps around when the tabs are switched or errors shown
min-height: $body-height
&--content-tab
&--relation-tab
// Height of the body - (navBarHeight + Margins)
height: calc($body-height - 80px)
overflow: auto
@media screen and (max-width: $breakpoint-sm)
.wp-datepicker-dialog
&--UnderlineNav,
&--date-picker-instance
display: none !important
&--body
padding-top: var(--stack-padding-normal)
min-height: unset
width: auto
&--form-block
flex-direction: column !important
align-items: flex-start !important
row-gap: 1rem
// re-implement the scrolling behaviour. Due to the turbo-frame element in between the default Dialog body scrolling does not work
.wp-datepicker-dialog--content
display: flex
flex-direction: column
overflow: auto
.wp-datepicker-dialog--content,
#wp-datepicker-dialog--content
height: inherit