A couple of minor style changes

This commit is contained in:
Rob Lewis 2015-11-06 14:38:23 -05:00
parent 4c4fb73fdc
commit 7ca832ae83
2 changed files with 16 additions and 7 deletions

View File

@ -18,3 +18,12 @@
&:hover, &:hover.active
border: 2px solid white
#btnCollapse
background-color: #333
border-color: black
&.active
border-color: #333
.btnCollapseIcon
color: white

View File

@ -4,6 +4,13 @@ Template.viewerMain.helpers({
var buttonData = [];
buttonData.push({
id: 'resetViewport',
title: 'Reset Viewport',
classes: 'imageViewerCommand',
iconClasses: 'fa fa-undo'
});
buttonData.push({
id: 'wwwc',
title: 'WW/WC',
@ -46,13 +53,6 @@ Template.viewerMain.helpers({
iconClasses: 'fa fa-arrows-alt'
});
buttonData.push({
id: 'resetViewport',
title: 'Reset Viewport',
classes: 'imageViewerCommand',
iconClasses: 'fa fa-undo'
});
toolbarOptions.buttonData = buttonData;
toolbarOptions.includePlayClipButton = false;
toolbarOptions.includeLayoutButton = false;