Page 1 of 1

TabView Styling

Posted: 09 May 2018, 13:37
by IMCUser
TabView styling does not give an indication of the selected tab.

Re: TabView Styling

Posted: 11 May 2018, 10:01
by kubrasulukan
Can you send a screenshot of it?

Re: TabView Styling

Posted: 14 May 2018, 08:54
by IMCUser
Below the 2nd tab is selected "Godfather Part II" but there is no indicator for it:

Image

The same applies for the Horizontal Menu.
There is no indicator which menuItem is selected.

Re: TabView Styling

Posted: 14 May 2018, 15:30
by kubrasulukan
We'll check and back to you

Re: TabView Styling

Posted: 22 Oct 2018, 10:04
by denizhamzai
Had the same issue.

Edit the _main.scss and add the following:



.ui-tabs.ui-tabs-top .ui-tabs-nav li.ui-state-active{
background: $menuItemTextColor !important;
}

then recompile the sass

Re: TabView Styling

Posted: 22 Oct 2018, 11:47
by mert.sincan
Sorry for the delayed response!

Thanks denizhamzai ;)

Or

in _menu.scss

Code: Select all

//line 200
              &.ui-state-active {
                        background-color: $primaryColor;
                        
                        a {
                            color: $highlightTextColor;
                        }
                        
                        .ui-icon-close {
                            color: $highlightTextColor;
                        }
                        
                        &.ui-tabs-outline {
                            background-color: lighten($primaryColor,5%);
                        }
                    }
// line 214
Fixed for next version.

Best Regards,