I've been trying to hide Confluence scrollbars until being focused. Problem now is that by allowing hidden focus it lets the scrollbar be focused even when the there's less than one page of items.
Easiest example to take a look at is list id 50 in ViewsFileMode.
I tried counting the number of items and pages with IntegerGreaterThan but does not help in this case. Any way around this?
Easiest example to take a look at is list id 50 in ViewsFileMode.
Code:
<visible allowhiddenfocus="true">[Control.IsVisible(50) + !Skin.HasSetting(PassiveScrollbars)] | [Control.IsVisible(50) + Skin.HasSetting(PassiveScrollbars) + Control.HasFocus(60)]</visible>
I tried counting the number of items and pages with IntegerGreaterThan but does not help in this case. Any way around this?