
.input-group {
    width: 100%;
    min-height: @formBaseHeight;
    background-color: @input-bg;
    position: relative; // For dropdowns
    display: table;
    border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
    /**
    授权组件的输入区域的样式信息
     */

    .sel-item-container {
        max-height: 95px;
        overflow-y: auto;
        padding-left: 2px;
        border-radius: @border-radius-small;
        background-color: @input-bg;
        border: 1px solid @input-border-color;
        min-height: @formBaseHeight - 4;
        line-height: @formBaseHeight - 4;

        &:hover {
            padding-left: 2px;
            border: 1px solid @input-focus-border-color;
        }

        .placeholder {
            color: #7D7D7D;
        }

        &.error-input {
            border: 1px solid @ctl-error-com-color !important
        }

        .choice-close {
            cursor: pointer;
            font-size: 14px;
            display: inline-block;
            margin-left: 5px;
        }

        ul {
            padding-right: 32px;
            padding-left: 4px;

            li.choice-item {
                float: left;
                list-style: none;
                position: relative;
                margin: 3px 0 3px 5px;
                padding: 3px 5px 3px 5px;
                border: 1px solid #aaa;
                border-radius: 3px;
                background-color: #e4e4e4;
                background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
                background-clip: padding-box;
                box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
                color: #333;
                line-height: 13px;
                cursor: default;
            }
            //常规状态
            li.choice-item-com{
                float: left;
                list-style: none;
                .choice-close{
                    display: none;
                }
                &:after{
                    content:'、';
                }
                &:last-of-type:after{
                    content:'';
                }
            }
        }

    }

    .input-group-addon {
        position: absolute;
        top: 0;
        right: 10px;
        z-index:10;
    }


    // Undo padding and float of grid classes
    &[class*="col-"] {
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    .form-control {
        // Ensure that the input is always above the *appended* addon button for
        // proper border colors.
        position: relative;
        z-index: 2;

        // IE9 fubars the placeholder attribute in text inputs and the arrows on
        // select elements in input groups. To fix it, we float the input. Details:
        // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
        float: left;

        width: 100%;
        margin-bottom: 0;

        &:focus {
            z-index: 3;
        }
    }
}
