]> git.openstreetmap.org Git - rails.git/blobdiff - public/stylesheets/common.css
Clamp the maximum width and height of user images. This ensures they can't
[rails.git] / public / stylesheets / common.css
index b05dcc3d9e69210a8441b560df765557ecc5e449..1d56b146470edb8dc72ee5404c18d373b888de19 100644 (file)
@@ -545,6 +545,20 @@ hr {
   display: table;
 }
 
+#error {
+  border: 1px solid red;
+  padding: 7px;
+  background-color: #fff0f0;
+  margin-bottom: 20px;
+}
+
+#warning {
+  border: 1px solid orange;
+  padding: 7px;
+  background-color: #fff6f0;
+  margin-bottom: 20px;
+}
+
 #notice {
   border: 1px solid green;
   padding: 7px;
@@ -686,3 +700,19 @@ input[type="submit"] {
   top: 15px;
   left: 15px
 }
+
+abbr.geo {
+  border-bottom: none;
+}
+
+img.user_image {
+  max-width: 100px;
+  max-height: 100px;
+  border: 1px solid black;
+}
+
+img.user_thumbnail {
+  max-width: 50px;
+  max-height: 100px;
+  border: 1px solid black;
+}