]> git.openstreetmap.org Git - rails.git/commitdiff
Use bindPopup options to set min width of user popup
authorAnton Khorev <tony29@yandex.ru>
Thu, 25 Apr 2024 01:48:26 +0000 (04:48 +0300)
committerAnton Khorev <tony29@yandex.ru>
Thu, 25 Apr 2024 01:48:26 +0000 (04:48 +0300)
app/assets/javascripts/user.js
app/assets/stylesheets/common.scss

index 146d876f789643d20abfed4043cbf44989c8af59..495470f2fd10ea35281b5f0377d9d19130bc8099 100644 (file)
@@ -121,7 +121,7 @@ $(document).ready(function () {
         var user = $(this).data("user");
         if (user.lon && user.lat) {
           L.marker([user.lat, user.lon], { icon: OSM.getUserIcon(user.icon) }).addTo(map)
-            .bindPopup(user.description);
+            .bindPopup(user.description, { minWidth: 200 });
         }
       });
     }
index d3399420b7652c2a04b686c4b7cff1f92aa67873..10dbf9413fad09512b5d801123e8e4c6f939f7cf 100644 (file)
@@ -769,7 +769,6 @@ tr.turn {
 /* Rules for user popups on maps */
 
 .user_popup {
-  min-width: 200px;
   p {
     padding: 0 0 5px 0;
     margin: 0 0 0 60px;