﻿/* @define ExampleEditor */
.ExampleEditor {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
}

.ExampleEditor-body {
    display: flex;
    flex: 1 1 auto;
    min-height: 1em;
    height: 100%;
}

.ExampleEditor-markedForDeletionBanner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 15px;
    background: #fdf2d1;
    border: 1px solid #fceec0;
    border-radius: 4px;
}

.ExampleEditor-markedForDeletionBannerText {
    margin-right: 15px;
    font-size: 14px;
    color: #806420;
}

.ExampleEditor-linkToHighestAncestorEntityMarkedForDeletion {
    color: #806420;
    text-decoration: underline;
}

.ExampleEditor-editorPaneHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ExampleEditor-editorPaneHeaderText {
    margin: 0;
}

.ExampleEditor-addChildEntityButton {
    float: right;
    margin-left: 15px;
}

.ExampleEditor-tabs {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
}

.ExampleEditor-tab {
    height: 100%;
}

.ExampleEditor-tabContent {
    padding-top: 15px;
}
