Design tricks and hacks
Revision as of 18:36, 13 June 2016 by old>Admin (→many pages / long page name)
many pages / long page name
The following code will shorten page selectors, unless they are hovered or active
.tablePageSelector td a { max-width: 80px; overflow: hidden; text-overflow: ellipsis; font-size: 80%; } .tablePageSelector .tablePageSelectorElementActive a, .tablePageSelector td a:hover { max-width: none; } .tablePageSelectorElementLeft, .tablePageSelectorElementRight { width: 2px; }
When a user is running in the context of a simple user certain buttons will be hidden, and on displayed in the expanded menu ("burger"). Previous buttons might have their corners correctly, which can be mitigated by removing the items (they are normally just hidden with CSS).
$('.menuSimple .menuPlus').remove();
Note: Removing the elements will also remove them from the burger menu.