Skip to content

Commit 3271f35

Browse files
committed
Break overflowing attribute names and values
1 parent 2f45446 commit 3271f35

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

html-api-debugger/readme.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Please file issues and pull requests on the [GitHub repository](https://github.c
1616
== Changelog ==
1717

1818
= 2.3 =
19+
* Inline tree copy buttons.
20+
* Add line breaks to overflowing attribute names and values.
1921

2022
= 2.2 =
2123
* Drop support for WordPress 6.6.

html-api-debugger/style.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
margin: 0;
8383
outline: 1px dotted #111;
8484
vertical-align: top;
85-
word-break: break-all;
8685
text-wrap: auto;
8786
text-wrap: pretty;
87+
overflow-wrap: break-word;
8888
}
8989

9090
.mutated {
@@ -171,11 +171,19 @@
171171
.t2 .name {
172172
color: black;
173173
font-weight: bold;
174+
175+
text-wrap: auto;
176+
text-wrap: pretty;
177+
overflow-wrap: break-word;
174178
}
175179

176180
.t2 .value {
177181
color: blue;
178182
font-weight: normal;
183+
184+
text-wrap: auto;
185+
text-wrap: pretty;
186+
overflow-wrap: break-word;
179187
}
180188

181189
.t3 code,

0 commit comments

Comments
 (0)