﻿html, body, #app {
    -webkit-user-select: text; /* Safari */
    -ms-user-select: text; /* IE 10 and IE 11 */
    -khtml-user-select: text;
    -moz-user-select: text;
    user-select: text; /* Standard syntax */
}


    
.udm-code-editor {
    font-family: monospace;
    font-size: small;
    width: 100%;
}


.udm-uielement-hascode {
    background-color: #00ff0033;
}

.udm-codeeditor-methods {
    max-height: 300px;
    border: none;
    margin-top: 0.5rem;
    overflow-y: auto;
}

.udm-codeeditor-fields {
    height: calc(100vh - 12rem);
}

.grid-hidden-header {
    display: none;
}


.hidden-text {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.hover-container:hover .hidden-text {
    visibility: visible;
    opacity: 1;
}

.hover-container:active .hidden-text {
    visibility: visible;
    opacity: 1;
} 

.udm-btn-code-copy {
    border: none;
    padding: 0.25rem;
    max-height: 2rem;
}

.udm-btn-code-copy:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.5);
}


.udm-dialog-settings {
    height: calc(100vh - 15rem);
    overflow-y: auto;
}

.udm-dialog-root-element {
    height: calc(100vh - 15rem);
    width: 100%;
    overflow-y: auto;
}


