From de4dfdcbb057ec6f7c2705bbde78af2f970d5326 Mon Sep 17 00:00:00 2001 From: = Date: Fri, 19 Jun 2020 12:03:19 +0200 Subject: [PATCH] fix grafici --- .../wwwroot/assets/styles/base/piece.less | 124 ++++++------ .../base-components/aria-controstampo.vue | 48 ++--- .../estrazione-controstampo.vue | 39 ++-- .../base-components/vuoto-controstampo.vue | 47 ++--- .../base-components/estrazione-principale.vue | 47 ++--- .../base-components/estrazione-secondaria.vue | 37 ++-- .../setup/imbutitura/show-imbutitura-info.vue | 177 +++++++++--------- .../setup/vuoto/base-components/prevuoto.vue | 37 ++-- .../base-components/vuoto-ausiliario.vue | 47 ++--- .../base-components/vuoto-principale.vue | 47 ++--- 10 files changed, 348 insertions(+), 302 deletions(-) diff --git a/Thermo.Active/wwwroot/assets/styles/base/piece.less b/Thermo.Active/wwwroot/assets/styles/base/piece.less index a670c6c3..19bd6c33 100644 --- a/Thermo.Active/wwwroot/assets/styles/base/piece.less +++ b/Thermo.Active/wwwroot/assets/styles/base/piece.less @@ -1,79 +1,79 @@ // out: false, sourceMap: false, main: ../style.less -.piece_info{ +.piece_info { + display: flex; + align-items: center; + justify-content: space-evenly; + height: 84px; + border-bottom: 2px solid black; + + label { + font-size: 54px; + font-weight: 500; + text-align: right; + color: #4b4b4b; + } + + div { display: flex; - align-items: center; - justify-content: space-evenly; - height: 84px; - border-bottom: 2px solid black; + flex-flow: column; + + span { + font-family: "Work Sans"; + font-weight: 500; + line-height: 1; + letter-spacing: normal; + text-align: center; + color: #4b4b4b; + + &:first-of-type { + font-size: 12px; + text-transform: uppercase; + } + + &:last-of-type { + font-size: 25px; + } - label{ - font-size: 54px; - font-weight: 500; - text-align: right; - color: #4b4b4b; } + } - div{ - display: flex; - flex-flow: column; - - span{ - font-family: "Work Sans"; - font-weight: 500; - line-height: 1; - letter-spacing: normal; - text-align: center; - color: #4b4b4b; - - &:first-of-type{ - font-size: 12px; - text-transform: uppercase; - } - - &:last-of-type{ - font-size: 25px; - } - - } - } - - button{ - height: 16px; - width: 16px; - background-color: black; - } + button { + height: 16px; + width: 16px; + background-color: black; + } } -.sub_menu{ - margin-left: 250px; - display: grid; - grid-template-rows: repeat(3,60px); +.sub_menu { + margin-left: 250px; + display: grid; + grid-template-rows: repeat(3, 60px); - .piece_info{ - height: 60px; - - button{ - background-color: white; - border-color: black; - border-radius: 50%; - width: 50px; - height: 50px; - } + .piece_info { + height: 60px; + button { + background-color: white; + border-color: black; + border-radius: 50%; + width: 50px; + height: 50px; } - .row_1{ - grid-row: 1; - } + } - .row_2{ - grid-row: 2; - } + .row_1 { + grid-row: 1; + } - .row_3{ - grid-row: 3; - } + .row_2 { + grid-row: 2; + } + + .row_3 { + grid-row: 3; + } } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/aria-controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/aria-controstampo.vue index ec2216f5..516e68e6 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/aria-controstampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/aria-controstampo.vue @@ -4,25 +4,25 @@
@@ -46,15 +46,21 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/estrazione-controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/estrazione-controstampo.vue index a2f30077..6426a509 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/estrazione-controstampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/estrazione-controstampo.vue @@ -4,25 +4,25 @@
@@ -30,13 +30,18 @@
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/vuoto-controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/vuoto-controstampo.vue index a78fe214..d9dcc6a3 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/vuoto-controstampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/controstampo_setup/components/base-components/vuoto-controstampo.vue @@ -4,25 +4,25 @@
@@ -46,15 +46,20 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-principale.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-principale.vue index 187b60f2..2bdae603 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-principale.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-principale.vue @@ -4,32 +4,32 @@
@@ -43,7 +43,12 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-secondaria.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-secondaria.vue index 8d56539f..f63cc801 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-secondaria.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/estrazione/components/base-components/estrazione-secondaria.vue @@ -4,25 +4,25 @@
@@ -36,7 +36,12 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/imbutitura/show-imbutitura-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/imbutitura/show-imbutitura-info.vue index 95c6d0a5..42a29b08 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/imbutitura/show-imbutitura-info.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/imbutitura/show-imbutitura-info.vue @@ -1,90 +1,95 @@ \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue index 041b2080..ea0686a8 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/prevuoto.vue @@ -4,19 +4,19 @@

@@ -40,15 +40,20 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-ausiliario.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-ausiliario.vue index 6600f09c..2cce7608 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-ausiliario.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-ausiliario.vue @@ -4,27 +4,27 @@


@@ -48,15 +48,20 @@ >
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale.vue index 8f9948bb..5129abec 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/vuoto/base-components/vuoto-principale.vue @@ -4,27 +4,27 @@


@@ -48,15 +48,20 @@ >
- +