mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix issues
This commit is contained in:
parent
c46ac9e2c5
commit
bf4a59b115
|
@ -85,7 +85,7 @@ export default mixins(titleChange).extend({
|
|||
}
|
||||
|
||||
.execution-icon.success {
|
||||
color: $--custom-success-text-light;
|
||||
color: var(--color-success);
|
||||
}
|
||||
|
||||
.container {
|
||||
|
|
|
@ -18,16 +18,6 @@ $--custom-expression-background: #f7f5ff;
|
|||
|
||||
$--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-danger-color: #f45959;
|
||||
$--badge-danger-background-color: #fef0f0;
|
||||
|
|
|
@ -79,6 +79,8 @@ import {
|
|||
Message,
|
||||
Notification,
|
||||
} from 'element-ui';
|
||||
import CollapseTransition from 'element-ui/lib/transitions/collapse-transition';
|
||||
|
||||
import lang from 'element-ui/lib/locale/lang/en';
|
||||
import locale from 'element-ui/lib/locale';
|
||||
|
||||
|
@ -168,6 +170,8 @@ Vue.use(Calendar);
|
|||
Vue.use(Backtop);
|
||||
Vue.use(PageHeader);
|
||||
|
||||
Vue.component(CollapseTransition.name, CollapseTransition)
|
||||
|
||||
Vue.use(Loading.directive);
|
||||
|
||||
Vue.prototype.$loading = Loading.service;
|
||||
|
|
Loading…
Reference in a new issue