Fix #1308
The star indicating a dirty map uses more than 5px (depending on font-size). So the additional star switched from showing the map name to ellipses-overflow in px-implementation. 1ch is the with of the digit '0'.
This commit is contained in:
parent
cae52c905a
commit
ccda9aca3f
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ ul.photon-autocomplete {
|
||||||
a.map-name:after {
|
a.map-name:after {
|
||||||
content: '\00a0';
|
content: '\00a0';
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
width: 5px;
|
width: 1ch;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.umap-is-dirty a.map-name:after {
|
.umap-is-dirty a.map-name:after {
|
||||||
|
|
Loading…
Reference in a new issue