/**
 * Pimcore
 *
 * This source file is available under two different licenses:
 * - GNU General Public License version 3 (GPLv3)
 * - Pimcore Commercial License (PCL)
 * Full copyright and license information is available in
 * LICENSE.md which is distributed with this source code.
 *
 * @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
 * @license    http://www.pimcore.org/license     GPLv3 and PCL
 */

.asset_folder_preview .workflow-status {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
}

.asset_folder_preview .workflow-status::before {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
}

.asset_folder_preview .workflow-status[data-status="new"]::before {
    background-color: gray;
}
.asset_folder_preview .workflow-status[data-status="retouch"]::before {
    background-color: blue;
}
.asset_folder_preview .workflow-status[data-status="retouched"]::before {
    background-color: orange;
}
.asset_folder_preview .workflow-status[data-status="done"]::before {
    background-color: green;
}
.asset_folder_preview .workflow-status[data-status="cancel"]::before {
    background-color: red;
}
