﻿/* @define TraitsEditor */
.TraitsEditor {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
}

.TraitsEditor-body {
    display: flex;
    flex: 1 1 auto;
    min-height: 1em;
    height: 100%;
}

.TraitsEditor-addTraitButton {
    float: right;
    margin-left: 15px;
}

.TraitsEditor-modalHeader {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.TraitsEditor-modalCloseIcon {
    color: grey;
    cursor: pointer;
    margin-right: 5px;
    margin-top: 5px;
}

.TraitsEditor-modalUserNotInDefaultLocaleWarning {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.TraitsEditor-markedForDeletionBanner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 15px;
    background: #fdf2d1;
    border: 1px solid #fceec0;
    border-radius: 4px;
}

.TraitsEditor-markedForDeletionBannerText {
    margin-right: 15px;
    font-size: 14px;
    color: #806420;
}

.TraitsEditor-editorPaneHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.TraitsEditor-editorPaneHeaderText {
    margin: 0;
}

.TraitsEditor-linkToHighestAncestorEntityMarkedForDeletion {
    color: #806420;
    text-decoration: underline;
}
