打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
无编辑摘要
无编辑摘要
第34行: 第34行:
}
}


/* 评论核心样式(加宽卡片+完整覆盖) */
/* 评论核心样式(卡片扩容+完全覆盖按钮) */
/* 1. 评论区整体卡片:加宽+左右内边距增加 */
/* 1. 评论区整体卡片:加宽+上下内边距扩容 */
.comments-body {
.comments-body {
     margin: 1.5rem auto; /* 水平居中 */
     margin: 1.5rem auto; /* 水平居中 */
     padding: 15px 25px; /* 左右内边距从15px增至25px,避免文字贴边 */
     padding: 20px 25px; /* 上下内边距从15px增至20px,左右25px防文字贴边 */
     width: calc(100% - 50px) !important; /* 宽度=页面宽-50px,比默认宽10px */
     width: calc(100% - 50px) !important; /* 加宽宽度,比默认宽10px */
     max-width: 1200px; /* 最大宽度限制,避免大屏过宽 */
     max-width: 1200px; /* 大屏最大宽度限制 */
     background: var(--color-surface-1);
     background: var(--color-surface-1);
     border-radius: 15px !important;
     border-radius: 15px !important;
     box-shadow: var(--homecard-box-shadow) !important;
     box-shadow: var(--homecard-box-shadow) !important;
    box-sizing: border-box !important; /* 确保padding不撑大卡片,内容不溢出 */
}
}


/* 2. 单条评论卡片:加宽+底部内边距确保覆盖按钮 */
/* 2. 单条评论卡片:重点扩容,确保按钮完全覆盖 */
.c-item.full {
.c-item.full {
     margin-top: 1rem;
     margin-top: 1.2rem;
     padding: 15px 20px 20px; /* 底部内边距20px,容纳按钮 */
     padding: 18px 20px 25px; /* 上下内边距增加(底部25px留足按钮空间),左右20px */
     width: 100% !important; /* 占满父容器宽度 */
     width: 100% !important; /* 占满父容器 */
     background: var(--color-surface-1) !important;
     background: var(--color-surface-1) !important; /* 强制背景色,避免断层 */
     border-radius: 15px !important;
     border-radius: 15px !important;
     box-shadow: var(--homecard-box-shadow) !important;
     box-shadow: var(--homecard-box-shadow) !important;
     border: none !important;
     border: none !important;
    box-sizing: border-box !important;
}
}


/* 3. 评论输入框:加宽适配卡片 */
/* 3. 评论输入框:适配扩容后的卡片 */
.comments-body textarea#comment {
.comments-body textarea#comment {
     padding: 12px 15px;
     padding: 12px 15px;
     width: 100% !important; /* 占满卡片宽度 */
     width: 100% !important;
     border-radius: 15px !important;
     border-radius: 15px !important;
     border: 1px solid var(--border-color-base) !important;
     border: 1px solid var(--border-color-base) !important;
     background: var(--color-surface-0) !important;
     background: var(--color-surface-0) !important;
     box-sizing: border-box !important; /* 避免padding导致溢出 */
     box-sizing: border-box !important;
}
}


