打开/关闭菜单
切换首选项菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
无编辑摘要
标签已被回退
无编辑摘要
标签手工回退
第8行: 第8行:
     flex-direction: column;
     flex-direction: column;
     color: var(--a);
     color: var(--a);
     /* cursor: help; */
     cursor: help;
     text-decoration-line: underline;
     text-decoration-line: underline;
     text-decoration-style: dashed;
     text-decoration-style: dashed;

2025年3月13日 (四) 11:57的版本

/* 这里放置的CSS将应用于所有皮肤 */

/* Template: Tip */
/* Source: https://templatemanager.huijiwiki.com/wiki/%E9%9B%B6%E4%BB%B6:TipGreen.css */
.explain {
    position: relative;
	display: inline-flex;
    flex-direction: column;
    color: var(--a);
    cursor: help;
    text-decoration-line: underline;
    text-decoration-style: dashed;
}
 
.explain .explain-text {
    background: rgba(0, 0, 0, 0.9) fixed;
    color: #fff;
    font-size: 13px;
 
    width: max-content;
    max-width: 18em;
    visibility: hidden;
    opacity: 0.0;
    border-radius: 2px;
    padding: 4px;
    position: absolute;
    bottom: 110%;
    transition: all .5s;
    align-self: center;
    line-height: initial;
}
 
.explain .explain-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent;
}
 
.explain:hover .explain-text {
    visibility: visible;
    opacity: 1.0;
    transition: all .5s;
}