Changeset 1144


Ignore:
Timestamp:
04/27/10 00:22:13 (2 years ago)
Author:
vlad_x2
Message:

Fixed arrow indicators for sorted columns, added pointer cursor to the headers of sortable columns.

Location:
trunk/www/static
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/static/css/screen.css

    r1134 r1144  
    15681568} 
    15691569 
     1570/* Show new feature indicator */ 
    15701571.new_feature:after { 
    15711572    color: red; 
     
    15801581    display: none; 
    15811582} 
     1583 
     1584/* Show pointer cursor on sortable table headers */ 
     1585table.sortable th { 
     1586    cursor: pointer; 
     1587} 
  • trunk/www/static/js/sorttable.js

    r1134 r1144  
    100100            sortrevind = document.createElement('span'); 
    101101            sortrevind.id = "sorttable_sortrevind"; 
    102             sortrevind.innerHTML = stIsIE ? '&nbsp<font face="webdings">5</font>' : '&nbsp;&#x25B4;'; 
     102            sortrevind.innerHTML = stIsIE ? '&nbsp<font face="webdings">5</font>' : '&nbsp;&#x25BE;'; 
    103103            this.appendChild(sortrevind); 
    104104 
     
    115115            sortfwdind = document.createElement('span'); 
    116116            sortfwdind.id = "sorttable_sortfwdind"; 
    117             sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;'; 
     117            sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25B4;'; 
    118118            this.appendChild(sortfwdind); 
    119119 
     
    138138          sortfwdind = document.createElement('span'); 
    139139          sortfwdind.id = "sorttable_sortfwdind"; 
    140           sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;'; 
     140          sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25B4;'; 
    141141          this.appendChild(sortfwdind); 
    142142 
Note: See TracChangeset for help on using the changeset viewer.