/* 4. 排序下拉框:加宽适配 */
/* 4. 排序下拉框:适配风格 */
.c-order-select select {
.c-order-select select {
     padding: 5px 15px;
     padding: 5px 15px;
第76行: 第78行:


/* 5. 所有按钮样式(#3366cc蓝色,原位) */
/* 5. 所有按钮样式(#3366cc蓝色,原位) */
/* 提交/预览按钮 */
.c-form-button .site-button {
.c-form-button .site-button {
     padding: 8px 20px;
     padding: 8px 20px;
第84行: 第85行:
     border: none !important;
     border: none !important;
}
}
.c-form-button .site-button:hover {
.c-form-button .site-button:hover { background: #2855aa !important; }
    background: #2855aa !important;
}


/* 自动刷新按钮 */
.c-spy a {
.c-spy a {
     display: inline-block !important;
     display: inline-block !important;
第99行: 第97行:
     font-weight: 600 !important;
     font-weight: 600 !important;
}
}
.c-spy a:hover {
.c-spy a:hover { background: #2855aa !important; }
    background: #2855aa !important;
}


/* 固定链接+回复按钮 */
.c-actions a[rel="nofollow"]:not(.comments-reply-to),
.c-actions a[rel="nofollow"]:not(.comments-reply-to),
.c-actions a.comments-reply-to {
.c-actions a.comments-reply-to {
第115行: 第110行:
     font-weight: 600 !important;
     font-weight: 600 !important;
}
}
.c-actions a[rel="nofollow"]:not(.comments-reply-to) {
.c-actions a[rel="nofollow"]:not(.comments-reply-to) { margin-right: 8px !important; }
    margin-right: 8px !important;
}
.c-actions a[rel="nofollow"]:not(.comments-reply-to):hover,
.c-actions a[rel="nofollow"]:not(.comments-reply-to):hover,
.c-actions a.comments-reply-to:hover {
.c-actions a.comments-reply-to:hover { background: #2855aa !important; }
    background: #2855aa !important;
}


/* 6. 评论头像(默认大小+15px圆角) */
/* 6. 评论头像(默认大小+15px圆角) */
第131行: 第122行:


/* 7. 暗色模式适配 */
/* 7. 暗色模式适配 */
html.skin-citizen-dark .c-item.full {
html.skin-citizen-dark .c-item.full { background: #1e1e2e !important; }
    background: #1e1e2e !important;
}
html.skin-citizen-dark .c-spy a,
html.skin-citizen-dark .c-spy a,
html.skin-citizen-dark .c-actions a[rel="nofollow"]:not(.comments-reply-to),
html.skin-citizen-dark .c-actions a[rel="nofollow"]:not(.comments-reply-to),
第146行: 第135行:
     background: #3a6bc8 !important;
     background: #3a6bc8 !important;
}
}
html.skin-citizen-dark .c-avatar img {
html.skin-citizen-dark .c-avatar img { border-color: #1e1e2e !important; }
    border-color: #1e1e2e !important;
}

2025年8月31日 (日) 21:32的版本

/* 由 御坂秋生 于 2024-02-09 14:00 开始编写,参考 StarCitizen Wiki、HydCraft Wiki 排版及 CSS 样式 */
/* 首页核心样式 */
.page-首页 .mw-body-header,
.page-首页 .previewnote,
.page-首页 .page-info {
	display: none;
}

.page-首页 .header-image {
	background-image: linear-gradient(to top,var(--color-surface-0),transparent 150%),url(https://wiki.hokubu.cn/w/images/3/3d/Xujiang2.jpeg);
	background-size: cover;
	background-position: top center;
	height: 46vh;
	margin-bottom: -42vh;
}

@media (max-width: 720px) {
	.page-首页 .header-image {
		background-position: top;
		height: 36vh;
		margin-bottom: -32vh;
	}
}

.skin-citizen-dark .adaptive-img img {
	filter: invert(1)!important;
}

/* 全局变量 */
:root {
	--box-shadow-plist: 0 3px 10px rgb(0 0 0 / 4%), 0 -3px 10px rgb(0 0 0 / 4%);
	--homecard-box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.0575);
	--box-shadow-cardhover: 0 10px 20px rgba(0,0,0,0.0475), 0 6px 6px rgba(0,0,0,0.0575);
}

/* 评论核心样式(卡片扩容+完全覆盖按钮) */
/* 1. 评论区整体卡片:加宽+上下内边距扩容 */
.comments-body {
    margin: 1.5rem auto; /* 水平居中 */
    padding: 20px 25px; /* 上下内边距从15px增至20px,左右25px防文字贴边 */
    width: calc(100% - 50px) !important; /* 加宽宽度,比默认宽10px */
    max-width: 1200px; /* 大屏最大宽度限制 */
    background: var(--color-surface-1);
    border-radius: 15px !important;
    box-shadow: var(--homecard-box-shadow) !important;
    box-sizing: border-box !important; /* 确保padding不撑大卡片,内容不溢出 */
}

/* 2. 单条评论卡片:重点扩容,确保按钮完全覆盖 */
.c-item.full {
    margin-top: 1.2rem;
    padding: 18px 20px 25px; /* 上下内边距增加(底部25px留足按钮空间),左右20px */
    width: 100% !important; /* 占满父容器 */
    background: var(--color-surface-1) !important; /* 强制背景色,避免断层 */
    border-radius: 15px !important;
    box-shadow: var(--homecard-box-shadow) !important;
    border: none !important;
    box-sizing: border-box !important;
}

/* 3. 评论输入框:适配扩容后的卡片 */
.comments-body textarea#comment {
    padding: 12px 15px;
    width: 100% !important;
    border-radius: 15px !important;
    border: 1px solid var(--border-color-base) !important;
    background: var(--color-surface-0) !important;
    box-sizing: border-box !important;
}

/* 4. 排序下拉框:适配风格 */
.c-order-select select {
    padding: 5px 15px;
    border-radius: 15px !important;
    border: 1px solid var(--border-color-base) !important;
    background: var(--color-surface-0) !important;
}

/* 5. 所有按钮样式(#3366cc蓝色,原位) */
.c-form-button .site-button {
    padding: 8px 20px;
    border-radius: 15px !important;
    background: #3366cc !important;
    color: #fff !important;
    border: none !important;
}
.c-form-button .site-button:hover { background: #2855aa !important; }

.c-spy a {
    display: inline-block !important;
    padding: 8px 16px !important;
    background: #3366cc !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: var(--homecard-box-shadow) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.c-spy a:hover { background: #2855aa !important; }

.c-actions a[rel="nofollow"]:not(.comments-reply-to),
.c-actions a.comments-reply-to {
    display: inline-block !important;
    padding: 8px 16px !important;
    background: #3366cc !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: var(--homecard-box-shadow) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.c-actions a[rel="nofollow"]:not(.comments-reply-to) { margin-right: 8px !important; }
.c-actions a[rel="nofollow"]:not(.comments-reply-to):hover,
.c-actions a.comments-reply-to:hover { background: #2855aa !important; }

/* 6. 评论头像(默认大小+15px圆角) */
.c-avatar img {
    border-radius: 15px !important;
    box-shadow: var(--homecard-box-shadow) !important;
    border: 2px solid var(--color-surface-0) !important;
}

/* 7. 暗色模式适配 */
html.skin-citizen-dark .c-item.full { background: #1e1e2e !important; }
html.skin-citizen-dark .c-spy a,
html.skin-citizen-dark .c-actions a[rel="nofollow"]:not(.comments-reply-to),
html.skin-citizen-dark .c-actions a.comments-reply-to,
html.skin-citizen-dark .c-form-button .site-button {
    background: #4a7edb !important;
}
html.skin-citizen-dark .c-spy a:hover,
html.skin-citizen-dark .c-actions a[rel="nofollow"]:not(.comments-reply-to):hover,
html.skin-citizen-dark .c-actions a.comments-reply-to:hover,
html.skin-citizen-dark .c-form-button .site-button:hover {
    background: #3a6bc8 !important;
}
html.skin-citizen-dark .c-avatar img { border-color: #1e1e2e !important; }