diff --git a/Thermo.Active/wwwroot/assets/icons/png/bg.png b/Thermo.Active/wwwroot/assets/icons/png/bg.png new file mode 100644 index 00000000..8ff9db1b Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/bg.png differ diff --git a/Thermo.Active/wwwroot/assets/icons/png/bg@2x.png b/Thermo.Active/wwwroot/assets/icons/png/bg@2x.png new file mode 100644 index 00000000..cfd380a7 Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/bg@2x.png differ diff --git a/Thermo.Active/wwwroot/assets/icons/png/bg@3x.png b/Thermo.Active/wwwroot/assets/icons/png/bg@3x.png new file mode 100644 index 00000000..b862a621 Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/bg@3x.png differ diff --git a/Thermo.Active/wwwroot/assets/icons/png/inv.png b/Thermo.Active/wwwroot/assets/icons/png/inv.png new file mode 100644 index 00000000..a672f1ac Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/inv.png differ diff --git a/Thermo.Active/wwwroot/assets/icons/png/inv@2x.png b/Thermo.Active/wwwroot/assets/icons/png/inv@2x.png new file mode 100644 index 00000000..d34a723f Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/inv@2x.png differ diff --git a/Thermo.Active/wwwroot/assets/icons/png/inv@3x.png b/Thermo.Active/wwwroot/assets/icons/png/inv@3x.png new file mode 100644 index 00000000..a316d0b2 Binary files /dev/null and b/Thermo.Active/wwwroot/assets/icons/png/inv@3x.png differ diff --git a/Thermo.Active/wwwroot/assets/styles/base/dashboard.less b/Thermo.Active/wwwroot/assets/styles/base/dashboard.less new file mode 100644 index 00000000..65e87ec6 --- /dev/null +++ b/Thermo.Active/wwwroot/assets/styles/base/dashboard.less @@ -0,0 +1,21 @@ +// out: false, sourceMap: false, main: ../style.less +@import "grid-system.less"; +@import "colors.less"; +@import "fonts.less"; +@modal: modal; +.dashboard{ + height: 100%; + width: 100%; + background-image: url("../../assets/icons/png/bg.png"); + section{ + display: flex; + .specific{ + display: flex; + flex-direction: column; + div{ + display: flex; + } + } + } + +} \ 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 e7f95591..8826bd99 100644 --- a/Thermo.Active/wwwroot/assets/styles/base/layout.less +++ b/Thermo.Active/wwwroot/assets/styles/base/layout.less @@ -1,6 +1,7 @@ // out: false, sourceMap: false, main: ../style.less @import "colors.less"; @import "modals.less"; +@import "dashboard.less"; @import "pirometro.less"; @import "riscaldi.less"; @import "formato.less"; diff --git a/Thermo.Active/wwwroot/assets/styles/style.css b/Thermo.Active/wwwroot/assets/styles/style.css index b3896cf5..8668a83d 100644 --- a/Thermo.Active/wwwroot/assets/styles/style.css +++ b/Thermo.Active/wwwroot/assets/styles/style.css @@ -3670,6 +3670,21 @@ box-sizing: border-box; resize: none; } +.dashboard { + height: 100%; + width: 100%; + background-image: url("../../assets/icons/png/bg.png"); +} +.dashboard section { + display: flex; +} +.dashboard section .specific { + display: flex; + flex-direction: column; +} +.dashboard section .specific div { + display: flex; +} .modal.pirometro-info { width: 1820px; height: 980px; diff --git a/Thermo.Active/wwwroot/src/App.vue b/Thermo.Active/wwwroot/src/App.vue index 12f90cab..73ca5028 100644 --- a/Thermo.Active/wwwroot/src/App.vue +++ b/Thermo.Active/wwwroot/src/App.vue @@ -1,7 +1,7 @@