-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathstyle.scss
43 lines (37 loc) · 969 Bytes
/
style.scss
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
.edit-post-manage-blocks-modal {
@include break-small() {
width: 640px;
height: calc(100% - #{ $header-height } - #{ $header-height });
}
}
.edit-post-manage-blocks-modal .components-modal__content {
padding-bottom: 0;
display: flex;
flex-direction: column;
}
.edit-post-manage-blocks-modal .components-modal__header {
flex-shrink: 0;
margin-bottom: 0;
}
.edit-post-manage-blocks-modal__content {
display: flex;
flex-direction: column;
height: 100%;
}
.components-modal__content input[type="search"].edit-post-manage-blocks-modal__search {
display: block;
width: 100%;
margin: $grid-size-large 0;
padding: 11px $grid-size-large;
border-radius: $radius-round-rectangle;
}
.edit-post-manage-blocks-modal__results {
height: 100%;
overflow: auto;
margin-left: #{ -1 * $grid-size-large };
margin-right: #{ -1 * $grid-size-large };
}
.edit-post-manage-blocks-modal__block-type.is-inactive {
@include block-style__disabled();
cursor: pointer;
}