Hints that disabled tabs are not clickable

This commit is contained in:
Stephen Abello
2021-08-24 16:21:00 +02:00
parent 08359cdd05
commit f72a6ee963
2 changed files with 6 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ $ibo-tab--temporary-remote-content--button--hover--color: $ibo-color-grey-200 !d
color: $ibo-tab-container--tab-header--text-color;
&:hover {
&:hover:not(.ui-state-disabled) {
color: $ibo-tab-container--tab-header--text-color--on-hover;
background-color: $ibo-tab-container--tab-header--background-color--on-hover;
}

View File

@@ -599,4 +599,9 @@ $ibo-vendors-jqueryui--ui-slider--ui-slider-handle--hover--border-color: $ibo-co
padding: 0;
position: absolute;
width: 1px;
}
// Tabs
.ui-tabs-tab.ui-state-disabled a{
cursor: not-allowed !important;
}