/*
 * Copyright 2000-2015 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.CodeMirror-hints {
    min-width: 400px;
    border: 1px solid #969696;
    border-radius: 4px;
    padding: 0;
    background-color: #f7f7f7;
    overflow-y: hidden;
}

.CodeMirror-hint {
    list-style-type: disc;
    max-width: 50em;
    border-radius: 0;
    margin: 0;
    padding: 0 4px 0 0;
    line-height: 18px;
}

li.CodeMirror-hint-active {
    background-color: #d8d8d8;
    color: #000000;
}

.CodeMirror-hint .name {
    float: left;
}

.CodeMirror-hint .tail {
    float: right;
    padding-left: 20px;
    margin-right: 5px;
}

.CodeMirror-hint .icon {
    margin-top: 1px;
    margin-left: 2px;
    height: 16px;
    width: 16px;
    float: left;
    margin-right: 10px;
}

.icon.class {
    background: url("/static/images/completion_class.svg");
}

.icon.package {
    background: url("/static/images/completion_package.svg");
}

.icon.method {
    background: url("/static/images/completion_method.svg");
}

.icon.genericValue {
    background: url("/static/images/completion_generic.svg")
}

.icon.property {
    background: url("/static/images/completion_property.svg");
}