﻿.editor {
    height: 100%;
}
    .editor .editorBar {
        margin-bottom: 8px;
    }
        .editor .editorBar ul {
            margin: 0;
            padding: 0;
            list-style: none;
            overflow: hidden;
            overflow-x: auto;
            white-space: nowrap;
        }
        .editor .editorBar li {
            display: inline-block;
            background-color: #e0e4e6;
            border-radius: 3px;
            color: #666d75;
            font-size: 14px;
            font-weight: 500;
            padding: 0 7px;
            line-height: 24px;
            margin-right: 2px;
        }
            .editor .editorBar li.divider {
                margin-left: 5px;
            }
            .editor .editorBar li.upload {
                font-weight: 400;
                display: none;
            }
                .editor .editorBar li.upload span.progress {
                    display: inline;
                    font-weight: 500;
                    padding-left: 4px;
                    background-color: unset;
                    font-size: 14px;
                    overflow: unset;
                    border-radius: unset;
                    height: unset;
                }

            .editor .editorBar li:hover {
                background-color: #677077;
                color: #FFF;
                cursor: pointer;
            }
            .editor .editorBar li.upload:hover {
                background-color: #e0e4e6;
                color: #666d75;
            }

    .editor textarea {
        height: 295px !important;
        margin-bottom: 1px !important;
    }

@media (max-width: 575.98px) {
    .editor textarea {
        height: calc(100% - 40px) !important;
        margin-bottom: 1px !important;
    }

    .editor .editorBar li.upload {
        position: absolute;
        left: 15px;
        width: calc(100% - 30px);
        text-align: center;
    }
}