1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

Fix media-manager icon sizes.

This commit is contained in:
Cameron 2017-01-29 15:34:50 -08:00
parent 02e3657f70
commit e13fca30c5
2 changed files with 5 additions and 2 deletions

View File

@ -748,7 +748,7 @@ class e_media
// print_a($images);
// return;
foreach($images as $im)
{
list($dbWidth,$dbHeight) = explode(" x ",$im['media_dimensions']);

View File

@ -15,8 +15,11 @@ a.media-select-none { margin:5px; margin-left:0; text-decoration:none; width:8
a.media-select-none { width:120px; height:120px; }
}
a.media-select-icon { text-align:center; vertical-align:middle; margin:4px; width:48px; height:48px;}
a.media-select-icon { text-align:center; vertical-align:middle; margin:4px; min-width:48px; min-height:48px; max-width:128px; max-height:128px}
a.media-select-icon:hover { border:1px solid red; }
a.media-select-icon-none { width:48px; height:48px }
.media-select-container { padding:10px; }
.media-select-active { opacity: .5; }