]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
CSS: notice images no wider than 100%
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 17 Feb 2015 00:26:18 +0000 (01:26 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 17 Feb 2015 00:26:18 +0000 (01:26 +0100)
We should actually not allow remote images to be given in the src attribute
because they can be used for tracking and other nasty stuff without being
seen by the enduser.

Also, allowing remote images linked like this won't work for users who run
plugins like RequestPolicy etc. anyway. A better method would be to make
them listed as attachments instead. Then we can use that subsystem for
making thumbnails to store locally, hotlinking sources and whatnot.

theme/base/css/display.css

index cfc644d96be160774339f4bf2b900338776b4bfa..7d28cee8df4d387a70a48d262692e0d81e990389 100644 (file)
@@ -713,6 +713,10 @@ font-style:italic;
     overflow-y: auto;
 }
 
+.notice .e-content img {
+    max-width: 100%;
+}
+
 .notice-options {
     margin-bottom: 7px;
     margin-top: 12px;