animation fix
This commit is contained in:
@@ -37,7 +37,9 @@
|
||||
padding-right: 24px;
|
||||
padding-left: 24px;
|
||||
min-width: calc(~"100% - 48px");
|
||||
transition: margin-left 200ms ease-in-out 200ms;
|
||||
// transition: margin-left 200ms ease-in-out 200ms;
|
||||
transition: margin-left 200ms ease-in-out;
|
||||
|
||||
&.collapsed {
|
||||
margin-left: -100%;
|
||||
}
|
||||
@@ -50,7 +52,9 @@
|
||||
height: 50px;
|
||||
margin-bottom: 12px;
|
||||
width: calc(~"100% - 72px");
|
||||
transition: margin-left 200ms ease-in-out 200ms;
|
||||
transition: margin-left 200ms ease-in-out;
|
||||
// transition: margin-left 200ms ease-in-out 200ms;
|
||||
|
||||
&.collapsed {
|
||||
margin-left: -100%;
|
||||
}
|
||||
|
||||
@@ -907,7 +907,7 @@ footer .container button:not([disabled]).big:before {
|
||||
padding-right: 24px;
|
||||
padding-left: 24px;
|
||||
min-width: calc(100% - 48px);
|
||||
transition: margin-left 200ms ease-in-out 200ms;
|
||||
transition: margin-left 200ms ease-in-out;
|
||||
}
|
||||
#alarm-list > .content.collapsed,
|
||||
#service-list > .content.collapsed {
|
||||
@@ -923,7 +923,7 @@ footer .container button:not([disabled]).big:before {
|
||||
height: 50px;
|
||||
margin-bottom: 12px;
|
||||
width: calc(100% - 72px);
|
||||
transition: margin-left 200ms ease-in-out 200ms;
|
||||
transition: margin-left 200ms ease-in-out;
|
||||
}
|
||||
#alarm-list > .content > .general-buttons.collapsed,
|
||||
#service-list > .content > .general-buttons.collapsed {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -25,7 +25,7 @@ export interface MachineStatusModel {
|
||||
areasConfiguration: Array<AreaModel>
|
||||
}
|
||||
|
||||
export interface buttonStatus{
|
||||
export interface buttonStatus {
|
||||
Active: boolean,
|
||||
Clickable: boolean,
|
||||
Id: number
|
||||
@@ -50,19 +50,21 @@ export interface MachineStatusActions {
|
||||
export const machineStatusStore = {
|
||||
state: {
|
||||
|
||||
powerOnAlarm: { Active: false, Clickable: false, Id:null },
|
||||
airPressureAlarm: { Active: false, Clickable: false, Id:null },
|
||||
protectionsAlarm: { Active: false, Clickable: false, Id:null },
|
||||
emergencyAlarm: { Active: false, Clickable: false, Id:null },
|
||||
settingsModeAlarm: { Active: false, Clickable: false, Id:null },
|
||||
keyReadyAlarm: { Active: false, Clickable: false, Id:null },
|
||||
powerOnAlarm: { Active: false, Clickable: false, Id: null },
|
||||
airPressureAlarm: { Active: false, Clickable: false, Id: null },
|
||||
protectionsAlarm: { Active: false, Clickable: false, Id: null },
|
||||
emergencyAlarm: { Active: false, Clickable: false, Id: null },
|
||||
settingsModeAlarm: { Active: false, Clickable: false, Id: null },
|
||||
keyReadyAlarm: { Active: false, Clickable: false, Id: null },
|
||||
|
||||
resetAxesAlarm: { Active: false, Clickable: false, Id:null },
|
||||
waterJet1Alarm: { Active: false, Clickable: false, Id:null },
|
||||
waterJet2Alarm: { Active: false, Clickable: false, Id:null },
|
||||
resetAxesAlarm: { Active: false, Clickable: false, Id: null },
|
||||
waterJet1Alarm: { Active: false, Clickable: false, Id: null },
|
||||
waterJet2Alarm: { Active: false, Clickable: false, Id: null },
|
||||
|
||||
ncReady: false,
|
||||
|
||||
_functions: new Map<number, signalr_process.ProcessData>(),
|
||||
functions: [],
|
||||
areasConfiguration: []
|
||||
|
||||
} as MachineStatusModel,
|
||||
|
||||
Reference in New Issue
Block a user