
對於網頁瀏覽我使用蒼白的月亮。蒼白的月亮有一個狀態列,類似現在所說的附加欄在火狐瀏覽器中。
當我將滑鼠懸停在連結上時,會出現蒼白的月亮
- URL顯示在狀態列中
- URL立即顯示
- 如果需要,URL 允許使用狀態列的整個寬度
使用 Firefox,當我將滑鼠懸停在連結上時
- URL 顯示在左下角的工具提示中
- URL 在故意延遲後顯示
- URL 只允許瀏覽器視窗寬度的一半
有沒有辦法讓 Firefox 表現得更像 Pale Moon?我意識到Status-4-Evar可能是這裡最好的解決方案,但我想看看是否有其他選擇。我也會接受經過深思熟慮和參考為什麼 Firefox 方式「更好」的答案。
答案1
按照與上面相同的順序...
在附加欄上顯示 URL:
使用時髦的或者用戶Chrome.css,定義以下 CSS:
statuspanel { z-index: 1 !important; bottom: 1px !important; } toolbar#addon-bar { z-index: 0 !important; }
經過一些額外的調整,最終結果可能如下所示(Windows 7):
label.statuspanel-label
{
padding-top: 0 !important;
padding-bottom: 0 !important;
border: 0 !important;
background-image: none !important;
background-color: #cedaeb !important;
color: #000000 !important;
}
刪除延遲和過渡:
將
browser.overlink-delay
首選項about:config
設為0。重新啟動火狐瀏覽器。定義以下 CSS:
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink] { -moz-transition: none !important; }
允許 URL 跨越視窗的整個寬度:
定義以下 CSS:
statuspanel { max-width: 100% !important; }
獎金:
如果您打算將附加欄用作永久固定裝置,則可以使用以下方法隱藏其關閉按鈕:
toolbarbutton#addonbar-closebutton
{
display: none !important;
}
複製貼上
這是組合的 CSS,沒有 Windows 7 主題:
statuspanel
{
z-index: 1 !important;
bottom: 1px !important;
max-width: 100% !important;
}
toolbar#addon-bar
{
z-index: 0 !important;
}
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink]
{
-moz-transition: none !important;
}
toolbarbutton#addonbar-closebutton
{
display: none !important;
}