From c19e09f8c08444bae34d45b2d7fa1f4cecaa5d3b Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Wed, 17 Mar 2010 14:50:12 +0000 Subject: [PATCH] Limit displayed image size in Editor (thanks to nobody) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1347 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- adminer/static/default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/adminer/static/default.css b/adminer/static/default.css index efce9b90..ee426dae 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -14,6 +14,7 @@ thead td, thead th { background: #ddf; } fieldset { display: inline; vertical-align: top; padding: .5em .8em; margin: 0 .5em .5em 0; border: 1px solid #999; } p { margin: 0 20px 1em 0; } img { vertical-align: middle; border: 0; } +td img { max-width: 200px; max-height: 200px; } code { background: #eee; } tr:hover td, tr:hover th { background: #ddf; } .version { color: #777; font-size: 67%; }