How to make an increase in photos when you hover in the order form of goods?

<?php switch ($modx->event->name) { case 'OnManagerPageBeforeRender': if($controller->config['controller'] == "mgr/orders") { if ($miniShop2 = $modx->getService('miniShop2')) { $modx->controller->addHtml('<style>.x-grid3-col-order-product-image img {width:40px;display:block;}</style>'); $modx->controller->addHtml(' '); } } break; } 
  • .x-grid3-col-order-product-image: hover img {transform: scale (1.1);} - MoloF pm

0