22581b2f创建于 2025年12月16日历史提交
/*
 * -------------------------------------------------------------------------
 * This file is part of the MindStudio project.
 * Copyright (c) 2025 Huawei Technologies Co.,Ltd.
 *
 * MindStudio is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 *
 *          http://license.coscl.org.cn/MulanPSL2
 *
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 * -------------------------------------------------------------------------
 */

.theme_dark .ant-pagination-prev .ant-pagination-item-link, .theme_dark .ant-pagination-next .ant-pagination-item-link {
    background-color: var(--grey80);
}

.theme_dark .ant-pagination-item-active {
    background-color: var(--grey80);
}

.theme_dark .ant-pagination-item {
    background-color: black;
}

.theme_dark .ant-pagination-item a {
    color: white;
}

.theme_dark .ant-breadcrumb a:hover * {
    color: #40a9ff;
}


.theme_dark .ant-select-multiple .ant-select-selection-item-remove svg {
    color: var(--grey20);
}

.theme_dark .ant-layout {
    background: var(--grey80);
}

.theme_dark .ant-notification-notice {
    background: var(--grey85);
}

.theme_dark .ant-breadcrumb a * {
    color: var(--grey10);
}

.theme_dark .ant-pagination-options-quick-jumper input {
    background: var(--grey90);
    color: var(--grey0);
}

/*
 * progress组件相关配置
 */
 .theme_dark .ant-progress.ant-progress-line {
    width: 100px;
 }

 .theme_dark .ant-progress .ant-progress-outer .ant-progress-inner {
    height: 4px;
 }

 .theme_dark .ant-progress .ant-progress-text {
    color: #40a9ff;
 }

/*弹窗对话框*/
.ant-modal-content{
    background: var(--mi-bg-color);
    color: var(--mi-text-color-primary);
}
.ant-modal-confirm-body .ant-modal-confirm-content {
    background: var(--mi-bg-color);
    color: var(--mi-text-color-primary);
}
.ant-modal-header{
    background: none;
}
.ant-modal-title{
    color: var(--mi-text-color-primary);
}
.ant-modal-close{
    color: var(--mi-text-color-primary);
}
.ant-modal-close:hover{
    color: var(--mi-text-color-primary);
    opacity: 0.7;
}