-
汇聚密码安全智慧 共享实战经验!
- 我们目前有643个页面,13个用户,731次编辑。
MediaWiki:Mobile.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 标签:移动版编辑 移动版网页编辑 |
无编辑摘要 标签:移动版编辑 移动版网页编辑 |
||
| 第17行: | 第17行: | ||
padding: 0 !important; | padding: 0 !important; | ||
list-style: none !important; | list-style: none !important; | ||
-webkit-transition: | -webkit-transition: transform 0.73s ease-in-out !important; | ||
-moz-transition: | -moz-transition: transform 0.73s ease-in-out !important; | ||
-o-transition: | -o-transition: transform 0.73s ease-in-out !important; | ||
transition: | transition: transform 0.73s ease-in-out !important; | ||
display: block !important; | display: block !important; | ||
white-space: nowrap !important; | white-space: nowrap !important; | ||
position: relative !important; | position: relative !important; | ||
will-change: | will-change: transform; | ||
-webkit-backface-visibility: hidden; | |||
backface-visibility: hidden; | |||
} | } | ||
2025年12月19日 (五) 08:02的版本
/* 网站公告的 CSS - 移动端和桌面端通用 */
#siteNoticeScroll {
width: 100%;
height: 25px;
line-height: 25px;
overflow: hidden;
text-align: center;
margin-bottom: 0.25em;
position: relative;
}
#siteNoticeScroll ul {
height: 25px;
line-height: 25px;
margin: 0 !important;
padding: 0 !important;
list-style: none !important;
-webkit-transition: transform 0.73s ease-in-out !important;
-moz-transition: transform 0.73s ease-in-out !important;
-o-transition: transform 0.73s ease-in-out !important;
transition: transform 0.73s ease-in-out !important;
display: block !important;
white-space: nowrap !important;
position: relative !important;
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#siteNoticeScroll li {
height: 25px;
line-height: 25px;
list-style: none !important;
float: left !important;
width: 100% !important;
display: inline-block !important;
box-sizing: border-box !important;
padding: 0 10px;
vertical-align: top;
flex-shrink: 0;
}
/* 移动端优化 */
@media screen and (max-width: 720px) {
#siteNoticeScroll {
height: auto;
min-height: 25px;
}
#siteNoticeScroll ul {
height: auto;
min-height: 25px;
}
#siteNoticeScroll li {
height: auto;
min-height: 25px;
line-height: 1.5;
padding: 2px 10px;
}
}
/* 确保在移动端也能正常显示 */
.mw-mf-viewport #siteNoticeScroll {
width: 100%;
overflow: hidden;
}