MediaWiki讨论:Gadget-ding.js
外观
This covers up important buttons
@WhitePhosphorus: This gadget hides some important links at the top of the page, for example "Login". The gadget should be fixed so that the important links are still visible. Thanks. ESanders (WMF)(留言) 2020年4月26日 (日) 10:55 (UTC)
One option would be to move the notification to the bottom of the page (bottom: 0;
) then add some extra bottom margin to .footer
so that the footer is not cut off. ESanders (WMF)(留言) 2020年4月26日 (日) 17:52 (UTC)
编辑请求 2022-09-02
正在请求他人代为编辑受保护的页面(编辑:仅允许界面管理员;移动:仅允许界面管理员(保护日志)) 注意:本模板不是用于请求开放页面给予编辑,相关请求请至请求解除保护页申请;本模板是用于请求可以编辑的用户帮忙修改内容。 请求时请列明理由及内容,对于模板、模块、MediaWiki命名空间的修改请求,请阅读相关方针。(工具:处理) 如果您想直接展示给管理员修改后的页面及清楚地列出编辑差异,请将本模板改为 {{Editprotected|patch=}} ,点击“显示预览”并按照提示进一步操作。 |
@@ -18,7 +18,7 @@
if (persist === void 0) { persist = false; }
if (!document.getElementById("bluedeck_ding")) {
document.body.insertAdjacentHTML("afterbegin", "<style>#bluedeck_ding button{margin: 0 0.2em; background:transparent; border:0.2em solid white; border-radius: 9em; padding: 0 0.7em; box-sizing: border-box; color: inherit; font-weight: inherit;}#bluedeck_ding button:active{background:rgba(255,255,255,0.6)}</style>");
- document.body.insertAdjacentHTML("afterbegin", "<div id='bluedeck_ding'></div>");
+ document.body.insertAdjacentHTML("afterbegin", "<div id='bluedeck_ding' class='noprint'></div>");
}
if (!document.getElementById("bluedeck_ding_history")) {
document.body.insertAdjacentHTML("afterbegin", "<div id='bluedeck_ding_history'></div>");
主要是避免这个东西输出到打印版本中,但考虑到好像用ding的地方都没什么需要打印的必要所以直接改这边了。#bluedeck_ding_history
似乎没有使用因此没碰。-- Stang★ 2022年9月2日 (五) 08:49 (UTC)