715772ef8ddcd9b9473fbc1201c15fb1cad691e7
braney
  Tue Jan 30 07:27:27 2018 -0800
some styles on the hgCollection dialog box

diff --git src/hg/js/hgCollection.js src/hg/js/hgCollection.js
index a85e44c..504cc81 100644
--- src/hg/js/hgCollection.js
+++ src/hg/js/hgCollection.js
@@ -331,30 +331,31 @@
         window.addEventListener("beforeunload", function (e) {
             if (isDirty) {
                 doAjaxAsync = false;
                 saveCollections(trees);
             }
 
             return undefined;
         });
 
         $("#saveCollections").click ( function() { saveCollections(trees); } );
         $("#discardChanges").click ( function () { isDirty = false; window.location.reload(); });
 
         $( "#newCollectionDialog" ).dialog({ modal: true, 
             width: "50%", 
             autoOpen: false,
+            dialogClass: 'myTitleClass'
             });
         $("#newCollection").click ( dialogCollection );
         $("#doNewCollection").click ( newCollection );
 
         var trackOpt = {
             hideAfterPaletteSelect : true,
             color : $('#customColorInput').val(),
             showPalette: true,
             showInput: true,
             preferredFormat: "hex",
             change: colorChange,
         };
 
         $("#customColorPicker").spectrum(trackOpt);
         $.jstree.defaults.core.check_callback = checkCallback;