minor, css
This commit is contained in:
parent
4addbcf705
commit
0981f4d927
|
@ -179,3 +179,10 @@ clear:both;}
|
|||
#mapList thead {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.viewSimilar {
|
||||
text-decoration: none;
|
||||
font-size: 11px;
|
||||
font-style: italic;
|
||||
color: #666;
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ function getRow(props) {
|
|||
var $tr = $('<tr />');
|
||||
var $one = $('<td />').appendTo($tr);
|
||||
var $a = $('<a />').attr("target", "_blank").attr("href", "/admin/places/feature/" + props.id).text(props.preferred_name + " ").appendTo($one);
|
||||
var $a2 = $('<a />').attr("target", "_blank").attr("href", "/search_related?id=" + props.id).text("view similar").appendTo($one);
|
||||
var $a2 = $('<a />').addClass("viewSimilar").attr("target", "_blank").attr("href", "/search_related?id=" + props.id).text("view similar").appendTo($one);
|
||||
$('<td />').text(props.feature_type).appendTo($tr);
|
||||
$('<td />').text(props.admin2).appendTo($tr);
|
||||
$('<td />').text(props.admin1).appendTo($tr);
|
||||
|
|
Loading…
Reference in New Issue
Block a user