您好我发现了如何使用css自定义搜索列表:
.dropdown-menu li.active a{
background-color:lightBlue;
background:lightBlue;
color: green!important;
}
但我无法摆脱鼠标悬停时默认显示为蓝色的荧光笔:
我曾尝试从浏览器进行检查但无法找到正在设置样式的元素,这就是为什么我无法进一步设置样式。
以下是文档:
答案 0 :(得分:0)
现在的解决方案:
;; Changing the list of files
;; --------------------------
;; By default, the list of current files is most recent first,
;; oldest last, with the exception that the files visible in the
;; current frame are put at the end of the list. A hook exists to
;; allow other functions to order the list. For example, if you add:
;;
;; (add-hook 'ido-make-buffer-list-hook 'ido-summary-buffers-to-end)
;;
;; then all files matching "Summary" are moved to the end of the
;; list. (I find this handy for keeping the INBOX Summary and so on
;; out of the way.) It also moves files matching "output\*$" to the
;; end of the list (these are created by AUCTeX when compiling.)
;; Other functions could be made available which alter the list of
;; matching files (either deleting or rearranging elements.)