CDR: Added View icon to right column.

CDR: List row Edit clicking disabled for Click-2-Call column cells. 
Themes: New style to accommodate width of single control icon (as currently used on CDR)
This commit is contained in:
Nate Jones
2014-06-22 02:18:58 +00:00
parent bf6306705a
commit 3412d12f79
7 changed files with 78 additions and 7 deletions

View File

@@ -109,6 +109,7 @@ td {
}
td.list_control_icons {
/* multiple icons exist (horizontally) */
padding: none;
padding-left: 3px;
width: 50px;
@@ -117,6 +118,16 @@ td.list_control_icons {
white-space: nowrap;
}
td.list_control_icon {
/* a single icon exists */
padding: none;
padding-left: 3px;
width: 25px;
text-align: right;
vertical-align: top;
white-space: nowrap;
}
img.list_control_icon {
margin: 2px;
width: 21px;
@@ -804,7 +815,7 @@ legend {
// on a table with a class of 'tr_hover', according to the href
// attribute of the <tr> tag
$('.tr_hover tr').each(function(i,e) {
$(e).children('td:not(:last)').click(function() {
$(e).children('td:not(.list_control_icon,.list_control_icons,.tr_link_void)').click(function() {
var href = $(this).closest("tr").attr("href");
if (href) { window.location = href; }
});