Ghost 主题扩展支持:
- 全局横幅的高度、宽度和图片宽度
- 谁在线插件
- 现代分类+群组框(用于 Air 主题)GitHub 链接
- 首次回复者 Customization > Theme component
// 全局横幅
#banner {
height: 350px !important;
max-height: 400px;
width: 90%;
// max-width: unset;
}
#banner img {
max-width: 100%;
}
// 谁在线自定义
.discovery-list-container-top-outlet.online_users_widget {
display: flex;
padding-top: 0.40em;
padding-bottom: 0.05em;
background-color: var(--secondary);
border: 1.0px solid cyan;
border-radius: 3.75px;
// border: 2.0px solid rgba(var(--primary-rgb), 0.2);
margin-bottom: 0.75em;
}
// 现代分类+群组框
.category-box {
padding: 1.75px;
border: 0.75px solid lightgreen!important;
border-radius: 2.75px!important;
}
// 首次回复者
.first-replier {
&.--image {
.d-icon {
color: cyan!important;
}
}
}
全局横幅与谁在线
- 谁在线插件添加了绿色边框
现代分类+群组框
- 角是方形而不是圆角,并在分类周围添加了细微的绿色边框
首次回复者主题组件
- 如果使用多个主题覆盖,图标将变为青色


