-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheditor.css
More file actions
33 lines (29 loc) · 694 Bytes
/
editor.css
File metadata and controls
33 lines (29 loc) · 694 Bytes
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
.prose {
:not(:where($(where-not))) {
/**
* Without Preflight, Tailwind doesn't apply a default border
* style of `solid` to all elements, so the border doesn't
* appear in the editor without these additions.
*/
&:where(blockquote) {
border-left-style: solid;
}
&:where(tbody tr) {
border-bottom-style: solid;
}
}
.wp-block-table td,
.wp-block-table th {
border: 1px dashed rgb(0 0 0 / 0.075);
border-top: 0;
border-bottom: 0;
}
.wp-block-table td:first-child,
.wp-block-table th:first-child {
border-left: 0;
}
.wp-block-table td:last-child,
.wp-block-table th:last-child {
border-right: 0;
}
}