diff --git a/admin-dev/themes/default/template/controllers/orders/form.tpl b/admin-dev/themes/default/template/controllers/orders/form.tpl index b5f6df8e6..7e1138ca0 100755 --- a/admin-dev/themes/default/template/controllers/orders/form.tpl +++ b/admin-dev/themes/default/template/controllers/orders/form.tpl @@ -42,6 +42,7 @@ defaults_order_state['{$module}'] = '{$id_order_state}'; {/foreach} $(document).ready(function() { + $('#customer').typeWatch({ captureLength: 1, highlight: true, @@ -597,7 +598,11 @@ }); products_found += ''; $('#products_found #product_list').html(products_found); - $('#products_found #attributes_list').html(attributes_html); + $('#products_found #attributes_list').html(attributes_html); + $('link[rel="stylesheet"]').each(function (i, element) { + sheet = $(element).clone(); + $('#products_found #customization_list').contents().find('head').append(sheet); + }); $('#products_found #customization_list').contents().find('body').html(customization_html); display_product_attributes(); display_product_customizations(); diff --git a/css/admin.css b/css/admin.css index 2a9e99a39..4986af815 100644 --- a/css/admin.css +++ b/css/admin.css @@ -2384,3 +2384,8 @@ margin-bottom:7px; margin-left:30px; list-style-type:disc; } + +.id_customization .customization_field { + min-width: 205px; + width: 205px; +}