mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
Add bulkManager title + always above titles
This commit is contained in:
parent
c1c99e6a50
commit
3092972d8e
@ -2,6 +2,8 @@
|
|||||||
text-align: center; }
|
text-align: center; }
|
||||||
.cms table.ss-gridfield-table tr.bulkManagerOptions th.bulkmanagerselect input {
|
.cms table.ss-gridfield-table tr.bulkManagerOptions th.bulkmanagerselect input {
|
||||||
margin-left: 0; }
|
margin-left: 0; }
|
||||||
|
.cms table.ss-gridfield-table tr.bulkManagerOptions .title {
|
||||||
|
margin: 0 0 2px 2px; }
|
||||||
.cms table.ss-gridfield-table tr.bulkManagerOptions .dropdown {
|
.cms table.ss-gridfield-table tr.bulkManagerOptions .dropdown {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border: none;
|
border: none;
|
||||||
@ -12,6 +14,8 @@
|
|||||||
vertical-align: top; }
|
vertical-align: top; }
|
||||||
.cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .ui-button-text {
|
.cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .ui-button-text {
|
||||||
padding: 6px 0 5px 2.1em; }
|
padding: 6px 0 5px 2.1em; }
|
||||||
|
.cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .ui-button-text .ui-button-text {
|
||||||
|
padding: 0; }
|
||||||
.cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .loading .ui-icon {
|
.cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .loading .ui-icon {
|
||||||
background: transparent url(../../framework/images/network-save.gif) no-repeat 0 0; }
|
background: transparent url(../../framework/images/network-save.gif) no-repeat 0 0; }
|
||||||
.cms table.ss-gridfield-table tbody .col-bulkSelect {
|
.cms table.ss-gridfield-table tbody .col-bulkSelect {
|
||||||
|
@ -12,6 +12,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title
|
||||||
|
{
|
||||||
|
margin: 0 0 2px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown
|
.dropdown
|
||||||
{
|
{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -29,7 +34,12 @@
|
|||||||
{
|
{
|
||||||
.ui-button-text
|
.ui-button-text
|
||||||
{
|
{
|
||||||
padding: 6px 0 5px 2.1em;
|
padding: 6px 0 5px 2.1em; //3px 0 2px 1.05em; //
|
||||||
|
|
||||||
|
.ui-button-text
|
||||||
|
{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading .ui-icon
|
.loading .ui-icon
|
||||||
|
@ -8,6 +8,40 @@
|
|||||||
|
|
||||||
$.entwine('colymba', function($) {
|
$.entwine('colymba', function($) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Makes sure the component is above the headers
|
||||||
|
*/
|
||||||
|
$('.bulkManagerOptions').entwine({
|
||||||
|
onmatch: function(){
|
||||||
|
var $parent = this.parents('thead'),
|
||||||
|
$tr = $parent.find('tr'),
|
||||||
|
|
||||||
|
targets = ['.filter-header', '.sortable-header'],
|
||||||
|
$target = $parent.find(targets.join(',')),
|
||||||
|
|
||||||
|
$component = this.clone(),
|
||||||
|
index = $tr.index(this),
|
||||||
|
newIndex = $tr.length - 1
|
||||||
|
;
|
||||||
|
|
||||||
|
$target.each(function(index, Element){
|
||||||
|
var idx = $tr.index(Element);
|
||||||
|
if ( idx < newIndex )
|
||||||
|
{
|
||||||
|
newIndex = idx;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if ( index > newIndex )
|
||||||
|
{
|
||||||
|
$component.insertBefore($tr.eq(newIndex));
|
||||||
|
this.remove();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onunmatch: function(){}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
$('td.col-bulkSelect').entwine({
|
$('td.col-bulkSelect').entwine({
|
||||||
onmatch: function(){
|
onmatch: function(){
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
# DO NOT MODIFY. Generated by build task.
|
# DO NOT MODIFY. Generated by build task.
|
||||||
# Contribute here: https://www.transifex.com/projects/p/gridfieldbulkeditingtools/
|
# Contribute here: https://www.transifex.com/projects/p/gridfieldbulkeditingtools/
|
||||||
en:
|
en:
|
||||||
|
GRIDFIELD_BULK_MANAGER:
|
||||||
|
COMPONENT_TITLE: Modify one or more entry at a time.
|
||||||
GridFieldBulkTools:
|
GridFieldBulkTools:
|
||||||
BULK_UPLOAD_BTN_LABEL: Bulk Upload
|
BULK_UPLOAD_BTN_LABEL: Bulk Upload
|
||||||
FINISH_BTN_LABEL: Finish
|
FINISH_BTN_LABEL: Finish
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<tr class="bulkManagerOptions">
|
<tr class="bulkManagerOptions">
|
||||||
<th class="main bulkmanagerheading" colspan="$Colspan">
|
<th class="main bulkmanagerheading" colspan="$Colspan">
|
||||||
|
|
||||||
|
<p class="title"><% _t('GRIDFIELD_BULK_MANAGER.COMPONENT_TITLE', 'Modify one or more entry at a time.') %></p>
|
||||||
|
|
||||||
$Menu
|
$Menu
|
||||||
<a data-url="$Button.DataURL" data-config="$Button.DataConfig" class="doBulkActionButton ss-ui-button" data-icon="$Button.Icon">
|
<a data-url="$Button.DataURL" data-config="$Button.DataConfig" class="doBulkActionButton ss-ui-button" data-icon="$Button.Icon">
|
||||||
$Button.Label
|
$Button.Label
|
||||||
|
Loading…
Reference in New Issue
Block a user