/*
 * Плавная смена ui_theme (design/theme_recommendations.md §7.4).
 * Подключается после ui-appearance.css.
 */

@media (prefers-reduced-motion: no-preference) {
    html {
        transition:
            background-color 0.28s ease,
            color 0.28s ease;
    }

    body,
    .app-topbar,
    .crm-page-header,
    .modal-content,
    .card,
    .crm-table-shell,
    .table-responsive,
    .crm-warehouse-subnav-wrap,
    .offcanvas {
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease;
    }
}
