From 01ccc5f5bba269896c4f29f57a9eb649521f3dc4 Mon Sep 17 00:00:00 2001 From: Boubaker Khanfir Date: Fri, 3 Nov 2023 13:41:50 +0100 Subject: [PATCH] feat: Hide empty slider icons in Tabs - MEED-2846 - Meeds-io/MIPs#100 (#703) Prior to this change, when a Tab list overflows comparing to its parent container, the disabled arrow icon isn't displayed and a blank square is displayed instead. This change will hide the arrow container when not active. --- .../src/main/webapp/skin/less/vuetify/vuetify-all.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform-ui-skin/src/main/webapp/skin/less/vuetify/vuetify-all.less b/platform-ui-skin/src/main/webapp/skin/less/vuetify/vuetify-all.less index 13a1dca19..81f7870da 100644 --- a/platform-ui-skin/src/main/webapp/skin/less/vuetify/vuetify-all.less +++ b/platform-ui-skin/src/main/webapp/skin/less/vuetify/vuetify-all.less @@ -335,6 +335,10 @@ margin-left: -23px; margin-top: -23px; } + .v-slide-group__next--disabled, + .v-slide-group__prev--disabled { + display: none; + } .warning { background: @warningBackground !important;