Comment #6 on issue 934 by
kyle.br...@gmail.com: Minor styling bugs in 2.0.4
http://code.google.com/p/gbif-providertoolkit/issues/detail?id=934
*Transferred comment by s.cozijnsen made in
http://code.google.com/p/gbif-providertoolkit/source/detail?r=4238 to this
issue:
/trunk/gbif-ipt/src/main/webapp/WEB-INF/pages/portal/home.ftl r4238
line 52:
52: ${r.coreType?upper_case}
Suggestion: change ${r.coreType?upper_case} to ${r.coreType?lower_case} and
handle the styling in the main.css.
table td#resourceType, table td#resourceSubType {
text-transform: uppercase;
}
The reason for this would be that you can also choose "capitalize" so that
all the columns have the same styling. (see:
http://ipt.nlbif.nl )
/trunk/gbif-ipt/src/main/webapp/WEB-INF/pages/portal/home.ftl r4238
line 59:
59: ${r.subtype?upper_case?substring(0,7)}${dotDot}
Suggestion: change ${r.subtype?upper_case?substring(0,7)}${dotDot} to
${r.subtype?lower_case?substring(0,7)}${dotDot} and handle the styling in
the main.css.
Same reason as described earlier.
Sijmen