【已解决】28升级到29,地址栏右侧有一竖细条怎样去除?

阅读:6513回复:25
2014-04-30 16:19
写私信
楼主#
如图

图片:火狐29地址栏右侧细条JT-283.png



新建配置没有这个细条,从28配置文件升级到29就有,无法去掉,始终跟随地址栏右侧,求去掉方法??在28里是没有此细条的

20140501
是由扩展Image Download Ⅱ造成,禁用IDⅡ,细线就没有了,但IDⅡ是我必用的扩展,同类中最好用的,还好在29中还能正常使用
已找到解决方法,感谢 @jgsabc
加入到配置文件夹目录下的chrome\userchrome.css里:
#nav-bar #urlbar-wrapper+#urlbar{
    display: none !important;
}
或者stylish扩展,新建样式:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#nav-bar #urlbar-wrapper+#urlbar{
    display: none !important;
}

最新喜欢:

紫焰蔷薇 jsjjsj fang55...
2014-04-30 16:27
写私信
1楼#
29 默认是没法这么移动前进后退按钮的。。。。。。又装了classic theme restorer?无法复现。看看其他人有没有把
Firefox More than meets your experience
2014-04-30 16:40
写私信
2楼#
fang5566:29 默认是没法这么移动前进后退按钮的。。。。。。又装了classic theme restorer?无法复现。看看其他人有没有把回到原帖
是在装classic theme restorer之前就有,28配置用29打开即有这个竖条
2014-04-30 16:46
写私信
3楼#
classic theme restorer作者在扩展说明的第一句话就是:

It is recommended to switch to a new clean profile (or at least delete 'localstore.rdf' from profile folder) to avoid UI issues after upgrading from Firefox 28 (and older) to Firefox 29 (and newer).

建议用新配置,至少也要删除localstore.rdf,来避免早期版本升级到29后引起的界面问题
2014-04-30 16:58
写私信
4楼#
我的也有 同寻方法中
2014-04-30 17:03
写私信
5楼#
tulip17:是在装classic theme restorer之前就有,28配置用29打开即有这个竖条回到原帖
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
 
:-moz-any(#nav-bar,#PersonalToolbar) .toolbarbutton-1:not(:hover):not(:active):not([open]) > .toolbarbutton-menubutton-dropmarker::before,
:-moz-any(#nav-bar,#PersonalToolbar) .toolbaritem-combined-buttons > .toolbarbutton-1:-moz-any(:not(:hover):not([open]),[disabled=true]) + 
.toolbarbutton-1:-moz-any(:not(:hover):not([open]),[disabled=true])::before {
    width: 0px !important;
    -moz-margin-end: 0px !important;
}
by dkgo 菊苣
摘自关于Australis新界面的一些有用的资源_贴吧
此人已死,请不要烧纸,定期会还魂
2014-04-30 17:26
写私信
6楼#
jgsabc::-moz-any(#nav-bar,#PersonalToolbar) .toolbarbutton-1:not(:hover):not(:active):not() > .toolbarbutton-menubutton-drop...回到原帖
加在哪里?加入stylish和userchrome.css里都没效果啊
2014-04-30 17:33
写私信
7楼#
tulip17:加在哪里?加入stylish和userchrome.css里都没效果啊回到原帖
Stylish,新建配置有效
应该还要有命名空间,上面已修改,不过应该有效啊。
Sorry,忘了一件重要的事,默认主题测试,第三方主题(Classic theme restorer其实自带)不保障兼容
这种CSS吾不能,自行 @dkgo 菊苣
此人已死,请不要烧纸,定期会还魂
2014-04-30 17:45
写私信
8楼#
jgsabc:Stylish,新建配置有效
应该还要有命名空间,上面已修改,不过应该有效啊。
Sorry,忘了一件重要的事,默认主题测试,第三方主题(Classic theme restorer其实自带)不保障兼容;
这种CSS吾不能,自行 @dk...
回到原帖
谢谢你哈、试了,默认主题,还是没效果
2014-04-30 20:31
写私信
9楼#
https://g.mozest.com/viewthread.php?tid=42922&page=5#pid314279

#PanelUI-button {
  background: none;
}

#nav-bar #PanelUI-menu-button {
  -moz-padding-start: 0;
}
试试
2014-04-30 21:20
写私信
10楼#
文科:https://g.mozest.com/viewthread.php?tid=42922&page=5#pid314279

#PanelUI-button {
  background: none;
}

#nav-bar #Panel...
回到原帖
木效果啊,是用stylish吧
2014-04-30 23:38
写私信
11楼#
taoww:classic theme restorer作者在扩展说明的第一句话就是:

It is recommended to switch to a new clean profile (or at least delete 'localstor...
回到原帖
删除了localstore.rdf,仍然有那竖条
2014-05-01 11:38
写私信
12楼#
之前我也有,禁用Image Download II就行了
2014-05-01 11:56
写私信
13楼#
killfey:之前我也有,禁用Image Download II就行了回到原帖
果然,禁用IDⅡ细线就没有了,看来是它造成的。可是IDⅡ已被作者移除不再更新维护,杯具了,没有比这个更好用的保存图片扩展
2014-05-01 13:09
写私信
14楼#
解决方法有了,感谢@jgsabc
#nav-bar #urlbar-wrapper+#urlbar{
    display: none !important;
}