MediaWiki:Common.css:修订间差异
无编辑摘要 |
无编辑摘要 标签:已被回退 |
||
| 第329行: | 第329行: | ||
} | } | ||
/* | /* 网站公告的滚动 */ | ||
#siteNoticeScroll { | #siteNoticeScroll { | ||
width: 100%; | width: 100%; | ||
| 第338行: | 第338行: | ||
margin-bottom: 0.25em; | margin-bottom: 0.25em; | ||
} | } | ||
#siteNoticeScroll ul { | #siteNoticeScroll ul { | ||
height: 25px; | height: 25px; | ||
| 第346行: | 第345行: | ||
transition: margin .73s ease-in-out; | transition: margin .73s ease-in-out; | ||
} | } | ||
#siteNoticeScroll li { | #siteNoticeScroll li { | ||
height: 25px; | height: 25px; | ||
| 第354行: | 第352行: | ||
} | } | ||
/* 静态 Tooltip 向上 */ | |||
/* 静态 Tooltip */ | |||
.tooltip-wrapper { | .tooltip-wrapper { | ||
position: relative; | position: relative; | ||
| 第361行: | 第358行: | ||
cursor: help; | cursor: help; | ||
} | } | ||
.tooltip-content { | .tooltip-content { | ||
visibility: hidden; | visibility: hidden; | ||
| 第376行: | 第372行: | ||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||
.tooltip-wrapper:hover .tooltip-content { | .tooltip-wrapper:hover .tooltip-content { | ||
visibility: visible; | visibility: visible; | ||
} | } | ||
/* 动态 Tooltip | /* 动态 Tooltip 测试原生JS + CSS */ | ||
.dynamic-tooltip { | .mw-dynamic-tooltip { | ||
position: absolute; | position: absolute; | ||
background: #fff; | background: #fff; | ||
box-shadow: | border: 1px solid #ccc; | ||
padding: 8px; | |||
box-shadow: 2px 2px 5px rgba(0,0,0,0.2); | |||
display: none; | |||
z-index: 1000; | |||
} | } | ||