| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 | /**
 * Toolbar side panel main container element.
 */
.use-new-toolbox #sideToolbarContainer {
    background-color: $newToolbarBackgroundColor;
    /**
     * Make the sidebar flush with the top of the toolbar. Take the size of
     * the toolbar and subtract from 100%.
     */
    height: calc(100% - #{$newToolbarSizeWithPadding});
    left: 0;
    .side-toolbar-close {
        background: gray;
        border: 3px solid rgba(255, 255, 255, 0.1);
        border-radius: 100%;
        color: white;
        cursor:pointer;
        height: 10px;
        line-height: 10px;
        padding: 4px;
        position: absolute;
        right: 5px;
        text-align: center;
        top: 5px;
        width: 10px;
        z-index: 1;
    }
    #chatconversation {
        top: 15px;
    }
}
#sideToolbarContainer {
    background-color: $sideToolbarContainerBg;
    height: 100%;
    left: $defaultToolbarSize;
    max-width: $sidebarWidth;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
    z-index: $sideToolbarContainerZ;
    /**
     * Labels inside the side panel.
     */
    label {
        color: $baseLight;
    }
    /**
     * Form elements and blocks.
     */
    input,
    a,
    .sideToolbarBlock,
    .form-control {
        display: block;
        margin-top: 15px;
        margin-left: 10%;
        width: 80%;
    }
    /**
     * Specify styling of elements inside a block.
     */
    .sideToolbarBlock {
        input, a {
            margin-left: 0;
            margin-top: 5px;
            width: 100%;
        }
    }
    /**
     * Inner container, for example settings or profile.
     */
    .sideToolbarContainer__inner {
        display: none;
        height: 100%;
        width: $sidebarWidth;
        position: absolute;
        box-sizing: border-box;
        color: #FFF;
        .input-control {
            border: 0;
        }
        /**
         * Titles and subtitles of inner containers.
         */
        div.title, div.subTitle {
            margin: 24px 0 11px;
        }
        /**
         * Main title size.
         */
        div.title {
            color: $toolbarTitleColor;
            text-align: center;
            font-size: $toolbarTitleFontSize;
        }
        /**
         * First element after a title.
         */
        .first {
            margin-top: 0 !important;
        }
    }
    .settings-menu {
        display: flex;
        flex-direction: column;
        padding-left: 10%;
        padding-right: 10%;
        .moderator-checkbox {
            display: inline-block;
            margin: 0 5px 0;
            width: auto;
        }
        .moderator-option {
            margin-top: 15px;
        }
        .subTitle {
            color: $defaultSideBarFontColor;
            font-size: 11px;
            font-weight: 500;
        }
    }
}
/**
 * Profile
 */
.auth_container {
    ul {
        padding: 0;
        li {
            list-style-type: none;
            a.authButton {
                width: 160px;
                margin: 10px 20px;
                padding: 3px 29px;
                box-sizing: border-box;
                background-color: #06a5df;
                border-radius: 4px;
                cursor: pointer;
                color: $defaultColor;
                text-decoration: none;
                text-align: center;
            }
        }
    }
}
 |