Some minor style changes (colors, lesion tool icon)

This commit is contained in:
Rob Lewis 2015-11-05 15:19:00 -05:00
parent 1bcf4fc02d
commit 26a5adbb48
3 changed files with 9 additions and 7 deletions

View File

@ -10,10 +10,12 @@ table#tblStudyList thead > tr {
color: white; color: white;
} }
table#tblStudyList tbody > tr:nth-child(even) { table#tblStudyList tbody > tr:nth-child(even) {
background-color: #CCC; background-color: #888;
color: black;
} }
table#tblStudyList tbody > tr:nth-child(odd) { table#tblStudyList tbody > tr:nth-child(odd) {
background-color: #DDD; background-color: #BBB;
color: black;
} }
table#tblStudyList tbody > tr:hover{ table#tblStudyList tbody > tr:hover{
background-color: #009BD2 background-color: #009BD2

View File

@ -64,12 +64,12 @@ Template.viewerMain.helpers({
id: 'lesion', id: 'lesion',
title: 'Lesion Tool', title: 'Lesion Tool',
classes: 'imageViewerTool', classes: 'imageViewerTool',
iconClasses: 'fa fa-arrows-v' iconClasses: 'fa fa-arrows-alt'
}); });
toolbarOptions.buttonData = buttonData; toolbarOptions.buttonData = buttonData;
toolbarOptions.includePlayClipButton = true; toolbarOptions.includePlayClipButton = false;
toolbarOptions.includeLayoutButton = true; toolbarOptions.includeLayoutButton = false;
return toolbarOptions; return toolbarOptions;
} }
}); });

View File

@ -21,8 +21,8 @@ table.lesionTable > tbody > tr > td {
padding: 5px; padding: 5px;
} }
table.lesionTable tbody tr.lesionTableRow:nth-child(even) {background: #CCC} table.lesionTable tbody tr.lesionTableRow:nth-child(even) {background: #888}
table.lesionTable tbody tr.lesionTableRow:nth-child(odd) {background: #DDD} table.lesionTable tbody tr.lesionTableRow:nth-child(odd) {background: #BBB}
table.lesionTable tbody tr.lesionTableRow:hover{ background-color: #009BD2; color: white; } table.lesionTable tbody tr.lesionTableRow:hover{ background-color: #009BD2; color: white; }
#thTarget { #thTarget {