﻿
#editor-resources-base-container
{
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: calc(var(--ui-editor-base-layout-bot) - 33px); /* fixed height */
    width: 100%;
}

#ui-editor-resources-container
{
    position: relative;
    padding: 0px;
    padding-bottom: 100px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    scroll-behavior: smooth;
    height: auto;
    overflow: visible;
    width: 100%;
    flex-shrink: 0;
}


.editor-resource-item
{
    position: relative;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 76px;
    margin: 5px;
    overflow: clip;
}

    .editor-resource-item img
    {
        position: relative;
        display: block;
        max-width: 64px;
        max-height: 64px;
        background-color: var(--ui-editor-button-color);
        cursor: default;
        transition-duration: 0.1s;
        border-color: white;
        border-width: 2px;
        border-radius: 5px;
        border-style: solid;
        border-image-width: auto;
    }

        .editor-resource-item img:hover
        {
            background-color: var(--ui-editor-button-hover-color);
            cursor: pointer;
        }
