Opened 6 years ago
Closed 6 years ago
#4966 closed defect (bug) (fixed)
need some minor fixing
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Component: | WordPress.org Site | Keywords: | has-screenshots needs-design |
| Cc: |
Description
need some minor fixing on https://wordpress.org/gutenberg/
Attachments (2)
Change History (5)
#1
@
6 years ago
There is no "Move to Trash" link on that page.
Edit: It is there, but it has display: none !important on it, so it should not show up at all.
#2
@
6 years ago
The margin problem is due to :
https://wordpress.org/gutenberg/wp-content/themes/pub/gutenberg/style.css?ver=12
Line: 393
ul, ol {
margin: 0 0 1.5em 3em;
}
Since the content of that theme appears to be all Gutenberg driven, we could probably change that to:
ul, ol {
margin: 0;
}
Note: See
TracTickets for help on using
tickets.
need to be like this