mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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 {
|
.execution-icon.success {
|
||||||
color: $--custom-success-text-light;
|
color: var(--color-success);
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue