Monikas
(JustMonika)
473
いいえ!
はい!
カテゴリタイトルの画像を以前の外観に戻す
/* =========================================================
🖼️ 分类标题图片显示优化(Category Heading Logo Fix)
解除 Discourse 默认 aspect-ratio 限制,显示原图比例
Fixes Discourse category heading logo aspect ratio limits
========================================================= */
/*
解除分类标题图片比例限制,让图片以原尺寸显示
Remove aspect ratio restriction so the image displays in its true size
*/
.category-heading__logo.aspect-image {
aspect-ratio: auto !important; /* 移除固定宽高比 / Remove fixed aspect ratio */
width: auto !important; /* 自动宽度 / Auto width */
height: auto !important; /* 自动高度 / Auto height */
display: inline-block !important; /* 内联块显示 / Inline-block display */
overflow: visible !important; /* 避免被裁剪 / Prevent cropping */
}
/*
让图片保持原始比例显示
Ensure the image keeps its original aspect ratio
*/
.category-heading__logo img {
width: 250px !important; /* 原图宽度(可修改) / Original image width (adjustable) */
height: 120px !important; /* 原图高度(可修改) / Original image height (adjustable) */
object-fit: contain !important; /* 保持完整比例不裁剪 / Maintain full ratio without cropping */
border-radius: 6px; /* 可选圆角效果 / Optional rounded corners */
box-shadow: 0 0 4px rgba(0,0,0,0.4); /* 可选阴影效果 / Optional shadow for better visual depth */
}
「いいね!」 1