completion.less 823 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-Completion {
  6. background: #EEEEEE;
  7. border: var(--jp-borderWidth) solid var(--jp-1st-borderColor);
  8. list-style-type: none;
  9. overflow: auto;
  10. padding: 0;
  11. }
  12. .jp-Completion-item {
  13. margin: 0;
  14. min-width: 150px;
  15. padding: 0 2px;
  16. }
  17. .jp-Completion-item:nth-child(odd) {
  18. background: #FFFFFF;
  19. }
  20. .jp-Completion-item.jp-mod-active {
  21. background: #BFBFBF;
  22. }
  23. .jp-Completion-item code {
  24. font-size: 14px;
  25. line-height: 25px;
  26. }
  27. .jp-Completion-item mark {
  28. font-weight: bold;
  29. text-decoration: underline;
  30. background: inherit;
  31. color: inherit;
  32. }