diff --git a/admin-dev/themes/default/admin.css b/admin-dev/themes/default/admin.css index 4d53f16af..0845e3f83 100644 --- a/admin-dev/themes/default/admin.css +++ b/admin-dev/themes/default/admin.css @@ -177,6 +177,8 @@ a.module_toggle_all{color: #268CCD;} .toolbarBox .process-icon-new-module { background-image: url(process-icon-new-module.png);} .toolbarBox .process-icon-new-module-addon { background-image: url(process-icon-new-module-addon.png);} .toolbarBox .process-icon-save-and-preview { background-image: url(process-icon-preview.png);} +.toolbarBox .process-icon-export-csv-orders { background-image: url(process-icon-export-csv.png);} +.toolbarBox .process-icon-export-csv-details { background-image: url(process-icon-export-csv-details.png);} div.fix-toolbar {border-bottom: 1px solid #E0E0E0;position:fixed;top:0;opacity:0.9;z-index:1;} @@ -231,7 +233,6 @@ form#product_form h4 { font-size:18px; font-weight:normal;} #addons_login_div input { float:left; margin-right:10px;} #addons_login_div input#addons_login_button { margin-right: 0px; } - /*SIDEBAR*/ .sidebar { position:relative; float:left; width:220px; display:inline;} .sidebar h3 { background-color:#ebedf4; font-weight:bold; display:block; padding:5px;} @@ -315,14 +316,10 @@ form#product_form h4 { font-size:18px; font-weight:normal;} #statsContainer .blocStats h2.icon-currency span { background-position : -90px -36px;} #statsContainer .blocStats h2.icon-language span { background-position : -106px -36px;} #statsContainer .blocStats h2.icon-attribute span { background-position : -126px -36px;} - - #statsContainer .blocStats form { position:absolute; top:10px; right:5px;} #statsContainer .blocStats form.checkup { position:relative; top:0; left:0;} #statsContainer .totalStats { font-size:16px; font-weight:bold;} - - /*MODULECONTAINER*/ #moduleContainer { margin-left:220px; padding:13px 0 0 20px;} #moduleContainer .table tr th { height:40px;} @@ -350,6 +347,19 @@ form#product_form h4 { font-size:18px; font-weight:normal;} #moduleContainer .moduleGridDesc h3 { color:#3A6EA7; margin:0;} #moduleContainer ul.listing-grid-module li select { position:absolute; top:0; right:0px; } +/*MODULE POSITION*/ +.blocLiveEdit { float:right; clear:right; background-color: #EBEDF4; border: 1px solid #C2C4D9;display: block; width:250px;} +.blocLiveEdit h2 { margin:0; padding: 0 10px;} +.blocLiveEdit p { padding: 0 10px;} +.blocLiveEdit a.button {Êfloat: left; margin:10px; display: inline-block;} + + +#modulePosition { width:100%; float:left; clear:left; margin-right:270px;} +#modulePosition .table tr th { height:40px;} +#modulePosition form{ margin-right:270px;} +#modulePosition .lab_modules_positions h3 { color:#3A6EA7; margin:0 0 0 10px; float:left;} +#modulePosition .lab_modules_positions p { font-family:Georgia; font-style: italic; font-size:12px; padding-left:40px;} +#modulePosition .lab_modules_positions span { font-size:12px; padding-left:5px;} /*FOOTER*/ #footer {height:40px; font-size:12px;clear:both;font-size:0.9em;color:#666666} diff --git a/admin-dev/themes/default/process-icon-export-csv-details.png b/admin-dev/themes/default/process-icon-export-csv-details.png new file mode 100644 index 000000000..64a18fa4d Binary files /dev/null and b/admin-dev/themes/default/process-icon-export-csv-details.png differ diff --git a/admin-dev/themes/default/process-icon-export-csv.png b/admin-dev/themes/default/process-icon-export-csv.png new file mode 100755 index 000000000..4ce1583b1 Binary files /dev/null and b/admin-dev/themes/default/process-icon-export-csv.png differ diff --git a/admin-dev/themes/template/addons_my_account/content.tpl b/admin-dev/themes/template/addons_my_account/content.tpl index 296f6fb1f..2c7143eef 100644 --- a/admin-dev/themes/template/addons_my_account/content.tpl +++ b/admin-dev/themes/template/addons_my_account/content.tpl @@ -1,2 +1,2 @@ - +
 
diff --git a/admin-dev/themes/template/modules_positions/list_modules.tpl b/admin-dev/themes/template/modules_positions/list_modules.tpl index 66a5d5d82..e102e98ee 100644 --- a/admin-dev/themes/template/modules_positions/list_modules.tpl +++ b/admin-dev/themes/template/modules_positions/list_modules.tpl @@ -59,16 +59,17 @@ -
{l s='Live edit'} +
+ +
+

{l s='Live edit'}

{if $live_edit}

{l s='You have to select a shop to use live edit'}

{else}

{l s='By clicking here you will be redirected to the front office of your shop to move and delete modules directly.'}

-
{l s='Run LiveEdit'} {/if} -
- +
@@ -78,7 +79,7 @@ {/if} {foreach $hooks as $hook} - +
+ {$module['instance']->name|stripslashes}

{$module['instance']->displayName|stripslashes}

+ {if $module['instance']->version}v{if $module['instance']->version|intval == $module['instance']->version}{sprintf('%.1f', $module['instance']->version)}{else}{$module['instance']->version|floatval}{/if}{/if}

{$module['instance']->description}

+
{$hook['title']} - {$hook['module_count']} {if $hook['module_count'] > 1}{l s='modules'}{else}{l s='module'}{/if} {if $hook['module_count'] && $can_move} @@ -102,13 +103,13 @@ {/if} -
{else} -
{/if} - {$module['instance']->name|stripslashes} {$module['instance']->displayName|stripslashes} - {if $module['instance']->version} v{if $module['instance']->version|intval == $module['instance']->version}{sprintf('%.1f', $module['instance']->version)}{else}{$module['instance']->version|floatval}{/if}{/if}
{$module['instance']->description} -
{l s='Edit'} @@ -125,4 +126,8 @@ {/if}
{/foreach} -
\ No newline at end of file +
+ + + + \ No newline at end of file diff --git a/css/admin.css b/css/admin.css index 7494a9fc8..b6a8ce6ce 100644 --- a/css/admin.css +++ b/css/admin.css @@ -320,6 +320,11 @@ select optgroup option { width: 350px; } +.lab_modules_positions img { + float:left; +} + + /* STRUCTURE */ #container { @@ -428,13 +433,13 @@ select optgroup option { #unhook_button_position_bottom { overflow: hidden; - width: 600px; + width: 100%; padding-top: 10px; } #unhook_button_position_top { overflow: hidden; - width: 600px; + width: 100%; } #content .conf, #content .warn, #content .error {