Difference between revisions of "Design tricks and hacks"
Jump to navigation
Jump to search
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...") |
(No difference)
|
Revision as of 14:09, 10 June 2016
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; }