/*!
* yseditor - A simple and extensible web editor.
* Author: Yusuf Sezer <yusufsezer@mail.com>
* Version: v0.1.1
* Url: https://github.com/yusufsefasezer/ysEditor.js
* License: MIT
*/

/* Editor */
/* Toolbar */
/* Content */
/* Footer */
.yseditor {
    max-width: auto !important;
    border: 1px solid var(--color-light);
    border-radius:4px;
}
.yseditor .yseditor-toolbar {
    padding: 2px;
    border-bottom: 1px solid var(--color-light);
    background: #fafafa;
    border-radius: 4px 4px 0 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.yseditor .yseditor-toolbar button {
    padding: 0px 6px;
    border: none;
    background: none;
    outline: none;
    color: gray;
}
.yseditor .yseditor-toolbar button:hover {
    background-color: #eee;
    color: black;
}
.yseditor .yseditor-content {
    padding: 0.5rem;
}
.yseditor .yseditor-footer {
    background-color: #fafafa;
    padding: 4px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}