﻿

/* Application specific styles */
body {
    padding-top: 80px;
    background: #e9ecf3;
}
/* Styles for angular ui transition animations */
.angular-animation-container {
    position: relative;
}

.shuffle-animation.ng-enter,
.shuffle-animation.ng-leave {
    position: absolute;
}

.shuffle-animation.ng-enter {
    -moz-transition: ease-out all 0.3s 0.4s;
    -o-transition: ease-out all 0.3s 0.4s;
    -webkit-transition: ease-out all 0.3s 0.4s;
    transition: ease-out all 0.3s 0.4s;
    left: 2em;
    opacity: 0;
}

    .shuffle-animation.ng-enter.ng-enter-active {
        left: 0;
        opacity: 1;
    }

.shuffle-animation.ng-leave {
    -moz-transition: 0.3s ease-out all;
    -o-transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
    transition: 0.3s ease-out all;
    left: 0;
    opacity: 1;
}

    .shuffle-animation.ng-leave.ng-leave-active {
        left: 2em;
        opacity: 0;
    }

.font-red-haze {
    color: red;
}

.my-radio-list {
    padding: 6px 15px;
}

    .my-radio-list label {
        margin-right: 5px;
        margin-bottom: 0px;
        cursor: pointer;
    }

    .my-radio-list.disabled-select label {
        cursor: default;
        color: #999 !important;
    }

    .my-radio-list label input {
        margin-right: 2px;
        margin-top: 5px;
        cursor: pointer;
    }

.red-star:after {
    content: '*';
    display: inline-block;
    font-weight: 700;
    color: red;
    margin: 0 3px;
    line-height: 10px;
    font-family: 'Microsoft YaHei',"Microsoft YaHei",sans-serif!important;
    font-size: 24px;
    font-style: normal;
    vertical-align: middle;
}

input[type=text][disabled], input[type=password][disabled], textarea[disabled], select[disabled] {
    border: none;
    border-bottom: 1px dashed #ccc;
    color: #999 !important;
    background-color: transparent !important;
    cursor: default !important;
    padding-bottom: 3px;
}

input[type=radio] {
    color: #999 !important;
    background-color: white !important;
    cursor: default !important;
    padding-bottom: 3px;
}

select[disabled] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

textarea[disabled] {
    border: none;
    border-bottom: 1px dashed #ccc;
    resize: none;
    padding-top: 7px;
}

.disabled-select {
    display: block;
    overflow: hidden;
}

    .disabled-select > select[disabled] {
        width: 125% !important;
    }

.little-title {
    font-size: 20px;
    padding: 5px 20px;
    background: #AAA;
    color: white;
    display: inline-block;
    min-width: 250px;
    font-family: 'Microsoft YaHei';
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-left: -20px;
}

.split-div {
    width: 100%;
    height: 10px;
    background: #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
}

.timeline-selectuser ul {
    width: 100%;
    font-size: 12px;
}

    .timeline-selectuser ul li {
        height: 36px;
        line-height: 36px;
        padding: 0px 0px 6px 10px;
        cursor: pointer;
    }

        .timeline-selectuser ul li:hover {
            background: #DDD;
        }

        .timeline-selectuser ul li img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            margin-top: -4px;
            border-radius: 50% !important;
        }
        .navbar-brand {
            font-weight: bold;
        }

.dataTables_info {
    margin-top: 15px;
}

/*用户选择框*/
.user-select-div {
    display: inline-block;
    width: 100%;
    height: 34px;
    border: 1px solid #CCC;
    position: relative;
}
.user-select-div.single > div {
    display: block;
    height: 28px;
    line-height: 28px;
    background: #AAA;
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 5px;
    padding-right: 16px;
    border-radius: 2px !important;
    cursor: pointer;
}
    .user-select-div.single > div:hover:after {
        content: '×';
        font-size: 28px;
        line-height: 28px;
        position: absolute;
        display: inline-block;
        width: 28px;
        height: 28px;
        right: 0px;
        top: 0px;
        color: #333;
        z-index: 9999;
    }
.user-select-div.multiple > div {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    background: #CCC;
    margin: 2px;
    padding-left: 5px;
    padding-right: 16px;
    border-radius: 2px !important;
    cursor: pointer;
}
.user-select-div.multiple > div:hover:after {
    content: '×';
    position: relative;
    display: inline-block;
    right: -5px;
    top: -7px;
    color: #333;
    z-index: 9999;
    width: 0px;
    height: 0px;
}
.user-select-div + .user-option-div {
    height: auto;
    max-height: 200px;
    display: none;
    position: absolute;
    top: 35px;
    left: 15px;
    border: 1px solid #AAA !important;
    width: calc(100% - 30px);
    overflow-y: scroll;
    overflow-x: hidden;
    background: #FFF;
    -webkit-box-shadow: 1px 3px 2px #AAA;
    -moz-box-shadow: 1px 3px 2px #AAA;
    box-shadow: 1px 3px 2px #AAA;
    z-index: 999;
}
.user-select-div + .user-option-div > input {
    width: 100%;
    height: 25px;
    border: 0px;
    border-bottom: 1px solid #CCC;
    padding-left: 10px;
    background: #EEE !important;
}
.user-select-div + .user-option-div > input:hover {
    border-bottom: 1px solid #999;
}
.user-select-div:focus + .user-option-div,.user-select-div + .user-option-div:focus,.user-select-div + .user-option-div:hover {
    display: inline-block;
}
.user-option-div > ul {
    padding-left: 0px;
    margin-bottom: 0px;
    background: white;
}
.user-option-div > ul > li {
    list-style: none;
    height: 25px;
    line-height: 25px;
    padding-left: 25px;
    cursor: default;
    border-bottom: 1px dotted #CCC;
}
.user-option-div > ul > li.active {
    background: #BFD7FF;
}
.user-option-div > ul > li.active:before {
    content: '√';
    display: inline-block;
    position: absolute;
    margin-left: -15px;
    color: red;
    font-weight: bold;
}
.user-option-div > ul > li:not(.disabled):not(.active):hover {
    background: #CCC;
}
.user-option-div > ul > li.disabled {
    color: #CCC;
}

.fa-plus.systask {
    margin-left: -5px;
    font-size: 30px;
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 30px;
    padding: 2px;
    border: 3px solid #3B4CA8;
    border-radius: 50%;
}

.paddingtopzero {
    padding-top: 0px !important;
}

.paddingtopzero + .col-md-5 {
    padding-top: 5px;
}

.messagetitle {
    text-align:left;
    font-size: 18px;
    width: 99.99%;
    padding-left: 20px;
}
.messagetext {
    text-align:left;
    font-size: 14px;
    padding-right: 20px;
    width: 99.99%;
}

.newclass {
    width: 600px;
    max-width: 90%;
    height: auto;
    margin-top: -153px;
    /*margin-left: auto;
    margin-right: auto;*/
    background: #d5e5f6;
    border: 10px solid #fff;
    border-radius: 15px!important;
    box-shadow: 4px 4px 6px;
}