Common.css:修订间差异
来自卡厄思梦境WIKI
无编辑摘要 |
无编辑摘要 |
||
| 第46行: | 第46行: | ||
background-color: #f5f5f5; | background-color: #f5f5f5; | ||
border: 1px solid #ddd; | border: 1px solid #ddd; | ||
border-top: 1px solid #ddd !important; | |||
border-bottom: 1px solid #ddd !important; | |||
border-left: 1px solid #ddd !important; | |||
border-right: 1px solid #ddd !important; | |||
} | } | ||
.czn-list-style:hover { | .czn-list-style:hover { | ||
background-color: #e8e8e8; | background-color: #e8e8e8; | ||
border: 1px solid #ddd !important; | |||
} | } | ||
| 第55行: | 第60行: | ||
background-color: #007bff; | background-color: #007bff; | ||
color: white; | color: white; | ||
border | border: 1px solid #007bff !important; | ||
} | } | ||
.czn-list-style.active:hover { | .czn-list-style.active:hover { | ||
background-color: #0056b3; | background-color: #0056b3; | ||
border | border: 1px solid #0056b3 !important; | ||
} | } | ||
| 第74行: | 第79行: | ||
text-align: center; | text-align: center; | ||
font-size: 14px; | font-size: 14px; | ||
border: none !important; | |||
} | } | ||
| 第91行: | 第97行: | ||
background: transparent; | background: transparent; | ||
padding: 0; | padding: 0; | ||
border: none; | border: none !important; | ||
} | } | ||
| 第117行: | 第123行: | ||
.czn-list-style { | .czn-list-style { | ||
width: 100%; | width: 100%; | ||
border: 1px solid #ddd !important; | |||
} | } | ||
| 第123行: | 第130行: | ||
min-width: auto; | min-width: auto; | ||
font-size: 13px; | font-size: 13px; | ||
border: none !important; | |||
} | } | ||
| 第130行: | 第138行: | ||
} | } | ||
/* 可选的颜色主题 | /* 可选的颜色主题 */ | ||
.czn-list-style.theme-gray.active { | .czn-list-style.theme-gray.active { | ||
background-color: #6c757d; | background-color: #6c757d; | ||
border | border: 1px solid #6c757d !important; | ||
} | } | ||
.czn-list-style.theme-gray.active:hover { | .czn-list-style.theme-gray.active:hover { | ||
background-color: #545b62; | background-color: #545b62; | ||
border | border: 1px solid #545b62 !important; | ||
} | } | ||
.czn-list-style.theme-dark.active { | .czn-list-style.theme-dark.active { | ||
background-color: #343a40; | background-color: #343a40; | ||
border | border: 1px solid #343a40 !important; | ||
} | } | ||
.czn-list-style.theme-dark.active:hover { | .czn-list-style.theme-dark.active:hover { | ||
background-color: #23272b; | background-color: #23272b; | ||
border | border: 1px solid #23272b !important; | ||
} | } | ||
.czn-list-style.theme-light.active { | .czn-list-style.theme-light.active { | ||
background-color: #f8f9fa; | background-color: #f8f9fa; | ||
border | border: 1px solid #f8f9fa !important; | ||
color: #333; | color: #333; | ||
} | } | ||
| 第163行: | 第171行: | ||
.czn-list-style.theme-light.active:hover { | .czn-list-style.theme-light.active:hover { | ||
background-color: #e2e6ea; | background-color: #e2e6ea; | ||
border | border: 1px solid #e2e6ea !important; | ||
} | } | ||
2025年9月21日 (日) 18:46的版本
/* 这里放置的CSS将应用于所有皮肤 */
/* 隐藏通知图标 */
#echo-notifications {
display:none;
}
/* 隐藏底部图标 */
#footer-right-icons {
display:none;
}
/* 标签切换样式 */
.main-line-wrap {
margin: 10px 0;
font-family: Arial, sans-serif;
}
.resp-tabs {
background: transparent;
}
.resp-tabs-list {
list-style: none;
margin: 0;
padding: 0;
background: transparent;
overflow: hidden;
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.resp-tabs-list::after {
content: "";
display: table;
clear: both;
}
.czn-list-style {
margin: 0;
padding: 0;
cursor: pointer;
transition: all 0.2s ease;
border-radius: 4px;
background-color: #f5f5f5;
border: 1px solid #ddd;
border-top: 1px solid #ddd !important;
border-bottom: 1px solid #ddd !important;
border-left: 1px solid #ddd !important;
border-right: 1px solid #ddd !important;
}
.czn-list-style:hover {
background-color: #e8e8e8;
border: 1px solid #ddd !important;
}
.czn-list-style.active {
background-color: #007bff;
color: white;
border: 1px solid #007bff !important;
}
.czn-list-style.active:hover {
background-color: #0056b3;
border: 1px solid #0056b3 !important;
}
.tab-panel {
display: block;
padding: 8px 16px;
color: #333;
text-decoration: none;
font-weight: normal;
transition: color 0.2s ease;
white-space: nowrap;
min-width: 60px;
text-align: center;
font-size: 14px;
border: none !important;
}
.czn-list-style.active .tab-panel {
color: white;
}
.resp-tabs-container {
padding: 0;
background: transparent;
margin-top: 8px;
}
.resp-tab-content {
display: none;
animation: fadeIn 0.2s ease-in-out;
background: transparent;
padding: 0;
border: none !important;
}
.resp-tab-content[style*="display:block"],
.resp-tab-content[style*="display: block"] {
display: block !important;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* 响应式设计 */
@media (max-width: 768px) {
.resp-tabs-list {
flex-direction: column;
gap: 4px;
}
.czn-list-style {
width: 100%;
border: 1px solid #ddd !important;
}
.tab-panel {
padding: 6px 12px;
min-width: auto;
font-size: 13px;
border: none !important;
}
.resp-tabs-container {
margin-top: 6px;
}
}
/* 可选的颜色主题 */
.czn-list-style.theme-gray.active {
background-color: #6c757d;
border: 1px solid #6c757d !important;
}
.czn-list-style.theme-gray.active:hover {
background-color: #545b62;
border: 1px solid #545b62 !important;
}
.czn-list-style.theme-dark.active {
background-color: #343a40;
border: 1px solid #343a40 !important;
}
.czn-list-style.theme-dark.active:hover {
background-color: #23272b;
border: 1px solid #23272b !important;
}
.czn-list-style.theme-light.active {
background-color: #f8f9fa;
border: 1px solid #f8f9fa !important;
color: #333;
}
.czn-list-style.theme-light.active .tab-panel {
color: #333;
}
.czn-list-style.theme-light.active:hover {
background-color: #e2e6ea;
border: 1px solid #e2e6ea !important;
}