最近用Firefox订了一个feed,想把它显示出来,然而又不想为此浪费一行显示书签工具栏,于是把bookmark toolbar item拖到了地址栏尾部。
然而这个item是会自动收缩的,于是浪费了一段空白,而且我的feed需要展开才能看。
解决方法,利用stylish
#bookmarksBarContent .bookmark-item {
visibility: visible !important;
}
即可。
Recently I've subscribed a live feed using Firefox, I want it being displayed in my browser all the time, but I don't like the bookmark toolbar which wastes the entire line space. Therefore I drag the bookmark toolbar item to the end of the location bar.
However, that item will automatically collapse, resulting in that there's just a blank area, with an expand button, I have to view the item after expand the item, so stupid.
The solution is, by stylish:
#bookmarksBarContent .bookmark-item {
visibility: visible !important;
}
works like a charm.
然而这个item是会自动收缩的,于是浪费了一段空白,而且我的feed需要展开才能看。
解决方法,利用stylish
#bookmarksBarContent .bookmark-item {
visibility: visible !important;
}
即可。
Recently I've subscribed a live feed using Firefox, I want it being displayed in my browser all the time, but I don't like the bookmark toolbar which wastes the entire line space. Therefore I drag the bookmark toolbar item to the end of the location bar.
However, that item will automatically collapse, resulting in that there's just a blank area, with an expand button, I have to view the item after expand the item, so stupid.
The solution is, by stylish:
#bookmarksBarContent .bookmark-item {
visibility: visible !important;
}
works like a charm.
Comments