Updated label and css

This commit is contained in:
Francesco Mangiacrapa 2023-06-06 14:38:30 +02:00
parent e76448d10a
commit f3e3ca5eb9
2 changed files with 7 additions and 2 deletions

View File

@ -59,6 +59,8 @@ import ol.Feature;
*/
public class CrossFilteringLayerPanel extends Composite {
private static final String ITEM_LABEL = "centroid";
public static String COLORSCALERANGE = "COLORSCALERANGE";
@UiField
@ -473,8 +475,7 @@ public class CrossFilteringLayerPanel extends Composite {
} else {
message = "Found " + dataCount;
message += dataCount > 1 ? " items" : " item";
message += ". ";
message += dataCount > 1 ? " " + ITEM_LABEL + "s" : " " + ITEM_LABEL;
}
HTML resultMessage = new HTML();
resultMessage.getElement().addClassName("search_result_msg");

View File

@ -862,6 +862,10 @@ RESPONSIVE
max-width: 350px;
}
.filter-panel-style .control-group {
margin-bottom: 5px !important;
}
.filter-panel-style select {
min-width: 310px;
}