diff --git a/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200503231334.ts b/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200503231334.ts
new file mode 100644
index 00000000..e68a2194
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200503231334.ts
@@ -0,0 +1,57 @@
+declare module Recipe{
+
+ interface IRange{
+ min: number;
+ max: number;
+ }
+
+ interface IStatus{
+ visible: boolean;
+ enabled: boolean;
+ hasError: boolean;
+ }
+
+ interface IValue{
+ range:IRange,
+ status:IStatus,
+ unitMeasure:string,
+ valueAct: number
+ }
+
+ interface IRecipe{
+ vacuum_main_start?:IValue,
+ vacuum_main_delay?:IValue,
+ vacuum_main_max_time?:IValue,
+ vacuum_main_1_chart_setpointx?:IValue,
+ vacuum_main_1_chart_setpointy?:IValue,
+ vacuum_main_2_chart_setpointx?:IValue,
+ vacuum_main_2_chart_setpointy?:IValue,
+ vacuum_main_3_chart_setpointx?:IValue,
+ vacuum_main_3_chart_setpointy?:IValue,
+ vacuum_main_manual?:IValue,
+ vacuum_direct_enabled?:IValue,
+ vacuum_direct_delay?:IValue,
+ vacuum_direct_time?:IValue,
+ vacuum_aux_enabled?:IValue,
+ vacuum_aux_delay?:IValue,
+ vacuum_aux_max_time?:IValue,
+ vacuum_aux_1_chart_setpointx?:IValue,
+ vacuum_aux_1_chart_setpointy?:IValue,
+ vacuum_aux_2_chart_setpointx?:IValue,
+ vacuum_aux_2_chart_setpointy?:IValue,
+ vacuum_aux_3_chart_setpointx?:IValue,
+ vacuum_aux_3_chart_setpointy?:IValue,
+ vacuum_aux_manual?:IValue,
+ vacuum_pre_enabled?:IValue,
+ vacuum_pre_delay?:IValue,
+ vacuum_pre_max_time?:IValue,
+ vacuum_pre_1_chart_setpointx?:IValue,
+ vacuum_pre_1_chart_setpointy?:IValue,
+ vacuum_pre_2_chart_setpointx?:IValue,
+ vacuum_pre_2_chart_setpointy?:IValue,
+ vacuum_pre_3_chart_setpointx?:IValue,
+ vacuum_pre_3_chart_setpointy?:IValue
+ }
+
+
+}
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200504112349.ts b/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200504112349.ts
new file mode 100644
index 00000000..ac8d196d
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/@types/recipe-current.d_20200504112349.ts
@@ -0,0 +1,57 @@
+declare module Recipe{
+
+ interface IRange{
+ min: number;
+ max: number;
+ }
+
+ interface IStatus{
+ visible: boolean;
+ enabled: boolean;
+ hasError: boolean;
+ }
+
+ interface IValue{
+ range:IRange,
+ status:IStatus,
+ unitMeasure:string,
+ valueAct: number
+ }
+
+ interface IRecipe{
+ vacuum_main_start?:IValue,
+ vacuum_main_delay?:IValue,
+ vacuum_main_max_time?:IValue,
+ vacuum_main_1_chart_setpointx?:IValue,
+ vacuum_main_1_chart_setpointy?:IValue,
+ vacuum_main_2_chart_setpointx?:IValue,
+ vacuum_main_2_chart_setpointy?:IValue,
+ vacuum_main_3_chart_setpointx?:IValue,
+ vacuum_main_3_chart_setpointy?:IValue,
+ vacuum_main_manual?:IValue,
+ vacuum_direct_enabled?:IValue,
+ vacuum_direct_delay?:IValue,
+ vacuum_direct_time?:IValue,
+ vacuum_aux_enabled?:IValue,
+ vacuum_aux_delay?:IValue,
+ vacuum_aux_max_time?:IValue,
+ vacuum_aux_1_chart_setpointx?:IValue,
+ vacuum_aux_1_chart_setpointy?:IValue,
+ vacuum_aux_2_chart_setpointx?:IValue,
+ vacuum_aux_2_chart_setpointy?:IValue,
+ vacuum_aux_3_chart_setpointx?:IValue,
+ vacuum_aux_3_chart_setpointy?:IValue,
+ vacuum_aux_manual?:IValue,
+ vacuum_pre_enabled?:IValue,
+ vacuum_pre_delay?:IValue,
+ vacuum_pre_max_time?:IValue,
+ vacuum_pre_1_chart_setpointx?:IValue,
+ vacuum_pre_1_chart_setpointy?:IValue,
+ vacuum_pre_2_chart_setpointx?:IValue,
+ vacuum_pre_2_chart_setpointy?:IValue,
+ vacuum_pre_3_chart_setpointx?:IValue,
+ vacuum_pre_3_chart_setpointy?:IValue
+ }
+
+
+}
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504095105.ts b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504095105.ts
new file mode 100644
index 00000000..afc3e070
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504095105.ts
@@ -0,0 +1,48 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import Slider from "@/app_modules_thermo/components/slider.vue"
+import Scheda from "@/app_modules_thermo/components/scheda.vue"
+
+@Component({name:'vuotoprincipale', components: { slider:Slider, scheda:Scheda}})
+export default class VuotoPrincipale extends Vue{
+
+ Recipe:Recipe.IRecipe={
+ vacuum_main_delay:{
+ range:{
+ min:8,
+ max:105
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:57
+ },
+ vacuum_main_max_time:{
+ range:{
+ min:9,
+ max:127
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:30
+ },
+ };
+
+ @Prop({default:0})
+ ritardo:number;
+
+ @Prop({default:0})
+ percentuale:number;
+
+ @Prop({default:0})
+ durata:number;
+
+}
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504101519.vue b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504101519.vue
new file mode 100644
index 00000000..6a4dfe88
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504101519.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.ts b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.ts
new file mode 100644
index 00000000..d1958f93
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.ts
@@ -0,0 +1,50 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import Slider from "@/app_modules_thermo/components/slider.vue"
+import Scheda from "@/app_modules_thermo/components/scheda.vue"
+
+@Component({name:'vuotoprincipale', components: { slider:Slider, scheda:Scheda}})
+export default class VuotoPrincipale extends Vue{
+
+ Recipe:Recipe.IRecipe={
+ vacuum_main_delay:{
+ range:{
+ min:8,
+ max:105
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:57
+ },
+ vacuum_main_max_time:{
+ range:{
+ min:9,
+ max:127
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:30
+ },
+ };
+
+ @Prop({default:0})
+ ritardo:number;
+ @Prop({default:0})
+ percentuale:number;
+ @Prop({default:0})
+ durata:number;
+
+ mock_ritardo:number=this.ritardo;
+ mock_percentuale:number=this.percentuale;
+ mock_durata:number=this.durata;
+
+}
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.vue b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.vue
new file mode 100644
index 00000000..ea97211b
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112349.vue
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.ts b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.ts
new file mode 100644
index 00000000..688bc25b
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.ts
@@ -0,0 +1,63 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import Slider from "@/app_modules_thermo/components/slider.vue"
+import Scheda from "@/app_modules_thermo/components/scheda.vue"
+
+@Component({name:'vuotoprincipale', components: { slider:Slider, scheda:Scheda}})
+export default class VuotoPrincipale extends Vue{
+
+ Recipe:Recipe.IRecipe={
+ vacuum_main_delay:{
+ range:{
+ min:8,
+ max:105
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:57
+ },
+ vacuum_main_max_time:{
+ range:{
+ min:9,
+ max:127
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:30
+ },
+ vacuum_main_manual:{
+ range:{
+ min:4,
+ max:115
+ },
+ status:{
+ visible:true,
+ enabled:true,
+ hasError:false
+ },
+ unitMeasure:"",
+ valueAct:8
+ },
+ };
+
+ @Prop({default:0})
+ ritardo:number;
+ @Prop({default:0})
+ percentuale:number;
+ @Prop({default:0})
+ durata:number;
+
+ mock_ritardo:number=this.ritardo;
+ mock_percentuale:number=this.percentuale;
+ mock_durata:number=this.durata;
+
+}
\ No newline at end of file
diff --git a/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.vue b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.vue
new file mode 100644
index 00000000..d8394fb2
--- /dev/null
+++ b/.history/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale_20200504112646.vue
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/icons/png/star.png b/Thermo.Active/wwwroot/assets/icons/png/star.png
new file mode 100644
index 00000000..51d56b48
Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/star.png differ
diff --git a/Thermo.Active/wwwroot/assets/icons/png/star@2x.png b/Thermo.Active/wwwroot/assets/icons/png/star@2x.png
new file mode 100644
index 00000000..4ac4b609
Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/star@2x.png differ
diff --git a/Thermo.Active/wwwroot/assets/icons/png/star@3x.png b/Thermo.Active/wwwroot/assets/icons/png/star@3x.png
new file mode 100644
index 00000000..20455aa9
Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/star@3x.png differ
diff --git a/Thermo.Active/wwwroot/assets/icons/png/tast-disable.png b/Thermo.Active/wwwroot/assets/icons/png/tast-disable.png
new file mode 100644
index 00000000..95c33ed2
Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/tast-disable.png differ
diff --git a/Thermo.Active/wwwroot/assets/icons/svg/disegno-controstampo-quote-velocita.svg b/Thermo.Active/wwwroot/assets/icons/svg/disegno-controstampo-quote-velocita.svg
new file mode 100644
index 00000000..064b33cb
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/icons/svg/disegno-controstampo-quote-velocita.svg
@@ -0,0 +1,240 @@
+
+
+
+
diff --git a/Thermo.Active/wwwroot/assets/icons/svg/paddle-altra-funzione.svg b/Thermo.Active/wwwroot/assets/icons/svg/paddle-altra-funzione.svg
new file mode 100644
index 00000000..c7bc0709
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/icons/svg/paddle-altra-funzione.svg
@@ -0,0 +1,30 @@
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/icons/svg/paddle-riscaldo.svg b/Thermo.Active/wwwroot/assets/icons/svg/paddle-riscaldo.svg
new file mode 100644
index 00000000..6b9a810a
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/icons/svg/paddle-riscaldo.svg
@@ -0,0 +1,29 @@
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/avvio-prod.less b/Thermo.Active/wwwroot/assets/styles/base/avvio-prod.less
new file mode 100644
index 00000000..da482df2
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/styles/base/avvio-prod.less
@@ -0,0 +1,34 @@
+// out: false, sourceMap: false, main: ../style.less
+@import "grid-system.less";
+@import "colors.less";
+@import "fonts.less";
+@modal: modal;
+
+.@{modal}.avvio-produzione-info {
+ margin-top: 100px;
+ width: 653px;
+ height: 616px;
+
+ section.body{
+
+ section{
+ justify-content: center;
+
+ .specific{
+
+ .disabled{
+ width: 420px;
+ height: 330px;
+ }
+
+ .tast{
+ margin-left: 25%;
+ }
+
+ }
+
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/ciclo.less b/Thermo.Active/wwwroot/assets/styles/base/ciclo.less
index c0863f3a..3c7a79af 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/ciclo.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/ciclo.less
@@ -50,26 +50,27 @@
.circle1{
position: relative;
- top: 130px;
+ top: 200px;
right: 25px;
}
.circle2{
position: relative;
- top: 180px;
+ top: 400px;
right: 25px;
}
.circle3{
+ width: 135px;
position: relative;
- top: 175px;
+ top: 545px;
right: 410px;
}
.circle4{
position: relative;
- top: 60px;
- right: 180px;
+ top: 585px;
+ right: 200px;
}
}
diff --git a/Thermo.Active/wwwroot/assets/styles/base/circlegantt.less b/Thermo.Active/wwwroot/assets/styles/base/circlegantt.less
new file mode 100644
index 00000000..83f1a351
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/styles/base/circlegantt.less
@@ -0,0 +1,92 @@
+// out: false, sourceMap: false, main: ../style.less
+@import "grid-system.less";
+@import "colors.less";
+@import "fonts.less";
+
+.circle-gantt{
+ height: 70px;
+
+ .specific{
+
+ div{
+
+ &:first-of-type{
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-end;
+ height: 70px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #57636b;
+
+ label{
+ margin-left: 37%;
+ }
+
+ }
+
+ &:last-of-type{
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ margin-top: -66px;
+ height: 40px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #c0c7cc;
+
+ label{
+ margin-left: 25%;
+ }
+
+ }
+
+ }
+
+ &:first-of-type{
+
+ div{
+
+ &:first-of-type{
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-end;
+ width: 34px;
+ height: 70px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #57636b;
+
+ label{
+ margin-left: 25%;
+ }
+
+ }
+
+ &:last-of-type{
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-end;
+ margin-top: -66px;
+ width: 34px;
+ height: 40px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #c0c7cc;
+
+ img{
+ margin-left: 25%;
+ flex-shrink: 0;
+ width: 20px;
+ height: 20px;
+ }
+
+ }
+
+ }
+
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/estrazione.less b/Thermo.Active/wwwroot/assets/styles/base/estrazione.less
index b869d1b1..d32bebe1 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/estrazione.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/estrazione.less
@@ -7,16 +7,24 @@
.@{modal}.estrazione-info {
width: 1820px;
height: 785px;
- .specific {
- justify-content: flex-end;
-.box{
- background-color: #e5f3ff;
-}
-}
+ section.body{
+ section{
+ .specific {
+ justify-content: flex-end;
+ padding-left: 10px;
+
+ .box{
+ margin:0;
+ background-color: #e5f3ff;
+ }
+ }
+ }
+
+ }
}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/layout.less b/Thermo.Active/wwwroot/assets/styles/base/layout.less
index f04c8c32..41dc93ab 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/layout.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/layout.less
@@ -1,4 +1,5 @@
// out: false, sourceMap: false, main: ../style.less
+@import "setup.less";
@import "colors.less";
@import "modals.less";
@import "pirometro.less";
@@ -6,8 +7,10 @@
@import "formato.less";
@import "slider.less";
@import "tastierino.less";
+@import "circlegantt.less";
+@import "paddle.less";
@import "arretramento-riscaldi.less";
-@import "setup.less";
+@import "avvio-prod.less";
@import "ciclo.less";
@import "raffreddamento.less";
@import "processo.less";
diff --git a/Thermo.Active/wwwroot/assets/styles/base/opzioni.less b/Thermo.Active/wwwroot/assets/styles/base/opzioni.less
index 8259cb30..7eed4148 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/opzioni.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/opzioni.less
@@ -15,8 +15,10 @@
margin: 0;
}
- .section{
- display: flex;
+ section.body{
+
+ section{
+ padding: 0px;
.specific{
@@ -60,31 +62,33 @@
}
- }
-
- aside{
+ aside{
- button{
- display: block;
- background-color: #bbbcbc;
- color: #002680;
- padding: 22px 16px;
- margin: 2px 0;
- width: 547px;
- height: 70px;
- border: none;
- text-align: left;
- cursor: pointer;
- font-size: 17px;
- }
+ button{
+ display: block;
+ background-color: #bbbcbc;
+ color: #002680;
+ padding: 22px 16px;
+ margin: 2px 0;
+ width: 547px;
+ height: 70px;
+ border: none;
+ text-align: left;
+ cursor: pointer;
+ font-size: 17px;
+ }
+
+ .active{
+ background-color: #fff;
+ font-weight: bold;
+ border-top: 2px solid #002680;
+ }
- .active{
- background-color: #fff;
- font-weight: bold;
- border-top: 2px solid #002680;
}
}
-}
+ }
+
+ }
diff --git a/Thermo.Active/wwwroot/assets/styles/base/paddle.less b/Thermo.Active/wwwroot/assets/styles/base/paddle.less
new file mode 100644
index 00000000..e8c1944e
--- /dev/null
+++ b/Thermo.Active/wwwroot/assets/styles/base/paddle.less
@@ -0,0 +1,188 @@
+// out: false, sourceMap: false, main: ../style.less
+@import "grid-system.less";
+@import "colors.less";
+@import "fonts.less";
+
+html {
+ height: 100%;
+ overflow:hidden;
+}
+
+ body {
+ border: 0; margin: 0; padding: 0;
+ height: 100%;
+ }
+
+ .hidden {
+ visibility: hidden;
+ }
+
+.container{
+
+ #app{
+
+ nav {
+ position: absolute;
+ top: 50%;
+ right: 0;
+
+ .active button{
+ transform: translate(-761px, 0px);
+ }
+
+ div{
+
+ button {
+ position: relative;
+ height: 30px;
+ width: 32px;
+ display: block;
+ z-index: 9999;
+ border: 0;
+ border-radius: 0;
+ pointer-events: all;
+ background: #dddddd;
+ border-bottom-left-radius: 90px;
+ border-top-left-radius: 90px;
+ height: 90px;
+ width: 45px;
+
+ div{
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ grid-template-rows: 1fr 1fr;
+ align-items: center;
+ justify-items: center;
+ padding: 5px;
+
+
+ div {
+ width: 2px;
+ height: 2px;
+ border-radius: 10px;
+ margin: 2px;
+ background: #002680;
+
+ }
+
+ }
+
+ }
+
+ }
+ }
+
+
+ // .slide-enter-active,
+ // .slide-leave-active
+ // {
+ // transition: left,right 0s ease-in-out;
+ // }
+
+ // .slide-enter,
+ // .slide-leave-to {
+ // transition: right,left 0s ease-in-out
+ // }
+
+ .sidebar{
+
+ .sidebar-backdrop{
+ width: 100vw;
+ height: 100vh;
+ position: fixed;
+ top: 0;
+ left: 0;
+ cursor: pointer;
+ }
+
+ .sidebar-panel{
+
+ overflow-y: auto;
+ background-color: #130f40;
+ position: fixed;
+ right: 0;
+ top: 141px;
+ height: 100vh;
+ z-index: 900;
+ padding: 3rem 20px 2rem 20px;
+ width: 721px;
+ height: 920px;
+ border-radius: 4px;
+ box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+ background-color: #dddddd;
+
+ .text-head-sidebar{
+ margin: 10px auto;
+ font-size: 24px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ text-align: center;
+ color: #002680;
+ }
+
+ .box-sidebar-panel{
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ align-items: center;
+ justify-items: center;
+
+ .sidebar-panel-nav{
+ width: 286px;
+ height: 100px;
+ border-radius: 2px;
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
+ background-color: #808e96;
+ margin: 10px 30px;
+
+ .text-box-paddle{
+ display: flex;
+ width: 268px;
+ height: 78px;
+ font-family: WorkSans;
+ font-size: 18px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #ffffff;
+ margin: 10px;
+
+ i{
+ text-align: end;
+ width: 50px;
+ color: #bbbcbc;
+ }
+
+ label{
+ width: 117px;
+ margin: 10px;
+ }
+
+ }
+
+ .text-box-paddle.text-soft{
+ label{
+ width: 100%;
+ align-self: center;
+ }
+ }
+
+ }
+
+ }
+
+
+ }
+
+
+
+ }
+
+ }
+
+}
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/pirometro.less b/Thermo.Active/wwwroot/assets/styles/base/pirometro.less
index ddd84787..acaa83b1 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/pirometro.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/pirometro.less
@@ -10,83 +10,84 @@
width: 1820px;
height: 980px;
- section{
-
- .specific{
- width: 470px;
- @{pirometro-margin}:37%;
- }
-
- .termospecific{
- @{pirometro-margin}:0%;
-
- .svg-area{
- padding-left: 90px;
- width: 1270px;
- height: 800px;
-
- .disegnoTermoSuperiore{
- flex-shrink: 0;
- width: 1100px;
- height: 750px;
- }
-
- .border-termo-superiore{
-
- .circle1{
- position: relative;
- top: 135px;
- right: 1150px;
- }
-
- .circle2{
- position: relative;
- top: 355px;
- right: 1150px;
- }
-
- .circle3{
- position: relative;
- top: 425px;
- right: 1150px;
- }
-
- .circle4{
- position: relative;
- top: 470px;
- right: 635px;
- }
-
- .circle5{
- position: relative;
- top: 400px;
- right: 255px;
- }
-
- .circle6{
- width: 64px;
- height: 20px;
- color:white;
- object-fit: contain;
- background-color: #c03d58;
- position: relative;
- top: 95px;
- right: 125px;
- }
-
- }
+ section.body{
+
+ section{
+ .specific{
+ width: 470px;
+ @{pirometro-margin}:37%;
}
- button{
- margin-left: 5px;
- width: 48px;
- height: 48px;
- object-fit: contain;
- border-radius: 2px;
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
- border: solid 1px #001e48;
- background-image: linear-gradient(to bottom, #1756ad, #002680);
+ .termospecific{
+ @{pirometro-margin}:0%;
+
+ .svg-area{
+ padding-left: 90px;
+ width: 1270px;
+ height: 800px;
+
+ .disegnoTermoSuperiore{
+ flex-shrink: 0;
+ width: 1100px;
+ height: 750px;
+ }
+
+ .border-termo-superiore{
+
+ .circle1{
+ position: relative;
+ top: 135px;
+ right: 1150px;
+ }
+
+ .circle2{
+ position: relative;
+ top: 355px;
+ right: 1150px;
+ }
+
+ .circle3{
+ position: relative;
+ top: 425px;
+ right: 1150px;
+ }
+
+ .circle4{
+ position: relative;
+ top: 470px;
+ right: 635px;
+ }
+
+ .circle5{
+ position: relative;
+ top: 400px;
+ right: 255px;
+ }
+
+ .circle6{
+ width: 100px;
+ background-color: #c03d58;
+ position: relative;
+ top: 87px;
+ right: 150px;
+ }
+
+ }
+
+ }
+
+ button{
+ margin-left: 5px;
+ width: 48px;
+ height: 48px;
+ object-fit: contain;
+ border-radius: 2px;
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
+ border: solid 1px #001e48;
+ background-image: linear-gradient(to bottom, #1756ad, #002680);
+ }
+
}
}
diff --git a/Thermo.Active/wwwroot/assets/styles/base/processo.less b/Thermo.Active/wwwroot/assets/styles/base/processo.less
index 83652a1c..fac2e2a5 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/processo.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/processo.less
@@ -7,5 +7,54 @@
.@{modal}.processo-info {
width: 1820px;
height: 980px;
- margin: 150px 193px;
+ margin-top: 50px;
+
+ header{
+ font-size: 22px;
+ color: #4b4b4b;
+
+ .tab-header{
+ padding: 10px 0px;
+
+ button{
+ padding: 0;
+ display: flex;
+ justify-content: flex-start;
+ margin-right: 10px;
+ width: 149px;
+ height: 48px;
+ border-radius: 2px;
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
+ background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
+ font-size: 14px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: 1.15;
+ letter-spacing: normal;
+ color: #4b4b4b;
+
+ img{
+ margin-right: 20px;
+ }
+
+ }
+
+ label{
+ width: 106px;
+ height: 32px;
+ font-size: 32px;
+ font-weight: 600;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: 1;
+ letter-spacing: normal;
+ text-align: right;
+ color: #545454;
+ }
+
+ }
+
+ }
+
}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/base/quote-velocita.less b/Thermo.Active/wwwroot/assets/styles/base/quote-velocita.less
index ac2d1a58..7dc7a3b9 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/quote-velocita.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/quote-velocita.less
@@ -48,22 +48,15 @@
height: 795px;
}
+ .disegnoControstampoQuoteVelocita{
+ flex-shrink: 0;
+ margin-left: 600px;
+ width: 1156px;
+ height: 800px;
+ }
+
.input-circles{
-
- span{
- object-fit: contain;
- font-size: 22px;
- font-weight: 500;
- font-stretch: normal;
- font-style: normal;
- line-height: normal;
- letter-spacing: normal;
- text-align: center;
- color: white;
- background-color: #979797;
- }
-
.circle{
width: 147px;
height: 60px;
@@ -181,16 +174,57 @@
.circle-stampo-10{
position: relative;
- bottom: 557px;
+ bottom: 560px;
right: 769px;
}
.circle-stampo-11{
position: relative;
- top: 38px;
+ top: 35px;
right: 781px;
}
+ .circle-controstampo-1{
+ position: relative;
+ top: 300px;
+ right: 1090px;
+ }
+
+ .circle-controstampo-2{
+ position: relative;
+ top: 570px;
+ right: 990px;
+ }
+
+ .circle-controstampo-3{
+ position: relative;
+ top: 475px;
+ right: 770px;
+ }
+
+ .circle-controstampo-4{
+ position: relative;
+ right: 650px;
+ }
+
+ .circle-controstampo-5{
+ position: relative;
+ top: 45px;
+ right: 480px;
+ }
+
+ .circle-controstampo-6{
+ position: relative;
+ top: -335px;
+ right: 650px;
+ }
+
+ .circle-controstampo-7{
+ position: relative;
+ top: 400px;
+ right: 650px;
+ }
+
}
}
diff --git a/Thermo.Active/wwwroot/assets/styles/base/scheda.less b/Thermo.Active/wwwroot/assets/styles/base/scheda.less
index 3b079e64..01ff405c 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/scheda.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/scheda.less
@@ -10,7 +10,7 @@
.input-area{
width: 480px;
- margin: 3px;
+ margin: 4px;
margin-bottom: 0px;
}
diff --git a/Thermo.Active/wwwroot/assets/styles/base/setup.less b/Thermo.Active/wwwroot/assets/styles/base/setup.less
index 5ee37eb3..a9386061 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/setup.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/setup.less
@@ -41,6 +41,7 @@
.auto{
overflow-y: auto;
+ overflow-x: hidden;
}
aside {
@@ -75,6 +76,19 @@
display: flex;
flex-direction: column;
+ span{
+ object-fit: contain;
+ font-size: 22px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ text-align: center;
+ color: white;
+ background-color: #979797;
+ }
+
.circle {
width: 141px;
height: 60px;
@@ -87,6 +101,21 @@
border: solid 4px #9b9b9b;
}
+ input{
+ width: 40px;
+ height: 21px;
+ margin: auto;
+ object-fit: contain;
+ font-size: 20px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #6d6d6d;
+ border: none;
+ }
+
label {
margin: auto;
object-fit: contain;
@@ -125,12 +154,10 @@
header {
background-color: @color-white;
color: @color-darkish-blue;
-
font-weight: 600;
font-size: 24px;
text-align: left;
padding: 0px 23px;
-
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
@@ -249,9 +276,13 @@
color: #90BF3D;
}
- &.fa-minus-circle{
- color: #7A7C74;
+ &.fa-check-circle.undone-step{
+ color: #1791FF;
}
+
+ // &.fa-minus-circle{
+ // color: #7A7C74;
+ // }
}
position: relative;
@@ -390,10 +421,19 @@
}
.rect {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding-inline-end: 20px;
+ // display: flex;
+ // align-items: center;
+ // justify-content: flex-end;
+ // padding-inline-end: 20px;
+ object-fit: contain;
+ font-size: 20px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #6d6d6d;
+ text-align: center;
width: 98px;
height: 48px;
border-radius: 2px;
diff --git a/Thermo.Active/wwwroot/assets/styles/base/tastierino.less b/Thermo.Active/wwwroot/assets/styles/base/tastierino.less
index 276dddb9..1709ee9f 100644
--- a/Thermo.Active/wwwroot/assets/styles/base/tastierino.less
+++ b/Thermo.Active/wwwroot/assets/styles/base/tastierino.less
@@ -4,86 +4,103 @@
@import "fonts.less";
.tast{
- margin-top: 30px;
- margin-left: -350px;
height: 261px;
width: 293px;
background-color:@color-silver;
+
+ .mask{
+ display: grid;
+ grid-template-columns: repeat(4, 52px);
+ grid-template-rows: repeat(4, 52px);
+ grid-gap: 5px 8px;
+ margin-top: 7%;
+ margin-left: 10%;
+
+ button{
+ border:none;
+ background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
+ box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+ color:@color-darkish-blue;
+ font-size:20px;
+ }
+ .zero{
+ grid-column: 1/span 2;
+ grid-row: 4/5;
+ border:none;
+ background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
+ box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+ }
+ .submit{
+ grid-column-start: 4;
+ grid-column-end: 5;
+ grid-row-start: 3;
+ grid-row-end: 5;
+ border:none;
+ background-image: linear-gradient(to bottom, #000080 0%, #191970 98%);
+ box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+
+ img{
+ width: 30px;
+ height: 30px;
+ }
+
+ }
+ .bCanc{
+ grid-column: 4/5;
+ grid-row: 2/3;
+
+ img{
+ width: 30px;
+ height: 25px;
+ }
+
+ }
+ .b1{
+ grid-column: 1/2;
+ grid-row: 3/4;
+ }
+ .b2{
+ grid-column: 2/3;
+ grid-row: 3/4;
+ }
+ .b3{
+ grid-column: 3/4;
+ grid-row: 3/4;
+ }
+ .b4{
+ grid-column: 1/2;
+ grid-row: 2/3;
+ }
+ .b5{
+ grid-column: 2/3;
+ grid-row: 2/3;
+ }
+ .b6{
+ grid-column: 3/4;
+ grid-row: 2/3;
+ }
+ .b7{
+ grid-column: 1/2;
+ grid-row: 1/2;
+ }
+ .b8{
+ grid-column: 2/3;
+ grid-row: 1/2;
+ }
+ .b9{
+ grid-column: 3/4;
+ grid-row: 1/2;
+ }
+
+ .bPunto{
+ grid-column: 3/4;
+ grid-row: 4/5;
+ }
+ .bDel{
+ grid-column: 4/5;
+ grid-row: 1/2;
+ }
+
+ }
+
}
-.mask{
- display: grid;
- grid-template-columns: repeat(4, 52px);
- grid-template-rows: repeat(4, 52px);
- grid-gap: 5px 8px;
- margin-top: 7%;
- margin-left: 10%;
-}
-.tasto{
- border:none;
- background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
- box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
-}
-.zero{
- grid-column: 1/span 2;
- grid-row: 4/5;
- border:none;
- background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
- box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
-}
-.submit{
- grid-column-start: 4;
- grid-column-end: 5;
- grid-row-start: 3;
- grid-row-end: 5;
- border:none;
- background-image: linear-gradient(to bottom, #000080 0%, #191970 98%);
- box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
-}
-.b1{
- grid-column: 1/2;
- grid-row: 3/4;
-}
-.b2{
- grid-column: 2/3;
- grid-row: 3/4;
-}
-.b3{
- grid-column: 3/4;
- grid-row: 3/4;
-}
-.b4{
- grid-column: 1/2;
- grid-row: 2/3;
-}
-.b5{
- grid-column: 2/3;
- grid-row: 2/3;
-}
-.b6{
- grid-column: 3/4;
- grid-row: 2/3;
-}
-.b7{
- grid-column: 1/2;
- grid-row: 1/2;
-}
-.b8{
- grid-column: 2/3;
- grid-row: 1/2;
-}
-.b9{
- grid-column: 3/4;
- grid-row: 1/2;
-}
-.bCanc{
- grid-column: 4/5;
- grid-row: 2/3;
-}
-.bPunto{
- grid-column: 3/4;
- grid-row: 4/5;
-}
-.bDel{
- grid-column: 4/5;
- grid-row: 1/2;
-}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/assets/styles/style.css b/Thermo.Active/wwwroot/assets/styles/style.css
index 9802d2cd..5cd1214d 100644
--- a/Thermo.Active/wwwroot/assets/styles/style.css
+++ b/Thermo.Active/wwwroot/assets/styles/style.css
@@ -1,6 +1,373 @@
@import url(../../libs/font-awesome/css/font-awesome.css);
@import url(../../libs/glyphicons/styles/glyphicons.css);
@import "iziToast.min.css";
+.setup {
+ padding-top: 50px;
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ flex-flow: column nowrap;
+ width: 100vw;
+ height: 100vh;
+}
+.setup hr {
+ flex-shrink: 0;
+ background-color: #979797;
+ width: 2px;
+ height: 100%;
+ margin: 0;
+ margin-left: 5px;
+}
+.setup .modal {
+ width: 1820px;
+ height: 980px;
+}
+.setup .modal section.body {
+ height: calc(100% - 66px);
+}
+.setup .modal section.body section {
+ height: 100%;
+ flex-flow: row nowrap;
+ padding: 14px;
+ display: flex;
+ justify-content: flex-start;
+ width: calc(100% - 28px);
+ height: calc(100% - 28px - 82px);
+}
+.setup .modal section.body section .auto {
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+.setup .modal section.body section aside {
+ display: flex;
+ justify-content: start;
+ flex-direction: column;
+ height: 100%;
+ width: 520px;
+ flex: 0 0 520px;
+ overflow-y: scroll;
+ padding-right: 10px;
+}
+.setup .modal section.body section aside hr {
+ flex-shrink: 0;
+ background-color: #979797;
+ width: 100%;
+ height: 2px;
+ margin-left: 0px;
+}
+.setup .modal section.body section .specific {
+ display: flex;
+ flex-direction: column;
+}
+.setup .modal section.body section .specific .svg-area {
+ display: flex;
+ justify-content: center;
+}
+.setup .modal section.body section .specific .svg-area .input-circles {
+ display: flex;
+ flex-direction: column;
+}
+.setup .modal section.body section .specific .svg-area .input-circles span {
+ object-fit: contain;
+ font-size: 22px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ text-align: center;
+ color: white;
+ background-color: #979797;
+}
+.setup .modal section.body section .specific .svg-area .input-circles .circle {
+ width: 141px;
+ height: 60px;
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
+ background-color: rgba(255, 255, 255, 0.8);
+ display: flex;
+ justify-content: flex-start;
+ object-fit: contain;
+ border-radius: 40.5px;
+ border: solid 4px #9b9b9b;
+}
+.setup .modal section.body section .specific .svg-area .input-circles input {
+ width: 40px;
+ height: 21px;
+ margin: auto;
+ object-fit: contain;
+ font-size: 20px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #6d6d6d;
+ border: none;
+}
+.setup .modal section.body section .specific .svg-area .input-circles label {
+ margin: auto;
+ object-fit: contain;
+ font-size: 20px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #6d6d6d;
+}
+.setup .modal section.body section .specific .svg-area .input-circles img {
+ margin: auto;
+ width: 20px;
+ height: 20px;
+ object-fit: contain;
+}
+.setup .modal section.body footer {
+ height: 82px;
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+}
+.setup .modal header {
+ background-color: #fff;
+ color: #002680;
+ font-weight: 600;
+ font-size: 24px;
+ text-align: left;
+ padding: 0px 23px;
+ display: flex;
+ flex-flow: row nowrap;
+ justify-content: space-between;
+ align-items: stretch;
+}
+.modal.setup-info header {
+ padding-left: 31px;
+ display: flex;
+ align-items: center;
+ font-size: 20px;
+ font-weight: bold;
+ color: darkblue;
+}
+.tab-header {
+ display: flex;
+ flex-flow: row;
+ align-items: stretch;
+ justify-content: flex-start;
+}
+.tab-header button {
+ background: none;
+ border: 1px solid #bbbcbc;
+ padding: 0 38px;
+ border-bottom: none;
+ font-size: 20px;
+ background-color: #bbbcbc;
+ color: #002680;
+}
+.tab-header button.active {
+ background-color: #fff;
+ font-weight: bold;
+ border-top: 2px solid #002680;
+}
+.modal.setup-info {
+ width: 1639px;
+ height: 695px;
+ background-color: #fff;
+ margin: 150px 193px;
+ box-shadow: none;
+}
+.modal.setup-info section {
+ height: 100%;
+}
+.modal.setup-info section .Rectangle {
+ width: calc(100% - 200px);
+ height: calc(100% - 200px);
+ background-color: #BBBCBC;
+ display: grid;
+ grid-template-columns: repeat(6, 1fr);
+ grid-template-rows: 1fr 1fr;
+ align-items: center;
+ justify-items: center;
+ padding: 100px;
+}
+.setup-button {
+ cursor: pointer;
+ display: grid;
+ width: 200px;
+ height: 128px;
+ grid-template-columns: 50px 1fr;
+ grid-template-rows: 1fr 50px;
+ position: relative;
+}
+.setup-button span,
+.setup-button label {
+ grid-column: 1;
+ display: flex;
+ align-items: flex-end;
+ color: #fff;
+ z-index: 2;
+ justify-content: center;
+ font-weight: 500;
+ font-size: 18px;
+ padding-left: 10px;
+}
+.setup-button label {
+ grid-column: 2;
+ color: #002680;
+ justify-content: flex-start;
+}
+.setup-button img {
+ grid-column: 2;
+ grid-row: 2;
+ z-index: 2;
+ margin: auto;
+}
+.setup-button i {
+ grid-column: 2;
+ grid-row: 2;
+ z-index: 2;
+ margin: auto;
+ transform: scale(1.5);
+}
+.setup-button i.fa-check-circle {
+ color: #90BF3D;
+}
+.setup-button i.fa-minus-circle {
+ color: #7A7C74;
+}
+.setup-button .background-top,
+.setup-button .background-bottom {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ height: 50%;
+ transform: skewX(12px);
+}
+.setup-button .background-top:after,
+.setup-button .background-bottom:after {
+ content: "";
+ display: block;
+ position: absolute;
+ left: 0;
+ top: 0;
+ height: 100%;
+ width: 35px;
+ background-color: #002680;
+}
+.setup-button .background-top {
+ background-image: linear-gradient(to bottom, #fff, #e6e6e6);
+ top: 0;
+ transform: skewX(20deg);
+}
+.setup-button .background-bottom {
+ background-image: linear-gradient(to bottom, #e6e6e6, #e2e2e2);
+ bottom: 0;
+ transform: skewX(-20deg);
+}
+.box {
+ margin-bottom: 30px;
+ box-sizing: border-box;
+ clear: both;
+}
+.box .header {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 44px;
+ width: 100%;
+ font-size: 24px;
+ font-weight: bold;
+ color: #fff;
+ background-color: #979797;
+}
+.box .body {
+ padding: 20px;
+ display: flex;
+ flex-flow: column;
+ justify-items: center;
+ padding-bottom: 10px;
+ border: 2px solid #979797;
+}
+.box .submit {
+ margin: auto;
+ width: 90px;
+ height: 48px;
+ object-fit: contain;
+ border-radius: 8px;
+ border: none;
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
+ background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
+}
+.box .submit label {
+ object-fit: contain;
+ font-size: 18px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ text-align: center;
+ color: #002680;
+}
+.input-area {
+ margin: 10px auto;
+ display: flex;
+ flex-flow: row;
+ align-items: center;
+ justify-content: space-between;
+ width: 100%;
+ height: 48px;
+}
+.input-area.col {
+ flex-flow: column;
+ align-items: flex-start;
+ height: auto;
+}
+.input-area h3 {
+ font-weight: normal;
+ color: #002680;
+ margin: 18px 0;
+}
+.input-area .buttons {
+ width: 100%;
+ display: flex;
+ flex-flow: row;
+ margin-bottom: 18px;
+}
+.input-area .buttons:last-child {
+ margin-bottom: 0;
+}
+.input-area label {
+ color: #002680;
+ font-size: 24px;
+ font-weight: 500;
+ flex: 1;
+}
+.input-area .rect {
+ object-fit: contain;
+ font-size: 20px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #6d6d6d;
+ text-align: center;
+ width: 98px;
+ height: 48px;
+ border-radius: 2px;
+ box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
+}
+.input-area select {
+ min-width: 150px;
+ height: 48px;
+ background-color: #fff;
+ padding: 0 20px;
+ font-size: 1rem;
+}
+.setup-play {
+ cursor: pointer;
+ margin: auto;
+ display: flex;
+}
.text-success {
color: #002680;
}
@@ -3674,59 +4041,56 @@
width: 1820px;
height: 980px;
}
-.modal.pirometro-info section .specific {
+.modal.pirometro-info section.body section .specific {
width: 470px;
margin-left: 37%;
}
-.modal.pirometro-info section .termospecific {
+.modal.pirometro-info section.body section .termospecific {
margin-left: 0%;
}
-.modal.pirometro-info section .termospecific .svg-area {
+.modal.pirometro-info section.body section .termospecific .svg-area {
padding-left: 90px;
width: 1270px;
height: 800px;
}
-.modal.pirometro-info section .termospecific .svg-area .disegnoTermoSuperiore {
+.modal.pirometro-info section.body section .termospecific .svg-area .disegnoTermoSuperiore {
flex-shrink: 0;
width: 1100px;
height: 750px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle1 {
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle1 {
position: relative;
top: 135px;
right: 1150px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle2 {
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle2 {
position: relative;
top: 355px;
right: 1150px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle3 {
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle3 {
position: relative;
top: 425px;
right: 1150px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle4 {
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle4 {
position: relative;
top: 470px;
right: 635px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle5 {
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle5 {
position: relative;
top: 400px;
right: 255px;
}
-.modal.pirometro-info section .termospecific .svg-area .border-termo-superiore .circle6 {
- width: 64px;
- height: 20px;
- color: white;
- object-fit: contain;
+.modal.pirometro-info section.body section .termospecific .svg-area .border-termo-superiore .circle6 {
+ width: 100px;
background-color: #c03d58;
position: relative;
- top: 95px;
- right: 125px;
+ top: 87px;
+ right: 150px;
}
-.modal.pirometro-info section .termospecific button {
+.modal.pirometro-info section.body section .termospecific button {
margin-left: 5px;
width: 48px;
height: 48px;
@@ -3989,13 +4353,11 @@
margin: 16px;
}
.tast {
- margin-top: 30px;
- margin-left: -350px;
height: 261px;
width: 293px;
background-color: #bbbcbc;
}
-.mask {
+.tast .mask {
display: grid;
grid-template-columns: repeat(4, 52px);
grid-template-rows: repeat(4, 52px);
@@ -4003,19 +4365,21 @@
margin-top: 7%;
margin-left: 10%;
}
-.tasto {
+.tast .mask button {
border: none;
background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+ color: #002680;
+ font-size: 20px;
}
-.zero {
+.tast .mask .zero {
grid-column: 1 / span 2;
grid-row: 0.8;
border: none;
background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
}
-.submit {
+.tast .mask .submit {
grid-column-start: 4;
grid-column-end: 5;
grid-row-start: 3;
@@ -4024,329 +4388,197 @@
background-image: linear-gradient(to bottom, #000080 0%, #191970 98%);
box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
}
-.b1 {
- grid-column: 0.5;
- grid-row: 0.75;
+.tast .mask .submit img {
+ width: 30px;
+ height: 30px;
}
-.b2 {
- grid-column: 0.66666667;
- grid-row: 0.75;
-}
-.b3 {
- grid-column: 0.75;
- grid-row: 0.75;
-}
-.b4 {
- grid-column: 0.5;
- grid-row: 0.66666667;
-}
-.b5 {
- grid-column: 0.66666667;
- grid-row: 0.66666667;
-}
-.b6 {
- grid-column: 0.75;
- grid-row: 0.66666667;
-}
-.b7 {
- grid-column: 0.5;
- grid-row: 0.5;
-}
-.b8 {
- grid-column: 0.66666667;
- grid-row: 0.5;
-}
-.b9 {
- grid-column: 0.75;
- grid-row: 0.5;
-}
-.bCanc {
+.tast .mask .bCanc {
grid-column: 0.8;
grid-row: 0.66666667;
}
-.bPunto {
+.tast .mask .bCanc img {
+ width: 30px;
+ height: 25px;
+}
+.tast .mask .b1 {
+ grid-column: 0.5;
+ grid-row: 0.75;
+}
+.tast .mask .b2 {
+ grid-column: 0.66666667;
+ grid-row: 0.75;
+}
+.tast .mask .b3 {
+ grid-column: 0.75;
+ grid-row: 0.75;
+}
+.tast .mask .b4 {
+ grid-column: 0.5;
+ grid-row: 0.66666667;
+}
+.tast .mask .b5 {
+ grid-column: 0.66666667;
+ grid-row: 0.66666667;
+}
+.tast .mask .b6 {
+ grid-column: 0.75;
+ grid-row: 0.66666667;
+}
+.tast .mask .b7 {
+ grid-column: 0.5;
+ grid-row: 0.5;
+}
+.tast .mask .b8 {
+ grid-column: 0.66666667;
+ grid-row: 0.5;
+}
+.tast .mask .b9 {
+ grid-column: 0.75;
+ grid-row: 0.5;
+}
+.tast .mask .bPunto {
grid-column: 0.75;
grid-row: 0.8;
}
-.bDel {
+.tast .mask .bDel {
grid-column: 0.8;
grid-row: 0.5;
}
-.modal.estrazione-info {
- width: 560px;
- height: 411px;
+.circle-gantt {
+ height: 70px;
}
-.setup {
- padding-top: 50px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- flex-flow: column nowrap;
- width: 100vw;
- height: 100vh;
-}
-.setup hr {
- flex-shrink: 0;
- background-color: #979797;
- width: 2px;
- height: 100%;
- margin: 0;
- margin-left: 5px;
-}
-.setup .modal {
- width: 1820px;
- height: 980px;
-}
-.setup .modal section.body {
- height: calc(100% - 66px);
-}
-.setup .modal section.body section {
- height: 100%;
- flex-flow: row nowrap;
- padding: 14px;
- display: flex;
- justify-content: flex-start;
- width: calc(100% - 28px);
- height: calc(100% - 28px - 82px);
-}
-.setup .modal section.body section .auto {
- overflow-y: auto;
-}
-.setup .modal section.body section aside {
- display: flex;
- justify-content: start;
- flex-direction: column;
- height: 100%;
- width: 520px;
- flex: 0 0 520px;
- overflow-y: scroll;
- padding-right: 10px;
-}
-.setup .modal section.body section aside hr {
- flex-shrink: 0;
- background-color: #979797;
- width: 100%;
- height: 2px;
- margin-left: 0px;
-}
-.setup .modal section.body section .specific {
+.circle-gantt .specific div:first-of-type {
display: flex;
flex-direction: column;
+ justify-content: flex-end;
+ height: 70px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #57636b;
}
-.setup .modal section.body section .specific .svg-area {
+.circle-gantt .specific div:first-of-type label {
+ margin-left: 37%;
+}
+.circle-gantt .specific div:last-of-type {
display: flex;
+ flex-direction: column;
justify-content: center;
+ margin-top: -66px;
+ height: 40px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #c0c7cc;
}
-.setup .modal section.body section .specific .svg-area .input-circles {
+.circle-gantt .specific div:last-of-type label {
+ margin-left: 25%;
+}
+.circle-gantt .specific:first-of-type div:first-of-type {
display: flex;
flex-direction: column;
+ justify-content: flex-end;
+ width: 34px;
+ height: 70px;
+ object-fit: contain;
+ border-radius: 2px;
+ background-color: #57636b;
}
-.setup .modal section.body section .specific .svg-area .input-circles .circle {
- width: 141px;
- height: 60px;
- box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
- background-color: rgba(255, 255, 255, 0.8);
+.circle-gantt .specific:first-of-type div:first-of-type label {
+ margin-left: 25%;
+}
+.circle-gantt .specific:first-of-type div:last-of-type {
display: flex;
- justify-content: flex-start;
+ flex-direction: column;
+ justify-content: flex-end;
+ margin-top: -66px;
+ width: 34px;
+ height: 40px;
object-fit: contain;
- border-radius: 40.5px;
- border: solid 4px #9b9b9b;
+ border-radius: 2px;
+ background-color: #c0c7cc;
}
-.setup .modal section.body section .specific .svg-area .input-circles label {
- margin: auto;
- object-fit: contain;
- font-size: 20px;
- font-weight: 500;
- font-stretch: normal;
- font-style: normal;
- line-height: normal;
- letter-spacing: normal;
- color: #6d6d6d;
-}
-.setup .modal section.body section .specific .svg-area .input-circles img {
- margin: auto;
+.circle-gantt .specific:first-of-type div:last-of-type img {
+ margin-left: 25%;
+ flex-shrink: 0;
width: 20px;
height: 20px;
- object-fit: contain;
}
-.setup .modal section.body footer {
- height: 82px;
- display: flex;
- justify-content: flex-end;
- align-items: center;
+html {
+ height: 100%;
+ overflow: hidden;
}
-.setup .modal header {
- background-color: #fff;
- color: #002680;
- font-weight: 600;
- font-size: 24px;
- text-align: left;
- padding: 0px 23px;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: stretch;
-}
-.modal.setup-info header {
- padding-left: 31px;
- display: flex;
- align-items: center;
- font-size: 20px;
- font-weight: bold;
- color: darkblue;
-}
-.tab-header {
- display: flex;
- flex-flow: row;
- align-items: stretch;
- justify-content: flex-start;
-}
-.tab-header button {
- background: none;
- border: 1px solid #bbbcbc;
- padding: 0 38px;
- border-bottom: none;
- font-size: 20px;
- background-color: #bbbcbc;
- color: #002680;
-}
-.tab-header button.active {
- background-color: #fff;
- font-weight: bold;
- border-top: 2px solid #002680;
-}
-.modal.setup-info {
- width: 1639px;
- height: 695px;
- background-color: #fff;
- margin: 150px 193px;
- box-shadow: none;
-}
-.modal.setup-info section {
+body {
+ border: 0;
+ margin: 0;
+ padding: 0;
height: 100%;
}
-.modal.setup-info section .Rectangle {
- width: calc(100% - 200px);
- height: calc(100% - 200px);
- background-color: #BBBCBC;
+.hidden {
+ visibility: hidden;
+}
+.container #app nav {
+ position: absolute;
+ top: 50%;
+ right: 0;
+}
+.container #app nav .active button {
+ transform: translate(-761px, 0px);
+}
+.container #app nav div button {
+ position: relative;
+ height: 30px;
+ width: 32px;
+ display: block;
+ z-index: 9999;
+ border: 0;
+ border-radius: 0;
+ pointer-events: all;
+ background: #dddddd;
+ border-bottom-left-radius: 90px;
+ border-top-left-radius: 90px;
+ height: 90px;
+ width: 45px;
+}
+.container #app nav div button div {
display: grid;
- grid-template-columns: repeat(6, 1fr);
+ grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr 1fr;
align-items: center;
justify-items: center;
- padding: 100px;
+ padding: 5px;
}
-.setup-button {
+.container #app nav div button div div {
+ width: 2px;
+ height: 2px;
+ border-radius: 10px;
+ margin: 2px;
+ background: #002680;
+}
+.container #app .sidebar .sidebar-backdrop {
+ width: 100vw;
+ height: 100vh;
+ position: fixed;
+ top: 0;
+ left: 0;
cursor: pointer;
- display: grid;
- width: 200px;
- height: 128px;
- grid-template-columns: 50px 1fr;
- grid-template-rows: 1fr 50px;
- position: relative;
}
-.setup-button span,
-.setup-button label {
- grid-column: 1;
- display: flex;
- align-items: flex-end;
- color: #fff;
- z-index: 2;
- justify-content: center;
- font-weight: 500;
- font-size: 18px;
- padding-left: 10px;
+.container #app .sidebar .sidebar-panel {
+ overflow-y: auto;
+ background-color: #130f40;
+ position: fixed;
+ right: 0;
+ top: 141px;
+ height: 100vh;
+ z-index: 900;
+ padding: 3rem 20px 2rem 20px;
+ width: 721px;
+ height: 920px;
+ border-radius: 4px;
+ box-shadow: 2px 10px 15px 0 rgba(0, 0, 0, 0.5);
+ background-color: #dddddd;
}
-.setup-button label {
- grid-column: 2;
- color: #002680;
- justify-content: flex-start;
-}
-.setup-button img {
- grid-column: 2;
- grid-row: 2;
- z-index: 2;
- margin: auto;
-}
-.setup-button i {
- grid-column: 2;
- grid-row: 2;
- z-index: 2;
- margin: auto;
- transform: scale(1.5);
-}
-.setup-button i.fa-check-circle {
- color: #90BF3D;
-}
-.setup-button i.fa-minus-circle {
- color: #7A7C74;
-}
-.setup-button .background-top,
-.setup-button .background-bottom {
- position: absolute;
- left: 0;
- width: 100%;
- height: 50%;
- transform: skewX(12px);
-}
-.setup-button .background-top:after,
-.setup-button .background-bottom:after {
- content: "";
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 35px;
- background-color: #002680;
-}
-.setup-button .background-top {
- background-image: linear-gradient(to bottom, #fff, #e6e6e6);
- top: 0;
- transform: skewX(20deg);
-}
-.setup-button .background-bottom {
- background-image: linear-gradient(to bottom, #e6e6e6, #e2e2e2);
- bottom: 0;
- transform: skewX(-20deg);
-}
-.box {
- margin-bottom: 30px;
- box-sizing: border-box;
- clear: both;
-}
-.box .header {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 44px;
- width: 100%;
+.container #app .sidebar .sidebar-panel .text-head-sidebar {
+ margin: 10px auto;
font-size: 24px;
- font-weight: bold;
- color: #fff;
- background-color: #979797;
-}
-.box .body {
- padding: 20px;
- display: flex;
- flex-flow: column;
- justify-items: center;
- padding-bottom: 10px;
- border: 2px solid #979797;
-}
-.box .submit {
- margin: auto;
- width: 90px;
- height: 48px;
- object-fit: contain;
- border-radius: 8px;
- border: none;
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
- background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
-}
-.box .submit label {
- object-fit: contain;
- font-size: 18px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
@@ -4355,61 +4587,65 @@
text-align: center;
color: #002680;
}
-.input-area {
- margin: 10px auto;
- display: flex;
- flex-flow: row;
+.container #app .sidebar .sidebar-panel .box-sidebar-panel {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 48px;
+ justify-items: center;
}
-.input-area.col {
- flex-flow: column;
- align-items: flex-start;
- height: auto;
-}
-.input-area h3 {
- font-weight: normal;
- color: #002680;
- margin: 18px 0;
-}
-.input-area .buttons {
- width: 100%;
- display: flex;
- flex-flow: row;
- margin-bottom: 18px;
-}
-.input-area .buttons:last-child {
- margin-bottom: 0;
-}
-.input-area label {
- color: #002680;
- font-size: 24px;
- font-weight: 500;
- flex: 1;
-}
-.input-area .rect {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding-inline-end: 20px;
- width: 98px;
- height: 48px;
+.container #app .sidebar .sidebar-panel .box-sidebar-panel .sidebar-panel-nav {
+ width: 286px;
+ height: 100px;
border-radius: 2px;
- box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
+ background-color: #808e96;
+ margin: 10px 30px;
}
-.input-area select {
- min-width: 150px;
- height: 48px;
- background-color: #fff;
- padding: 0 20px;
- font-size: 1rem;
-}
-.setup-play {
- cursor: pointer;
- margin: auto;
+.container #app .sidebar .sidebar-panel .box-sidebar-panel .sidebar-panel-nav .text-box-paddle {
display: flex;
+ width: 268px;
+ height: 78px;
+ font-family: WorkSans;
+ font-size: 18px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: normal;
+ letter-spacing: normal;
+ color: #ffffff;
+ margin: 10px;
+}
+.container #app .sidebar .sidebar-panel .box-sidebar-panel .sidebar-panel-nav .text-box-paddle i {
+ text-align: end;
+ width: 50px;
+ color: #bbbcbc;
+}
+.container #app .sidebar .sidebar-panel .box-sidebar-panel .sidebar-panel-nav .text-box-paddle label {
+ width: 117px;
+ margin: 10px;
+}
+.container #app .sidebar .sidebar-panel .box-sidebar-panel .sidebar-panel-nav .text-box-paddle.text-soft label {
+ width: 100%;
+ align-self: center;
+}
+.modal.estrazione-info {
+ width: 560px;
+ height: 411px;
+}
+.modal.avvio-produzione-info {
+ margin-top: 100px;
+ width: 653px;
+ height: 616px;
+}
+.modal.avvio-produzione-info section.body section {
+ justify-content: center;
+}
+.modal.avvio-produzione-info section.body section .specific .disabled {
+ width: 420px;
+ height: 330px;
+}
+.modal.avvio-produzione-info section.body section .specific .tast {
+ margin-left: 25%;
}
.modal.ciclo-info section .specific {
padding: 0 10px;
@@ -4440,23 +4676,24 @@
}
.modal.ciclo-info section .specific .svg-area .input-circles .circle1 {
position: relative;
- top: 130px;
+ top: 200px;
right: 25px;
}
.modal.ciclo-info section .specific .svg-area .input-circles .circle2 {
position: relative;
- top: 180px;
+ top: 400px;
right: 25px;
}
.modal.ciclo-info section .specific .svg-area .input-circles .circle3 {
+ width: 135px;
position: relative;
- top: 175px;
+ top: 545px;
right: 410px;
}
.modal.ciclo-info section .specific .svg-area .input-circles .circle4 {
position: relative;
- top: 60px;
- right: 180px;
+ top: 585px;
+ right: 200px;
}
.modal.ciclo-info section .specific .box {
margin-bottom: 10px;
@@ -4477,7 +4714,47 @@
.modal.processo-info {
width: 1820px;
height: 980px;
- margin: 150px 193px;
+ margin-top: 50px;
+}
+.modal.processo-info header {
+ font-size: 22px;
+ color: #4b4b4b;
+}
+.modal.processo-info header .tab-header {
+ padding: 10px 0px;
+}
+.modal.processo-info header .tab-header button {
+ padding: 0;
+ display: flex;
+ justify-content: flex-start;
+ margin-right: 10px;
+ width: 149px;
+ height: 48px;
+ border-radius: 2px;
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
+ background-image: linear-gradient(to bottom, #f1f1f1 0%, #bbbcbc 98%);
+ font-size: 14px;
+ font-weight: 500;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: 1.15;
+ letter-spacing: normal;
+ color: #4b4b4b;
+}
+.modal.processo-info header .tab-header button img {
+ margin-right: 20px;
+}
+.modal.processo-info header .tab-header label {
+ width: 106px;
+ height: 32px;
+ font-size: 32px;
+ font-weight: 600;
+ font-stretch: normal;
+ font-style: normal;
+ line-height: 1;
+ letter-spacing: normal;
+ text-align: right;
+ color: #545454;
}
.modal.progr-preriscaldo-info {
width: 1639px;
@@ -4739,17 +5016,11 @@
width: 1200px;
height: 795px;
}
-.modal.quote-velocita-info section .specific .svg-area .input-circles span {
- object-fit: contain;
- font-size: 22px;
- font-weight: 500;
- font-stretch: normal;
- font-style: normal;
- line-height: normal;
- letter-spacing: normal;
- text-align: center;
- color: white;
- background-color: #979797;
+.modal.quote-velocita-info section .specific .svg-area .disegnoControstampoQuoteVelocita {
+ flex-shrink: 0;
+ margin-left: 600px;
+ width: 1156px;
+ height: 800px;
}
.modal.quote-velocita-info section .specific .svg-area .input-circles .circle {
width: 147px;
@@ -4848,14 +5119,48 @@
}
.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-stampo-10 {
position: relative;
- bottom: 557px;
+ bottom: 560px;
right: 769px;
}
.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-stampo-11 {
position: relative;
- top: 38px;
+ top: 35px;
right: 781px;
}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-1 {
+ position: relative;
+ top: 300px;
+ right: 1090px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-2 {
+ position: relative;
+ top: 570px;
+ right: 990px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-3 {
+ position: relative;
+ top: 475px;
+ right: 770px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-4 {
+ position: relative;
+ right: 650px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-5 {
+ position: relative;
+ top: 45px;
+ right: 480px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-6 {
+ position: relative;
+ top: -335px;
+ right: 650px;
+}
+.modal.quote-velocita-info section .specific .svg-area .input-circles .circle-controstampo-7 {
+ position: relative;
+ top: 400px;
+ right: 650px;
+}
.modal.quote-velocita-info section .specific button {
margin-left: 10px;
width: 48px;
@@ -4876,17 +5181,17 @@
background-color: #979797;
margin: 0;
}
-.modal.opzioni-info .section {
- display: flex;
+.modal.opzioni-info section.body section {
+ padding: 0px;
}
-.modal.opzioni-info .section .specific:last-of-type {
+.modal.opzioni-info section.body section .specific:last-of-type {
margin-left: 100px;
width: 471px;
}
-.modal.opzioni-info .section .specific:first-of-type .box-color {
+.modal.opzioni-info section.body section .specific:first-of-type .box-color {
background-color: #ffffff;
}
-.modal.opzioni-info .section .specific:first-of-type button {
+.modal.opzioni-info section.body section .specific:first-of-type button {
background-color: #dddddd;
display: block;
color: #000000;
@@ -4898,17 +5203,17 @@
cursor: pointer;
font-size: 17px;
}
-.modal.opzioni-info .section .specific:first-of-type .active {
+.modal.opzioni-info section.body section .specific:first-of-type .active {
background-color: rgba(23, 145, 255, 0.75);
color: #ffffff;
}
-.modal.opzioni-info .section .specific:first-of-type label {
+.modal.opzioni-info section.body section .specific:first-of-type label {
font-size: 14px;
width: 60px;
margin-left: 5px;
margin-right: 30px;
}
-.modal.opzioni-info aside button {
+.modal.opzioni-info section.body section aside button {
display: block;
background-color: #bbbcbc;
color: #002680;
@@ -4921,7 +5226,7 @@
cursor: pointer;
font-size: 17px;
}
-.modal.opzioni-info aside .active {
+.modal.opzioni-info section.body section aside .active {
background-color: #fff;
font-weight: bold;
border-top: 2px solid #002680;
@@ -4942,10 +5247,12 @@
width: 1820px;
height: 785px;
}
-.modal.estrazione-info .specific {
+.modal.estrazione-info section.body section .specific {
justify-content: flex-end;
+ padding-left: 10px;
}
-.modal.estrazione-info .specific .box {
+.modal.estrazione-info section.body section .specific .box {
+ margin: 0;
background-color: #e5f3ff;
}
.scheda .body {
@@ -4953,7 +5260,7 @@
}
.scheda .body .input-area {
width: 480px;
- margin: 3px;
+ margin: 4px;
margin-bottom: 0px;
}
.modal.vuoto-info {
diff --git a/Thermo.Active/wwwroot/config.development.json b/Thermo.Active/wwwroot/config.development.json
index d47c9870..3f9529d8 100644
--- a/Thermo.Active/wwwroot/config.development.json
+++ b/Thermo.Active/wwwroot/config.development.json
@@ -2,6 +2,6 @@
"env": "development",
"api": {
"enabled": true,
- "apiServerUrl": "http://localhost:9000"
+ "apiServerUrl": "http://seriate.steamware.net:9000/"
}
}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/config.production.json b/Thermo.Active/wwwroot/config.production.json
index 42e97807..52d7f647 100644
--- a/Thermo.Active/wwwroot/config.production.json
+++ b/Thermo.Active/wwwroot/config.production.json
@@ -2,6 +2,6 @@
"env": "development",
"api": {
"enabled": false,
- "apiServerUrl": "https://localhost:9000"
+ "apiServerUrl": "http://seriate.steamware.net:9000/"
}
}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/index.html b/Thermo.Active/wwwroot/index.html
index 226df41d..f1b8ee9e 100644
--- a/Thermo.Active/wwwroot/index.html
+++ b/Thermo.Active/wwwroot/index.html
@@ -2,31 +2,30 @@
-
-
-
-
-
- CMS Active
+
+
+
+
+
+ CMS Active
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+