// fix table extensible

This commit is contained in:
vKham
2011-12-22 19:45:23 +00:00
parent 0918a063bb
commit eef7e9ecd8
10 changed files with 20 additions and 15 deletions
+5 -3
View File
@@ -115,7 +115,9 @@ input.button[disabled=disabled]:hover{background-color:#FFF6D3}
.table a:hover{text-decoration:none}
.table tr th{ background-color: #F1F1F1; text-shadow:0 1px 0 #fff; padding:4px 6px;
background-image: -moz-linear-gradient(center top , #F9F9F9, #ECECEC);
background: -webkit-gradient(linear, center top ,center bottom, from(#F9F9F9), to(#ECECEC)) repeat scroll 0 0 transparent;}
background: -webkit-gradient(linear, center top ,center bottom, from(#F9F9F9), to(#ECECEC)) repeat scroll 0 0 transparent;
font-size:13px; text-align:left;}
.table tr th.right { text-align:center;}
.table tr td{border-bottom:1px solid #ccc;color:#333;font-size:12px;padding: 4px 4px 4px 6px;}
.table tr:hover td{background:#fff1b5}
.table tr.filter:hover td{background:#F1F9FF}
@@ -161,8 +163,8 @@ a.module_toggle_all{color: #268CCD;}
/*toolbarBox*/
.toolbarBox { background-color: #F8F8F8; border: 1px solid #CCCCCC; margin-bottom:10px; padding: 10px 0; border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px;}
.toolbarBox .pageTitle { margin-left:10px; line-height:48px}
.toolbarBox .pageTitle h3 {font-size: 2em; font-weight: normal; line-height: 48px; margin: 0; padding: 0;}
.toolbarBox ul.cc_button {float:right;margin:0;padding:0;}
.toolbarBox .pageTitle h3 {font-size: 2em; font-weight: normal; line-height: 52px; margin: 0; padding: 0;}
.toolbarBox ul.cc_button {float:right;margin:0 5px 0 0;padding:0;}
.toolbarBox ul.cc_button li {color: #666666; float: left; height: 48px; list-style: none outside none; padding: 1px 1px 3px 4px; text-align: center;}
.toolbarBox a.toolbar_btn { border:1px solid #f8f8f8; min-width:50px; border-width: 1px; font-size:11px;cursor: pointer; display: block; float: left; padding: 3px 5px; white-space: nowrap; text-shadow: 0 1px 0 #ffffff;}
.toolbarBox a.toolbar_btn:hover { background-color:#fff; border:1px inset #ccc; border-radius:3px;}
+2 -2
View File
@@ -79,14 +79,14 @@ class AdminCartsControllerCore extends AdminController
),
'date_add' => array(
'title' => $this->l('Date'),
'width' => 120,
'width' => 150,
'align' => 'right',
'type' => 'datetime',
'filter_key' => 'a!date_add'
),
'id_guest' => array(
'title' => $this->l('Online'),
'width' => 25,
'width' => 40,
'align' => 'center',
'type' => 'bool',
'filter_key' => 'id_guest',
+1 -2
View File
@@ -57,7 +57,6 @@ class AdminGroupsControllerCore extends AdminController
),
'name' => array(
'title' => $this->l('Name'),
'width' => 80,
'filter_key' => 'b!name'
),
'reduction' => array(
@@ -81,7 +80,7 @@ class AdminGroupsControllerCore extends AdminController
),
'date_add' => array(
'title' => $this->l('Creation date'),
'width' => 60,
'width' => 150,
'type' => 'date',
'align' => 'right'
)
+1 -1
View File
@@ -41,7 +41,7 @@ class AdminImagesControllerCore extends AdminController
$this->fieldsDisplay = array(
'id_image_type' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
'name' => array('title' => $this->l('Name'), 'width' => 140, 'size' => 16),
'name' => array('title' => $this->l('Name'), 'size' => 16),
'width' => array('title' => $this->l('Width'), 'align' => 'right', 'suffix' => ' px', 'width' => 50, 'size' => 5),
'height' => array('title' => $this->l('Height'), 'align' => 'right', 'suffix' => ' px', 'width' => 50, 'size' => 5)
);
+2 -2
View File
@@ -40,11 +40,11 @@ class AdminLogsControllerCore extends AdminController
$this->fieldsDisplay = array(
'id_log' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
'severity' => array('title' => $this->l('Severity (1-4)'), 'align' => 'center', 'width' => 50),
'message' => array('title' => $this->l('Message'), 'width' => 377),
'message' => array('title' => $this->l('Message')),
'object_type' => array('title' => $this->l('Object type'), 'width' => 75),
'object_id' => array('title' => $this->l('Object ID'), 'width' => 50),
'error_code' => array('title' => $this->l('Error code'), 'width' => 75, 'prefix' => '0x'),
'date_add' => array('title' => $this->l('Date'), 'width' => 35, 'align' => 'right', 'type' => 'datetime')
'date_add' => array('title' => $this->l('Date'), 'width' => 150, 'align' => 'right', 'type' => 'datetime')
);
$this->options = array(
+1 -1
View File
@@ -69,7 +69,7 @@ class AdminOrdersControllerCore extends AdminController
'total_paid_tax_incl' => array('title' => $this->l('Total'), 'width' => 70, 'align' => 'right', 'prefix' => '<b>', 'suffix' => '</b>', 'type' => 'price', 'currency' => true),
'payment' => array('title' => $this->l('Payment'), 'width' => 100),
'osname' => array('title' => $this->l('Status'), 'color' => 'color', 'width' => 230, 'type' => 'select', 'list' => $statesArray, 'filter_key' => 'os!id_order_state', 'filter_type' => 'int'),
'date_add' => array('title' => $this->l('Date'), 'width' => 120, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
'date_add' => array('title' => $this->l('Date'), 'width' => 150, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
'id_pdf' => array('title' => $this->l('PDF'), 'width' => 35, 'align' => 'center', 'callback' => 'printPDFIcons', 'orderby' => false, 'search' => false, 'remove_onclick' => true));
$this->shopLinkType = 'shop';
@@ -48,7 +48,7 @@ class AdminProfilesControllerCore extends AdminController
'align' => 'center',
'width' => 25
),
'name' => array('title' => $this->l('Name'), 'width' => 200)
'name' => array('title' => $this->l('Name'))
);
$this->identifier = 'id_profile';
@@ -57,8 +57,7 @@ class AdminSpecificPriceRuleController extends AdminController
'width' => 200
),
'shop_name' => array(
'title' => $this->l('Shop'),
'width' => 300
'title' => $this->l('Shop')
),
'currency_name' => array(
'title' => $this->l('Currency'),
+1 -1
View File
@@ -65,7 +65,7 @@ class AdminStoresControllerCore extends AdminController
'name' => array('title' => $this->l('Name'), 'width' => 120, 'filter_key' => 'a!name'),
'phone' => array('title' => $this->l('Phone'), 'width' => 70),
'fax' => array('title' => $this->l('Fax'), 'width' => 70),
'active' => array('title' => $this->l('Enabled'), 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)
'active' => array('title' => $this->l('Enabled'), 'width' => 70, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)
);
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
+5
View File
@@ -816,6 +816,11 @@ tr.deleted td {
.hint p {
color: #00529B;
}
.hint .addImageDescription {
font-weight:bold;
font-size:16px;
}
div.hint {
position: relative;
}