.userLink {

    display: inline-flex;
    margin: 4px 4px 0 4px;

    width: calc( 100% - 8px );
    height: 24px ;

    overflow-y: hidden;

    flex:1 0 auto;
    flex-direction: row;
    flex-wrap: wrap;

    background-color: #DADADA;
    border-radius: 12px;

    cursor: pointer;

}

.userLink.expand {
    height: auto;
    min-height: 24px;
}

.userLink > .linkStatus {

    margin: 6px;

    position: relative;

    display: inline-flex;
    flex: 0 0 auto;

    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #A40000;

}
.userLink > .linkStatus.on {
    background-color: #00A400;
}
.userLink > .linkStatus.off {
    background-color: #A40000;
}

.userLink > .linkUser {

    margin: 0;
    padding: 0;

    position: relative;

    display: inline-flex;
    flex: 0 1 auto;

    width: auto;
    height: 24px;

    line-height: 24px;
    text-shadow: 0 0 1px #212121;


    background-color: #DADADA;
    color: #212121;


}

.userLink > .linkSpacer {

    margin: 0;
    padding: 0;

    position: relative;

    display: inline-flex;
    flex: 1 0 auto;
}


.userLink > .linkArrow {


    margin: 6px 4px;


    position: relative;

    display: inline-flex;
    flex: 0 0 auto;

    width: 12px;
    height: 12px;

    font-family: FontAwesome;
    font-size: 12px;
    line-height: 12px;

    border-radius: 12px;
    background-color: #DADADA;

}

.userLink > .linkDetail {
    padding-left: 44px;
    position: relative;
    width: calc( 100% - 44px );
    height: auto;
    min-height: 18px;
    display: none;
    background-color: #7A7A7A;
    border-bottom: 1px solid #DADADA;
    cursor: default;
}
.userLink > .linkDetail:last-of-type {
    border-bottom: none;
}

.userLink.expand > .linkDetail {
    display: inline-flex;
    flex: 0 0 auto;
}

.detailTime {
    font-size: 12px;
    line-height: 18px;
    color: #DADADA;
}