Design tricks and hacks
Revision as of 14:09, 10 June 2016 by old>Admin (Created page with "== many pages / long page name == The following code will shorten page selectors, unless they are hovered or active .tablePageSelector td a { max-width: 80px; o...")
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; }