Quiq/registry-ui

css: tag page TD width is burst

yurenchen000 opened this issue · 3 comments

the field of moby.buildkit.buildinfo.v1 in Image History
has a long (but without space) line base64, which burst the cell width.

os: ubuntu
browser: chrome 113, firefox 113

docker_reg_ui-

a css patch to fix it:

/* td: long line wrap */
td {
    word-break: break-word;
}

other css made table more readable (maybe)

/* col 0 style */
td:nth-child(1) {
    color: #838383;
    text-align: right;
}

//after
docker_ui_after-

//before
docker_ui_before-

Thank you!