/*
 * plugin.css (RSX)
 *
 * Copyright © 2024 RSX Technologies GmbH - All Rights Reserved.
 *
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * This file and all it's contents are proprietary and confidential.
 *
 * Maintained by Rogiel Sulzbach, 2024
 *
 * @file plugin.css
 * @copyright 2024 RSX Technologies GmbH. All rights reserved.
 * @section License
 */

.rsx-component,
.rsx-fatcomponent,
.rsx-resource {
    white-space: nowrap;
}

.rsx-component ::after,
.rsx-fatcomponent ::after,
.rsx-resource ::after {
    padding-left: 10px;
    opacity: 50%;
    display: inline-block;
}

.rsx-component ::after {
    content: "Component";
}

.rsx-fatcomponent ::after {
    content: "FatComponent";
}

.rsx-resource ::after {
    content: "Resource";
}