-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathstyle.scss
36 lines (33 loc) · 984 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
.patterns-menu-items__convert-modal {
z-index: z-index(".patterns-menu-items__convert-modal");
// Fix the modal width to prevent added categories from stretching the modal.
[role="dialog"] > [role="document"] {
width: 350px;
}
.patterns-menu-items__convert-modal-categories {
width: 100%;
position: relative;
min-height: 40px;
}
.components-form-token-field__suggestions-list {
position: absolute;
box-sizing: border-box;
z-index: 1;
background-color: $white;
// Account for the border width of the token field.
width: calc(100% + 2px);
left: -1px;
min-width: initial;
border: 1px solid var(--wp-admin-theme-color);
border-top: none;
box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
}
.patterns-create-modal__name-input input[type="text"] {
// Match the minimal height of the category selector.
min-height: 40px;
// Override the default 1px margin-x.
margin: 0;
}