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:
Ingo Schommer 2007-10-18 01:07:35 +00:00
parent 5868bb1e8f
commit 9277c49640
4 changed files with 5 additions and 5 deletions

View File

@ -104,7 +104,7 @@ form#Form_EditForm #Form_ExportForm fieldset {
padding: 0;
}
#LeftPane #Form_CreationForm p.Actions {
#LeftPane #Form_CreationForm .Actions {
margin-left: 1em;
}

View File

@ -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 {

View File

@ -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) {}

View File

@ -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 )