ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css
changeset 0 44d330dccc59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css	Thu Dec 15 18:10:20 2016 +0300
     1.3 @@ -0,0 +1,38 @@
     1.4 +.CodeMirror-hints {
     1.5 +  position: absolute;
     1.6 +  z-index: 10;
     1.7 +  overflow: hidden;
     1.8 +  list-style: none;
     1.9 +
    1.10 +  margin: 0;
    1.11 +  padding: 2px;
    1.12 +
    1.13 +  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
    1.14 +  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
    1.15 +  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
    1.16 +  border-radius: 3px;
    1.17 +  border: 1px solid silver;
    1.18 +
    1.19 +  background: white;
    1.20 +  font-size: 90%;
    1.21 +  font-family: monospace;
    1.22 +
    1.23 +  max-height: 20em;
    1.24 +  overflow-y: auto;
    1.25 +}
    1.26 +
    1.27 +.CodeMirror-hint {
    1.28 +  margin: 0;
    1.29 +  padding: 0 4px;
    1.30 +  border-radius: 2px;
    1.31 +  max-width: 19em;
    1.32 +  overflow: hidden;
    1.33 +  white-space: pre;
    1.34 +  color: black;
    1.35 +  cursor: pointer;
    1.36 +}
    1.37 +
    1.38 +li.CodeMirror-hint-active {
    1.39 +  background: #08f;
    1.40 +  color: white;
    1.41 +}