fix issues

This commit is contained in:
Mutasem 2021-07-28 15:04:46 +02:00
parent c46ac9e2c5
commit bf4a59b115
3 changed files with 5 additions and 11 deletions

View file

@ -85,7 +85,7 @@ export default mixins(titleChange).extend({
} }
.execution-icon.success { .execution-icon.success {
color: $--custom-success-text-light; color: var(--color-success);
} }
.container { .container {

View file

@ -18,16 +18,6 @@ $--custom-expression-background: #f7f5ff;
$--custom-window-sidebar-top : #fff5f2; $--custom-window-sidebar-top : #fff5f2;
$--custom-error-background : #ffe5e5;
$--custom-error-text : #eb2222;
$--custom-running-background : #ffffe5;
$--custom-running-text : #eb9422;
$--custom-success-background : #e3f0e4;
$--custom-success-text-light: #2f4;
$--custom-success-text : #40c351;
$--custom-warning-background : #ffffe5;
$--custom-warning-text : #eb9422;
// Badge // Badge
$--badge-danger-color: #f45959; $--badge-danger-color: #f45959;
$--badge-danger-background-color: #fef0f0; $--badge-danger-background-color: #fef0f0;

View file

@ -79,6 +79,8 @@ import {
Message, Message,
Notification, Notification,
} from 'element-ui'; } from 'element-ui';
import CollapseTransition from 'element-ui/lib/transitions/collapse-transition';
import lang from 'element-ui/lib/locale/lang/en'; import lang from 'element-ui/lib/locale/lang/en';
import locale from 'element-ui/lib/locale'; import locale from 'element-ui/lib/locale';
@ -168,6 +170,8 @@ Vue.use(Calendar);
Vue.use(Backtop); Vue.use(Backtop);
Vue.use(PageHeader); Vue.use(PageHeader);
Vue.component(CollapseTransition.name, CollapseTransition)
Vue.use(Loading.directive); Vue.use(Loading.directive);
Vue.prototype.$loading = Loading.service; Vue.prototype.$loading = Loading.service;