|
阅读:2139回复:1
地址栏和搜索栏下拉菜单问题
地址栏下拉菜单的最常访问列表能不能手工编辑?
搜索栏我在css中添加了以下代码,按钮显示出来了,但是点击是总是空的没有搜索历史列表,这是为何?:evil: /* 添加搜索历史下拉箭头 */
#searchbar .autocomplete-history-dropmarker {
-moz binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
display: -moz-box !important;
} |
|
|
1楼#
发布于:2009-03-07 08:29
搜索栏的问题解决了,加入以下代码就有列表菜单了,但是有个问题,这个列表怎么按名称排序,不能按时间排序吗?
#searchbar .autocomplete-history-dropmarker {
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker") !important;
display: -moz-box !important;
-moz-appearance: none !important;
padding: 0 !important;
background-color: transparent !important;
border: none !important; }
#searchbar .autocomplete-history-dropmarker:hover ,
#searchbar .autocomplete-history-dropmarker[open="true"] {
border-left: 1px solid !important;
-moz-border-left-colors: ButtonShadow !important;
background: ButtonFace url(chrome://browser/skin/tabbrowser/tab-active-bkgnd.png) repeat-x !important; } |
|