Merge pull request #613 from HenryZeng-Zero/main
完全修复:侧边栏内容设置项中,去除 文章页 和 首页 配置中的profile项会导致界面显示异常
This commit is contained in:
commit
8fa9ff8b83
|
@ -2218,6 +2218,10 @@ blockquote footer cite::before {
|
|||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
#aside-content :only-child > :first-child {
|
||||
margin-top: 0rem;
|
||||
}
|
||||
|
||||
#aside-content .card-more-btn {
|
||||
float: right;
|
||||
color: inherit;
|
||||
|
@ -6803,9 +6807,20 @@ body[data-type=music] .page #nav #site-name span{
|
|||
}
|
||||
}
|
||||
|
||||
/* 保证无card-widget时自动和左侧元素对齐 */
|
||||
@media screen and (min-width: 1300px) {
|
||||
#aside-content .sticky_layout {
|
||||
margin-top: 1rem;
|
||||
margin-top: 0rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* 用 :has() 伪类判断card-widget是否存在,进行属性覆写 */
|
||||
/* 若存在,表明需要和card-widget保持距离 */
|
||||
@media screen and (min-width: 1300px) {
|
||||
#aside-content:has(+.card-widget) {
|
||||
#aside-content .sticky_layout {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6814,10 +6829,6 @@ body[data-type=music] .page #nav #site-name span{
|
|||
transition: top 0s;
|
||||
}
|
||||
|
||||
#aside-content .sticky_layout .card-widget:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#aside-content .card-widget:hover {
|
||||
box-shadow: var(--heo-shadow-border);
|
||||
}
|
||||
|
@ -9890,8 +9901,13 @@ div#author-info__sayhi:hover {
|
|||
transform: scale(1.1)
|
||||
}
|
||||
|
||||
/* 作者卡片背景 */
|
||||
/* 选中第一个卡片,与左侧元素对齐 */
|
||||
#aside-content > .card-widget:first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
/* 作者卡片背景 */
|
||||
#aside-content > .card-widget.card-info {
|
||||
transition: 0.3s;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
|
|
Loading…
Reference in New Issue