﻿/*
    
    CSS to backfill things that we don't have here but are expected by Orchard stuff.
    Using the TheAdmin theme as a base
    
*/

.hint {
    font-size: .875em;
    color: #6c757d !important;
    --bs-text-opacity: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.dashed::before {
    content: "— ";
}

/*
        *  swiped from TheAdmin theme CSS for the INotifier area   
        */
.message {
    position: relative;
}

.message {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.message-success {
    color: #0f5132;
}

.message-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
}

    .message-success .alert-link {
        color: #0c4128;
    }

.message-information {
    color: #055160;
}

.message-information {
    background-color: #cff4fc;
    border-color: #b6effb;
}

    .message-information .alert-link {
        color: #04414d;
    }

.message-warning {
    color: #664d03;
}

.message-warning {
    background-color: #fff3cd;
    border-color: #ffecb5;
}

    .message-warning .alert-link {
        color: #523e02;
    }

.message-error {
    color: #842029;
}

.message-error {
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

    .message-error .alert-link {
        color: #6a1a21;
    }
