mythsman / hexo-douban

:cd: a Hexo plugin that helps you generate content for Douban books, movies, music, and games.
MIT License
446 stars 57 forks source link

idouban-picture 图片显示溢出 #175

Closed brycezhang closed 4 weeks ago

brycezhang commented 4 weeks ago

node 版本: 22.0.0

hexo 版本: 7.2.0

hexo-douban 版本: 2.3.3

问题描述: idouban-picture img 没有设置高度限制,会出现显示溢出的问题,我临时手动添加样式控制了一下,不过base64的样式还是需要改一下。

iShot_2024-06-06_13 49 24
.idouban-picture img {
    max-width: 100%;
}

idouban-picture img 应该设置一个最大高度,不能超过 idouban-itemmin-height-2*padding,也就是130px。

.idouban-item {
    clear: both;
    border-bottom: 1px solid #ddd;
    min-height: 150px;
    padding: 10px 0;
    position: relative;
}
mythsman commented 4 weeks ago

试下 v2.3.5

brycezhang commented 4 weeks ago

可以了