MediaWiki討論:Gadget-mobile-styles.css
編輯請求 - Bhsd - 2020.09.18
由Bhsd提出的編輯請求:
- 狀態: 完成
將原內容修改為:
a.mw-collapsible-text {
color: #3366cc;
}
摺疊/展開(或自定義內容)的文字顏色,和桌面版一致,用於提示點擊可觸發事件。——移動版用戶 Bhsd(討論) 2020年9月19日 (六) 07:20 (CST)
- Done.——From AnnAngela the Temporary Bureaucrat (Talk) 2020年9月19日 (六) 15:49 (CST)
大家族模板樣式問題
應該是159行到174行的html > body.skin-minerva
位置有一些問題,窄屏上的大家族模板樣式沒應用。 Grandom討論·貢獻 2020年9月20日 (日) 12:10 (UTC)
- 順便109行大概也有同樣的問題。 Grandom討論·貢獻 2020年9月20日 (日) 20:14 (CST)
- Fixed.——From AnnAngela the Temporary Bureaucrat (Talk) 2020年9月20日 (日) 20:50 (CST)
編輯請求 - Func - 2020.10.02
由Func提出的編輯請求:
- 狀態: 完成
將以下內容:
修改為:
——Func(討論·貢獻) 2020年10月2日 (五) 12:15 (CST)
編輯請求
由Bhsd提出的編輯請求:
- 狀態: 完成
將以下內容:
@media screen and (max-width: 640px) {
html > body.skin-minerva .infoBox {
width: 100%;
}
}
修改為:
@media screen and (max-width: 640px) {
html > body.skin-minerva .infoBox {
width: 100%;
box-sizing: border-box;
}
}
抱歉,之前沒注意{{info}}的左邊框這麼寬……不過這個小改動並非100%必要,請管理員權衡。——移動版用戶 Bhsd(討論) 2020年10月3日 (六) 01:52 (CST)
- Done.——From AnnAngela the Temporary Bureaucrat (Talk) 2020年10月3日 (六) 09:56 (CST)
編輯請求 - Leranjun - 2020.11.27
由Leranjun提出的對MediaWiki:Gadget-mobile-styles.css的編輯請求:
- 狀態: 完成
將以下內容:
/* 修复用户页欢迎辞覆盖编辑框的bug */
html > body.skin-minerva .overlay.visible {
z-index: 999;
}
修改為:
/* 修复用户页欢迎辞覆盖编辑框的bug */
html > body.skin-minerva.ns-3 .overlay.visible {
z-index: 999;
}
有用戶在討論版(備用連結)提出本設置會使放棄編輯對話框無法顯示。
如果只是修復用戶討論頁的歡迎詞的話,應該只限制ns3就可以了吧。--ZhMGP:~ Leranjun$ 主頁 · 討論 · 貢獻 · 單推人|24
2020年11月27日 (五) 21:28 (CST)
- Fixed.——From AnnAngela the Temporary Bureaucrat (Talk) 2020年11月28日 (六) 21:26 (CST)
編輯請求 - Func - 2021.06.10
由Func提出的對MediaWiki:Gadget-mobile-styles.css的編輯請求:
- 狀態: 撤回
增加以下內容:
/* 优化移动端代码显示 */
pre.prettyprint {
white-space: pre;
overflow-x: auto;
}
pre.prettyprint li {
margin-bottom: 0;
}
pre.prettyprint .linenums {
width: max-content;
}
優化移動端代碼顯示——Func(討論·貢獻) 2021年6月10日 (四) 11:11 (CST)
- 草,原來是要用max-content——NHJR 2021年6月10日 (四) 11:20 (CST)
- (-)反對 這是可關閉的小工具用到的樣式,不應寫入全站CSS。——移動版用戶 Bhsd 2021年6月10日 (四) 22:38 (CST)
- 註:該小工具被設置為不能通過常規手段關閉,被用於全站移動端樣式。——From AnnAngela the Bureaucrat (Talk) 2021年6月11日 (五) 09:28 (CST)
編輯請求 - Bhsd - 2021.06.14
由Bhsd提出的對MediaWiki:Gadget-mobile-styles.css的編輯請求:
- 狀態: 完成
增加以下內容:
html > body.skin-minerva .mw-editform span.cancelLink {
display: inline-block;
}
由於mobile.js的改動,現在移動版會進入action=edit
的編輯界面,但只能通過瀏覽器返回來取消編輯,返回後的界面還是MF自帶的編輯器,如果網絡不好的話會卡在那兒。所以這裏給編輯界面添加一個取消按鈕。————移動版用戶 Bhsd 2021年6月15日 (二) 05:31 (CST)
- Done.——From AnnAngela the Bureaucrat (Talk) 2021年6月15日 (二) 08:44 (CST)
編輯請求 - あめろ - 2022.03.19
由あめろ提出的對MediaWiki:Gadget-mobile-styles.css的編輯請求:
- 狀態: 完成
將以下內容:
/* 表格边框 */ html>body.skin-minerva .content table { width: fit-content !important; max-width: 100%; }
修改為:
/* 表格xx */ html>body.skin-minerva .content table { width: fit-content !important; max-width: 100%; float: none !important; margin-left: auto !important; margin-right: auto !important; }