]> git.openstreetmap.org Git - rails.git/commitdiff
Allow non-square user images
authorSaman Bemel-Benrud <samanpwbb@gmail.com>
Sat, 26 Jan 2013 00:53:15 +0000 (19:53 -0500)
committerTom Hughes <tom@compton.nu>
Sat, 26 Jan 2013 15:44:44 +0000 (15:44 +0000)
app/assets/stylesheets/common.css.scss

index d516e0b9a533b6198b4dd8aba41c0460a6c8d4c7..aa2e893aa3360ae92bfcde4aebb3505a24a6f767 100644 (file)
@@ -1422,8 +1422,8 @@ textarea {
 /* Rules for user images */
 
 img.user_image {
 /* Rules for user images */
 
 img.user_image {
-  width: 100px;
-  height: 100px;
+  max-width: 100px;
+  max-height: 100px;
   border: 1px solid #ccc;
   margin-bottom: 20px;
   float: left;
   border: 1px solid #ccc;
   margin-bottom: 20px;
   float: left;
@@ -1431,8 +1431,8 @@ img.user_image {
 }
 
 img.user_thumbnail {
 }
 
 img.user_thumbnail {
-  width: 50px;
-  height: 50px;
+  max-width: 50px;
+  max-height: 50px;
   border: 1px solid #ccc;
   margin-right: 20px;
 }
   border: 1px solid #ccc;
   margin-right: 20px;
 }