diff --git a/Step/wwwroot/assets/styles/base/head.less b/Step/wwwroot/assets/styles/base/head.less index 7c80ff16..cf58032a 100644 --- a/Step/wwwroot/assets/styles/base/head.less +++ b/Step/wwwroot/assets/styles/base/head.less @@ -194,11 +194,12 @@ font-weight: 600; span.process { color: @color-darkish-blue; - width: 48px; + width: 35px; font-size: 14px; - height: 21px; + height: 20px; flex-grow: 0; - line-height: 21px; + line-height: 20px; + margin-top: 1px; text-transform: uppercase; text-align: center; border: 1px solid @color-darkish-blue; diff --git a/Step/wwwroot/assets/styles/base/layout.less b/Step/wwwroot/assets/styles/base/layout.less index 103669b0..a6a07f1e 100644 --- a/Step/wwwroot/assets/styles/base/layout.less +++ b/Step/wwwroot/assets/styles/base/layout.less @@ -39,15 +39,18 @@ .scrollable { overflow-y: scroll; } +.scrollable_auto { + overflow-y: auto; +} -.scrollable::-webkit-scrollbar { +.scrollable_auto::-webkit-scrollbar, .scrollable::-webkit-scrollbar { border-radius: 15px; width: 16px; background-color: rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5); } -.scrollable::-webkit-scrollbar-thumb { +.scrollable_auto::-webkit-scrollbar-thumb, .scrollable::-webkit-scrollbar-thumb { border-radius: 20px; width: 8px; background-color: rgba(0, 0, 0, 0.3); diff --git a/Step/wwwroot/assets/styles/style.css b/Step/wwwroot/assets/styles/style.css index bc096d50..662831ff 100644 --- a/Step/wwwroot/assets/styles/style.css +++ b/Step/wwwroot/assets/styles/style.css @@ -2064,11 +2064,12 @@ footer .container button.big:before { } .head-std header span.process { color: #002680; - width: 48px; + width: 35px; font-size: 14px; - height: 21px; + height: 20px; flex-grow: 0; - line-height: 21px; + line-height: 20px; + margin-top: 1px; text-transform: uppercase; text-align: center; border: 1px solid #002680; @@ -2218,12 +2219,17 @@ footer .container button.big:before { .scrollable { overflow-y: scroll; } +.scrollable_auto { + overflow-y: auto; +} +.scrollable_auto::-webkit-scrollbar, .scrollable::-webkit-scrollbar { border-radius: 15px; width: 16px; background-color: rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5); } +.scrollable_auto::-webkit-scrollbar-thumb, .scrollable::-webkit-scrollbar-thumb { border-radius: 20px; width: 8px; diff --git a/Step/wwwroot/src/modules/mheads.vue b/Step/wwwroot/src/modules/mheads.vue index 54eb0c95..ec6c20ab 100644 --- a/Step/wwwroot/src/modules/mheads.vue +++ b/Step/wwwroot/src/modules/mheads.vue @@ -1,5 +1,5 @@