/*
 * Shopware Administration
 * Text editor link menu scrolling fix
 */

.sw-text-editor-toolbar-button__link-menu {
    height: 350px !important;
    max-height: 350px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/*
 * Keep Add / Remove visible near the bottom
 */
.sw-text-editor-toolbar-button__link-menu-buttons {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 20 !important;

    background: #ffffff !important;
    padding-top: 12px !important;
    padding-bottom: 4px !important;
}

/*
 * Ensure popup appears above surrounding elements
 */
.sw-text-editor-toolbar-button__children {
    z-index: 10000 !important;
}

/*
 * Better scrollbar behavior
 */
.sw-text-editor-toolbar-button__link-menu {
    overscroll-behavior: contain;
    scrollbar-width: thin;
}
