“MediaWiki:Common.css”的版本间的差异
跳到导航
跳到搜索
| 第43行: | 第43行: | ||
} | } | ||
/* | /* 悬浮框 */ | ||
.popup-host .ilp-no-popup { | .popup-host .ilp-no-popup { | ||
display: none; | display: none; | ||
2021年11月26日 (五) 19:59的版本
/* 这里放置的CSS将应用于所有皮肤 */
.heimu, .heimu a, a .heimu, .heimu a.new {
background-color: #252525;
color: #252525;
text-shadow: none;
}
.heimu:hover, .heimu:active,
.heimu:hover .heimu, .heimu:active .heimu {
color: white !important;
}
.heimu:hover a, a:hover .heimu,
.heimu:active a, a:active .heimu {
color: lightblue !important;
}
.heimu:hover .new, .heimu .new:hover, .new:hover .heimu,
.heimu:active .new, .heimu .new:active, .new:active .heimu {
color: #BA0000 !important;
}
/* 回到顶部 */
.backToTop {
display: none;
width: 60px;
height: 50px;
line-height: 50px;
padding: 5px 0;
background-color: rgb(255, 255, 255);
color: rgb(102, 102, 102);
font-size: 12px;
text-align: center;
position: fixed;
_position: absolute;
right: 50px;
bottom: 100px;
_bottom: "auto";
cursor: pointer;
/* opacity: .6; */
border-radius: 100px;
filter: Alpha(opacity=60);
box-shadow: 0px 1px 8px 1.5px rgba(0, 0, 0, 0.35),0px 20px 70px 8px rgba(0, 0, 0, 0.25);
z-index: 999;
opacity: 0.9;
}
/* 悬浮框 */
.popup-host .ilp-no-popup {
display: none;
}
.popup-host .internal-link-popup {
visibility: hidden;
opacity: 0;
min-width: 400px;
font-size: 80%;
position: absolute; top: 100%; left: 0; z-index: 999 !important;
background-color: #fff;
border: 1px solid #deede0;
padding: 5px;
border-radius: 5px;
transition: opacity 0.5s;
text-align:left;
}
.popup-host:hover .internal-link-popup {
visibility: visible;
opacity: 1;
}
@media (hover: none){
.popup-host .ilp-no-popup {
display: inline;
}
.popup-host .internal-link-popup {
display: none;
}
}