mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
ENHANCEMENT: changed <p class="Actions"> to <div class="Actions">
ENHANCEMENT: Better linebreaks, markup formatting git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@43560 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
5868bb1e8f
commit
9277c49640
@ -104,7 +104,7 @@ form#Form_EditForm #Form_ExportForm fieldset {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#LeftPane #Form_CreationForm p.Actions {
|
||||
#LeftPane #Form_CreationForm .Actions {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
|
@ -227,11 +227,11 @@ input.loading {
|
||||
#right form.actionparams p.label {
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
#right form.actionparams p.actions {
|
||||
#right form.actionparams .actions {
|
||||
margin: 10px 0 0 0;
|
||||
text-align: right;
|
||||
}
|
||||
#right form.actionparams p.actions input {
|
||||
#right form.actionparams .actions input {
|
||||
width: auto;
|
||||
}
|
||||
#right form.actionparams .sendingText {
|
||||
|
@ -101,7 +101,7 @@ LeftPane.prototype = {
|
||||
// hide existing results
|
||||
$("ResultTable_holder").innerHTML = "";
|
||||
// show loading indicator
|
||||
showIndicator('SearchLoading', $$('#Form_SearchForm p.Actions')[0]);
|
||||
showIndicator('SearchLoading', $$('#Form_SearchForm .Actions')[0]);
|
||||
} catch(e) {}
|
||||
|
||||
|
||||
|
@ -345,7 +345,7 @@ ActionPropertiesForm.prototype = {
|
||||
this.sendingText.style.display = '';
|
||||
|
||||
// Send the request
|
||||
var buttons = document.getElementsBySelector('#' + this.id + ' p.Actions input');
|
||||
var buttons = document.getElementsBySelector('#' + this.id + ' .Actions input');
|
||||
var actionButton = null;
|
||||
|
||||
if( buttons )
|
||||
|
Loading…
Reference in New Issue
Block a user