30181176a189818731020aca76d70dc2b3fea8a2 tdreszer Fri Mar 11 17:28:40 2011 -0800 filterFiles boxes should have bold titles. We want people to notice. diff --git src/hg/lib/fileUi.c src/hg/lib/fileUi.c index 877c912..57b53a1 100644 --- src/hg/lib/fileUi.c +++ src/hg/lib/fileUi.c @@ -427,31 +427,31 @@ eraseNonAlphaNum(mdbPairVal(oneVal)); // Have to squeeze out uglies from val to ensure filter by class works slAddHead(&relevantVals,oneVal); } else slPairFreeValsAndList(&oneVal); } if (slCount(relevantVals) > 1) { slReverse(&relevantVals); char extraClasses[256]; safef(extraClasses,sizeof extraClasses,"filterTable %s",var); char *dropDownHtml = cgiMakeMultiSelectDropList(var,relevantVals,NULL,"All",extraClasses,"onchange='filterTable();' onclick='filterTableExclude(this);'"); // Note filterBox has classes: filterBy & {var} if (dropDownHtml) { - dyStringPrintf(dyFilters,"<td align='left'>\n%s:<BR>\n%s</td><td width=10> </td>\n", + dyStringPrintf(dyFilters,"<td align='left'>\n<B>%s</B>:<BR>\n%s</td><td width=10> </td>\n", labelWithVocabLink(var,sortOrder->title[sIx],relevantVals),dropDownHtml); freeMem(dropDownHtml); count++; } } if (slCount(relevantVals) > 0) slPairFreeValsAndList(&relevantVals); } if (count) { webIncludeResourceFile("ui.dropdownchecklist.css"); jsIncludeFile("ui.dropdownchecklist.js",NULL); #define FILTERBY_HELP_LINK "<A HREF=\"../goldenPath/help/multiView.html\" TARGET=ucscHelp>help</A>" printf("<B>Filter files by:</B> (select multiple %sitems - %s)\n<table><tr valign='bottom'>\n", (count >= 1 ? "categories and ":""),FILTERBY_HELP_LINK);