- .append(
- $("<label>")
- .attr("for", "image_filter")
- .attr("class", "form-check-label")
- .append(
- $("<input>")
- .attr("id", "image_filter")
- .attr("type", "checkbox")
- .attr("class", "form-check-input")
- .bind("change", toggleFilter))
- .append(I18n.t("javascripts.share.custom_dimensions")));
-
- $("<div>")
- .appendTo($form)
- .append(
- $("<label>")
- .attr("for", "mapnik_format")
- .text(I18n.t("javascripts.share.format")))
- .append($("<select>")
- .attr("name", "mapnik_format")
- .attr("id", "mapnik_format")
- .append($("<option>").val("png").text("PNG").prop("selected", true))
- .append($("<option>").val("jpeg").text("JPEG"))
- .append($("<option>").val("svg").text("SVG"))
- .append($("<option>").val("pdf").text("PDF")));
+ .attr("class", "row mb-3")
+ .append($("<label>")
+ .attr("for", "mapnik_format")
+ .attr("class", "col-auto col-form-label")
+ .text(I18n.t("javascripts.share.format")))
+ .append($("<div>")
+ .attr("class", "col-auto")
+ .append($("<select>")
+ .attr("name", "mapnik_format")
+ .attr("id", "mapnik_format")
+ .attr("class", "form-select w-auto")
+ .append($("<option>").val("png").text("PNG").prop("selected", true))
+ .append($("<option>").val("jpeg").text("JPEG"))
+ .append($("<option>").val("svg").text("SVG"))
+ .append($("<option>").val("pdf").text("PDF"))));