始终显示图像标题

我正在尝试清理图片的.meta,使它们更整洁并始终显示;我在所有方面都成功了,除了让标题始终显示。

这是我目前为止所做的,只有在鼠标悬停在图片上时才有效:

使用此 CSS:

.meta .informations {
    display: none;
}

.meta {
    background: rgba(0, 0, 0, 0);
    color: white;
    justify-content: center;
    position: relative;
}

.discourse-no-touch a.lightbox:hover {
    box-shadow: none;
}

.meta .d-icon {
    display: none;
}

.meta .filename {
    white-space: normal;
}

编辑:我解决了长标题换行的问题,并更新了代码,供其他想要这样做的人参考。