


/* 拖移效果 */

.drag-handle {
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}


/* 編輯器 */
.tox-tinymce {
    box-shadow: 0 0 5px white !important;
    /* 外框陰影 */
}

.tox .tox-edit-area__iframe {
    background-color: #1e1e1e !important;
    color: white;
    /* 字體顏色 */
    border: 0;
    box-sizing: border-box;
    flex: 1;
    height: 100%;
    position: absolute;
    width: 100%;
}

.tox.tox-edit-focus .tox-edit-area::before {
    opacity: 0 !important;
    /* 隱藏編輯器邊框 */
}




