CSS: Fix line break for long key-value strings
`break-all` forces a line break for long strings (https://developer.mozilla.org/en-US/docs/Web/CSS/word-break).
This commit is contained in:
parent
aba60f0c6a
commit
9f49f3dc60
1 changed files with 2 additions and 1 deletions
|
|
@ -22,12 +22,13 @@
|
||||||
|
|
||||||
.mapbox-gl-inspect_property-value {
|
.mapbox-gl-inspect_property-value {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mapbox-gl-inspect_property-name {
|
.mapbox-gl-inspect_property-name {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mapboxgl-ctrl-inspect {
|
.mapboxgl-ctrl-inspect {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue