有觉性 以安住且中立的心 照见身心的实相
MediaWiki:Common.css:修订间差异
来自Dhamma.cn
小无编辑摘要 |
小无编辑摘要 |
||
| 第85行: | 第85行: | ||
/*APP化改造尝试*/ | /*APP化改造尝试*/ | ||
// 强制注入 Tailwind 风格样式表 | |||
(function() { | |||
var tailwindStyle = document.createElement('style'); | |||
tailwindStyle.type = 'text/css'; | |||
tailwindStyle.innerHTML = ` | |||
body.skin-timeless { background-color: #f8fafc !important; } | |||
body.skin-timeless #mw-content-container { | |||
background: #ffffff !important; | |||
border-radius: 12px !important; | |||
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03) !important; | |||
border: 1px solid #e2e8f0 !important; | |||
} | |||
body.skin-timeless .firstHeading { color: #0f172a !important; font-weight: 700 !important; } | |||
body.skin-timeless a { color: #4f46e5 !important; } | |||
`; | |||
document.head.appendChild(tailwindStyle); | |||
})(); | |||
2026年7月18日 (六) 00:23的版本
/* 这里放置的CSS将应用于所有皮肤 */
/* 隐藏非登录用户的工具箱特定项目 */
body:not(.user-logged-in) #t-whatlinkshere, /* 链入页面 */
body:not(.user-logged-in) #t-recentchangeslinked, /* 相关更改 */
body:not(.user-logged-in) #t-permalink, /* 固定链接 */
body:not(.user-logged-in) #t-info, /* 页面信息 */
body:not(.user-logged-in) #t-log { /* 页面日志 */
display: none !important;
}
/* 这里放置的CSS将应用于所有皮肤 */
body.page-Main_Page li#ca-talk { display: none !important; }
#ca-talk { display:none!important; }
#ca-viewsource { display:none!important; }
#ca-view { display:none!important; }
/*#ca-move { display:none!important; }*/
#ca-delete { display:none!important; }
#ca-history { display:none!important; }
#ca-nstab-main { display:none!important; }
##ca-watch { display:none!important; }
##li#ca-edit { display: none; }
## 要只在用户按下F11时隐藏 左侧的导航栏
document.onkeydown = function( e ) {
if( e == null ) e = event
if( testKey( e, 122 ) ) { //F11
appendCSS('#column-content {margin: 0 0 .6em 0;} #content {margin: 2.8em 0 0 0;} #p-logo, .generated-sidebar, #p-lang, #p-tb, #p-search {display:none;} #p-cactions {left: .1em;} #footer {display:none;}');
return false;
}
}
function testKey( e, intKeyCode ) {
if( window.createPopup )
return e.keyCode == intKeyCode
else
return e.which == intKeyCode
}
##如何去除"关于此IP地址的讨论"按钮
#p-personal #pt-anonuserpage {
display: none;
}
/*隐藏首页标题*/
/*.page-首页 #firstHeading{display:none;}*/
/*body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }*/
/*Back to top buttom*/
<div id="BackToTop" class="noprint" style="background-color:#DDEFDD; position:fixed;
bottom:32px; left:2%; z-index:9999; padding:0; margin:0;"><span style="color:blue;
font-size:8pt; font-face:verdana,sans-serif; border:0.2em outset #ceebf7;
padding:0.1em; font-weight:bolder; -moz-border-radius:8px; ">
[[#top| Back to the Top ]]</span></div>
.catlinks { display: none; }
body {
font-size: 16px;
line-height: 1.6em;
}
/*APP化改造尝试*/
// 强制注入 Tailwind 风格样式表
(function() {
var tailwindStyle = document.createElement('style');
tailwindStyle.type = 'text/css';
tailwindStyle.innerHTML = `
body.skin-timeless { background-color: #f8fafc !important; }
body.skin-timeless #mw-content-container {
background: #ffffff !important;
border-radius: 12px !important;
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03) !important;
border: 1px solid #e2e8f0 !important;
}
body.skin-timeless .firstHeading { color: #0f172a !important; font-weight: 700 !important; }
body.skin-timeless a { color: #4f46e5 !important; }
`;
document.head.appendChild(tailwindStyle);
})();
