/application/static/libs/adminlte/bower_components/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css

https://bitbucket.org/tin_gimranoff/docstar · CSS · 38 lines · 32 code · 6 blank · 0 comment · 0 complexity · c1318fca069d71f8c1917a41484c0833 MD5 · raw file

  1. .CodeMirror-hints {
  2. position: absolute;
  3. z-index: 10;
  4. overflow: hidden;
  5. list-style: none;
  6. margin: 0;
  7. padding: 2px;
  8. -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  9. -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  10. box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  11. border-radius: 3px;
  12. border: 1px solid silver;
  13. background: white;
  14. font-size: 90%;
  15. font-family: monospace;
  16. max-height: 20em;
  17. overflow-y: auto;
  18. }
  19. .CodeMirror-hint {
  20. margin: 0;
  21. padding: 0 4px;
  22. border-radius: 2px;
  23. max-width: 19em;
  24. overflow: hidden;
  25. white-space: pre;
  26. color: black;
  27. cursor: pointer;
  28. }
  29. li.CodeMirror-hint-active {
  30. background: #08f;
  31. color: white;
  32. }