MediaWiki talk: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)