diff --git a/Step/wwwroot/assets/styles/base/card.less b/Step/wwwroot/assets/styles/base/card.less index 21067b14..04d7101b 100644 --- a/Step/wwwroot/assets/styles/base/card.less +++ b/Step/wwwroot/assets/styles/base/card.less @@ -666,6 +666,17 @@ align-items: center; justify-content: space-between; margin-top: 8px; + + &._7{ + min-height: 26px; + } + &._8{ + min-height: 22px; + } + &._9{ + min-height: 18px; + } + .variable{ font-size: 48px; width: 75px; @@ -673,6 +684,19 @@ font-weight: bold; color: @color-greyish-brown; text-align: right; + + &._7{ + font-size: 42px; + } + &._8{ + font-size: 36px; + } + &._9{ + font-size: 29px; + } + &.more9{ + width: 69px; + } } .number{ width: 130px; @@ -685,6 +709,21 @@ color: @color-greyish-brown; padding-right: 8px; font-size: 20px; + + &._7{ + height: 26px; + } + &._8{ + height: 22px; + } + &._9{ + height: 18px; + font-size: 18px; + } + &.more9{ + margin-right: 5px; + } + } } .axes:nth-child(odd) .number{ @@ -1040,16 +1079,19 @@ max-width: 100%; } .noimage{ - display: block; - margin: auto; + display: flex; + align-items: center; + justify-content: center; height: 290px; - width: 90%; + width: 100%; + max-width: 100%; text-align: center; - line-height: 290px; color: @color-greyish-brown; font-size: 24px; box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4); border: 1px solid rgba(0, 0, 0, 0.1); + padding-left: 100px; + padding-right: 100px; } } diff --git a/Step/wwwroot/assets/styles/base/modals.less b/Step/wwwroot/assets/styles/base/modals.less index 3e465442..ed91e8a4 100644 --- a/Step/wwwroot/assets/styles/base/modals.less +++ b/Step/wwwroot/assets/styles/base/modals.less @@ -866,7 +866,6 @@ width: 5%; } .first-column { - height: calc(~"100% - 78px"); min-width: 215px; border-right: solid 2px @color-whitethree; display: flex; diff --git a/Step/wwwroot/assets/styles/style.css b/Step/wwwroot/assets/styles/style.css index 87e93360..d4f8fb57 100644 --- a/Step/wwwroot/assets/styles/style.css +++ b/Step/wwwroot/assets/styles/style.css @@ -801,7 +801,6 @@ width: 5%; } .modal.modal-load-program .modal-load-program-body .first-column { - height: calc(100% - 78px); min-width: 215px; border-right: solid 2px #e7e7e7; display: flex; @@ -4783,6 +4782,18 @@ footer .container button.big:before { justify-content: space-between; margin-top: 8px; } +.card-axes-production .first-box-axes .axes._7, +.card-axes-production .second-box-axes .axes._7 { + min-height: 26px; +} +.card-axes-production .first-box-axes .axes._8, +.card-axes-production .second-box-axes .axes._8 { + min-height: 22px; +} +.card-axes-production .first-box-axes .axes._9, +.card-axes-production .second-box-axes .axes._9 { + min-height: 18px; +} .card-axes-production .first-box-axes .axes .variable, .card-axes-production .second-box-axes .axes .variable { font-size: 48px; @@ -4792,6 +4803,22 @@ footer .container button.big:before { color: #4b4b4b; text-align: right; } +.card-axes-production .first-box-axes .axes .variable._7, +.card-axes-production .second-box-axes .axes .variable._7 { + font-size: 42px; +} +.card-axes-production .first-box-axes .axes .variable._8, +.card-axes-production .second-box-axes .axes .variable._8 { + font-size: 36px; +} +.card-axes-production .first-box-axes .axes .variable._9, +.card-axes-production .second-box-axes .axes .variable._9 { + font-size: 29px; +} +.card-axes-production .first-box-axes .axes .variable.more9, +.card-axes-production .second-box-axes .axes .variable.more9 { + width: 69px; +} .card-axes-production .first-box-axes .axes .number, .card-axes-production .second-box-axes .axes .number { width: 130px; @@ -4805,6 +4832,23 @@ footer .container button.big:before { padding-right: 8px; font-size: 20px; } +.card-axes-production .first-box-axes .axes .number._7, +.card-axes-production .second-box-axes .axes .number._7 { + height: 26px; +} +.card-axes-production .first-box-axes .axes .number._8, +.card-axes-production .second-box-axes .axes .number._8 { + height: 22px; +} +.card-axes-production .first-box-axes .axes .number._9, +.card-axes-production .second-box-axes .axes .number._9 { + height: 18px; + font-size: 18px; +} +.card-axes-production .first-box-axes .axes .number.more9, +.card-axes-production .second-box-axes .axes .number.more9 { + margin-right: 5px; +} .card-axes-production .first-box-axes .axes:nth-child(odd) .number, .card-axes-production .second-box-axes .axes:nth-child(odd) .number { background-color: #f3f3f3; @@ -5154,16 +5198,19 @@ footer .container button.big:before { max-width: 100%; } .card-job-production .card-job-production-body .card-job-production-body-top .noimage { - display: block; - margin: auto; + display: flex; + align-items: center; + justify-content: center; height: 290px; - width: 90%; + width: 100%; + max-width: 100%; text-align: center; - line-height: 290px; color: #4b4b4b; font-size: 24px; box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4); border: 1px solid rgba(0, 0, 0, 0.1); + padding-left: 100px; + padding-right: 100px; } .card-job-production .card-job-production-body .card-job-production-body-bottom { width: 464px; diff --git a/Step/wwwroot/src/modules/base-components/cards/card-axes-production.vue b/Step/wwwroot/src/modules/base-components/cards/card-axes-production.vue index 2cbafd24..eb2ba898 100644 --- a/Step/wwwroot/src/modules/base-components/cards/card-axes-production.vue +++ b/Step/wwwroot/src/modules/base-components/cards/card-axes-production.vue @@ -2,11 +2,11 @@