fghxy
火狐狸
火狐狸
  • UID27446
  • 注册日期2008-12-14
  • 最后登录2011-04-15
  • 发帖数156
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
阅读:1716回复:1

地址栏和搜索栏下拉菜单问题

楼主#
更多 发布于:2009-03-07 08:29
地址栏下拉菜单的最常访问列表能不能手工编辑?
搜索栏我在css中添加了以下代码,按钮显示出来了,但是点击是总是空的没有搜索历史列表,这是为何?:evil:

/* 添加搜索历史下拉箭头 */
#searchbar .autocomplete-history-dropmarker {
  -moz binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
  display: -moz-box !important;
}
fghxy
火狐狸
火狐狸
  • UID27446
  • 注册日期2008-12-14
  • 最后登录2011-04-15
  • 发帖数156
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
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; }
游客

返回顶部