Design tricks and hacks

From TempusServa wiki
Revision as of 15: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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; }