国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
789B

  1. /*
  2. Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .cke_autocomplete_panel
  6. {
  7. position: absolute;
  8. display: none;
  9. box-sizing: border-box;
  10. width: 200px;
  11. max-height: 300px;
  12. overflow: auto;
  13. padding: 0;
  14. margin: 0;
  15. list-style: none;
  16. background: #FFF;
  17. border: 1px solid #b6b6b6;
  18. border-bottom-color: #999;
  19. border-radius: 3px;
  20. font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
  21. }
  22. .cke_autocomplete_opened
  23. {
  24. display: block;
  25. }
  26. .cke_autocomplete_panel > li
  27. {
  28. padding: 5px;
  29. }
  30. .cke_autocomplete_panel > li:hover
  31. {
  32. cursor: pointer;
  33. }
  34. .cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
  35. {
  36. background-color: #EFF0EF;
  37. }