[vanillin commit] r286 - in trunk/themes: . vanilla/styles/default

0 views
Skip to first unread message

codesite...@google.com

unread,
Sep 30, 2007, 8:22:01 PM9/30/07
to vanilli...@googlegroups.com
Author: helgith
Date: Sun Sep 30 17:20:45 2007
New Revision: 286

Modified:
trunk/themes/account_identity_form.php
trunk/themes/account_password_form.php
trunk/themes/account_role_form.php
trunk/themes/comment_form.php
trunk/themes/discussion_form.php
trunk/themes/people_apply_form_nopostback.php
trunk/themes/people_password_request_form_nopostback.php
trunk/themes/people_password_reset_form_nopostback.php
trunk/themes/people_signin_form_nopostback.php
trunk/themes/settings_globals_form.php
trunk/themes/settings_language_form.php
trunk/themes/settings_registration_form.php
trunk/themes/vanilla/styles/default/people.css
trunk/themes/vanilla/styles/default/vanilla.css

Log:
Renamed class .Submit to .buttons ... IMHO it's more understanable

Modified: trunk/themes/account_identity_form.php
==============================================================================
--- trunk/themes/account_identity_form.php (original)
+++ trunk/themes/account_identity_form.php Sun Sep 30 17:20:45 2007
@@ -6,7 +6,7 @@
echo '<div id="Form" class="Account Identity">
'.$this->Get_Warnings().'
</div>';
-} else {
+} else {
$this->PostBackParams->Set('PostBackAction', 'ProcessIdentity');
$this->PostBackParams->Set('u', $this->User->UserID);
$this->PostBackParams->Set('LabelValuePairCount', (count($this->User->Attributes) > 0? count($this->User->Attributes):1), 1, 'LabelValuePairCount');
@@ -14,14 +14,14 @@
echo '<div id="Form" class="Account Identity">
<fieldset>
<legend>'.$this->Context->GetDefinition('ChangePersonalInfo').'</legend>';
-
+
$this->CallDelegate('PreWarningsRender');
-
+
echo $this->Get_Warnings()
.$this->Get_PostBackForm('frmAccountPersonal');
-
+
$this->CallDelegate('PreInputsRender');
-
+
echo '<h2>'.$this->Context->GetDefinition('DefineYourAccountProfile').'</h2>
<ul>';
if ($this->Context->Configuration['ALLOW_NAME_CHANGE'] == "1") {
@@ -77,7 +77,7 @@
</p>
</li>
</ul>';
-
+
// Add the extension customization settings
$Customizations = '';
while (list($Key, $Value) = each($this->Context->Configuration)) {
@@ -97,9 +97,9 @@
.$Customizations
.'</ul>';
}
-
- $this->CallDelegate('PreCustomInputsRender');
-
+
+ $this->CallDelegate('PreCustomInputsRender');
+
echo '<h2>'.$this->Context->GetDefinition('AddCustomInformation').'</h2>
<p class="Description">'.$this->Context->GetDefinition('AddCustomInformationNotes').'</p>
<ul id="CustomInfo" class="clearfix">';
@@ -122,11 +122,11 @@
<li><input type="text" name="Value'.$CurrentItem.'" value="" maxlength="200" class="LVValueInput" /></li>';
}
echo '</ul>';
-
+
$this->CallDelegate('PreButtonsRender');
-
+
echo '<p><a href="javascript:AddLabelValuePair();">'.$this->Context->GetDefinition('AddLabelValuePair').'</a></p>
- <div class="Submit">
+ <div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('Save').'" class="Button SubmitButton" />
<a href="'.GetUrl($this->Context->Configuration, 'account.php', '', 'u', $this->User->UserID).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/account_password_form.php
==============================================================================
--- trunk/themes/account_password_form.php (original)
+++ trunk/themes/account_password_form.php Sun Sep 30 17:20:45 2007
@@ -6,21 +6,21 @@
echo '<div id="Form" class="Account Password">
'.$this->Get_Warnings().'
</div>';
-} else {
+} else {
$this->PostBackParams->Set('PostBackAction', 'ProcessPassword');
$this->PostBackParams->Set('u', $this->User->UserID);
$Required = $this->Context->GetDefinition('Required');
echo '<div id="Form" class="Account Password">
<fieldset>
<legend>'.$this->Context->GetDefinition('ChangeYourPassword').'</legend>';
-
+
$this->CallDelegate('PreWarningsRender');
-
+
echo $this->Get_Warnings()
.$this->Get_PostBackForm('frmAccountPassword');
-
+
$this->CallDelegate('PreInputsRender');
-
+
echo '<ul>
<li>
<label for="txtOldPassword">'.$this->Context->GetDefinition('YourOldPassword').' <small>'.$Required.'</small></label>
@@ -38,10 +38,10 @@
<p class="Description">'.$this->Context->GetDefinition('YourNewPasswordAgainNotes').'</p>
</li>
</ul>';
-
+
$this->CallDelegate('PreButtonsRender');
-
- echo '<div class="Submit">
+
+ echo '<div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('Save').'" class="Button SubmitButton" />
<a href="'.GetUrl($this->Context->Configuration, "account.php", "", "u", $this->User->UserID).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/account_role_form.php
==============================================================================
--- trunk/themes/account_role_form.php (original)
+++ trunk/themes/account_role_form.php Sun Sep 30 17:20:45 2007
@@ -6,7 +6,7 @@
echo '<div id="Form" class="Account Role">
'.$this->Get_Warnings().'
</div>';
-} else {
+} else {
$this->PostBackParams->Set('PostBackAction', 'ProcessRole');
$this->PostBackParams->Set('u', $this->User->UserID);
$Required = $this->Context->GetDefinition('Required');
@@ -27,7 +27,7 @@
<p class="Description">'.$this->Context->GetDefinition('RoleChangeInfoNotes').'</p>
</li>
</ul>
- <div class="Submit">
+ <div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('ChangeRole').'" class="Button SubmitButton ChangeRoleButton" />
<a href="'.GetUrl($this->Context->Configuration, 'account.php', '', 'u', $this->User->UserID).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/comment_form.php
==============================================================================
--- trunk/themes/comment_form.php (original)
+++ trunk/themes/comment_form.php Sun Sep 30 17:20:45 2007
@@ -7,7 +7,7 @@
.$this->Get_Warnings()
.$this->Get_PostBackForm('frmPostComment', 'post', 'post.php')
.'<ul>';
-
+
$this->CallDelegate('CommentForm_PreWhisperInputRender');
$session = Session::getInstance();
if ($this->Context->Configuration['ENABLE_WHISPERS']) {
@@ -26,15 +26,15 @@
';
}
}
-
+
$this->CallDelegate('CommentForm_PreCommentsInputRender');
echo '<li>
<label for="CommentBox">
<a href="./" id="CommentBoxController" onclick="'
."ToggleCommentBox('".$this->Context->Configuration['WEB_ROOT']."ajax/switch.php', '".$this->Context->GetDefinition('SmallInput')."', '".$this->Context->GetDefinition('BigInput')."', '". $session->GetVariable('SessionPostBackKey', 'string')."'); return false;".'">'.$this->Context->GetDefinition($session->User->Preference('ShowLargeCommentBox')?'SmallInput':'BigInput').'</a>';
-
- $this->CallDelegate('CommentForm_PostCommentToggle');
-
+
+ $this->CallDelegate('CommentForm_PostCommentToggle');
+
echo $this->Context->GetDefinition('EnterYourComments').'
</label>
<textarea name="Body" class="'
@@ -45,18 +45,18 @@
</li>
'.$this->GetPostFormatting($Comment->FormatType)
.'</ul>';
-
+
$this->CallDelegate('CommentForm_PreButtonsRender');
-
- echo '<div class="Submit">
+
+ echo '<div class="buttons">
<input type="submit" name="btnSave" value="'.($Comment->CommentID > 0 ? $this->Context->GetDefinition('SaveYourChanges') : $this->Context->GetDefinition('AddYourComments'))
.'" class="Button SubmitButton AddCommentsButton" onclick="'
."Wait(this, '".$this->Context->GetDefinition('Wait')."');"
.'" />';
$this->CallDelegate('CommentForm_PostSubmitRender');
-
+
echo '&nbsp;';
-
+
if ($this->PostBackAction == 'SaveComment' || ($this->PostBackAction == '' && $Comment->CommentID > 0)) {
if ($this->Comment->DiscussionID > 0) {
echo '<a href="'.GetUrl($this->Context->Configuration, 'comments.php', '', 'DiscussionID', $this->Comment->DiscussionID).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>';
@@ -65,9 +65,9 @@
}
}
echo '</div>';
-
+
$this->CallDelegate('CommentForm_PostButtonsRender');
-
+
echo '
</form>
</fieldset>

Modified: trunk/themes/discussion_form.php
==============================================================================
--- trunk/themes/discussion_form.php (original)
+++ trunk/themes/discussion_form.php Sun Sep 30 17:20:45 2007
@@ -23,7 +23,7 @@
<input id="txtTopic" type="text" name="Name" class="DiscussionBox" maxlength="100" value="'.$Discussion->Name.'" />
</li>';

- if ($this->Context->Configuration['ENABLE_WHISPERS'] && $Discussion->DiscussionID == 0) {
+ if ($this->Context->Configuration['ENABLE_WHISPERS'] && $Discussion->DiscussionID == 0) {
echo '<li>
<label for="WhisperUsername">'.$this->Context->GetDefinition('WhisperYourCommentsTo').'</label>
<input id="WhisperUsername" name="WhisperUsername" type="text" value="'.FormatStringForDisplay($Discussion->WhisperUsername, 0).'" class="Whisper AutoCompleteInput" maxlength="20" />
@@ -42,9 +42,9 @@
<label for="CommentBox">
<a href="./" id="CommentBoxController" onclick="'
."ToggleCommentBox('".$this->Context->Configuration['WEB_ROOT']."ajax/switch.php', '".$this->Context->GetDefinition('SmallInput')."', '".$this->Context->GetDefinition('BigInput')."', '". $session->GetVariable('SessionPostBackKey', 'string')."'); return false;".'">'.$this->Context->GetDefinition($session->User->Preference('ShowLargeCommentBox')?'SmallInput':'BigInput').'</a>';
-
- $this->CallDelegate('DiscussionForm_PostCommentToggle');
-
+
+ $this->CallDelegate('DiscussionForm_PostCommentToggle');
+
echo $this->Context->GetDefinition('EnterYourComments').'
</label>
<textarea name="Body" class="'
@@ -55,19 +55,19 @@
</li>'
.$this->GetPostFormatting($Discussion->Comment->FormatType)
.'</ul>';
-
+
$this->CallDelegate('DiscussionForm_PreButtonsRender');
-
- echo '<div class="Submit">
+
+ echo '<div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition(($Discussion->DiscussionID > 0) ? 'SaveYourChanges' : 'StartYourDiscussion').'" class="Button SubmitButton StartDiscussionButton" onclick="'
."Wait(this, '".$this->Context->GetDefinition('Wait')."');"
.'"/>';
$this->CallDelegate('DiscussionForm_PostSubmitRender');
echo '<a href="'.(!$this->IsPostBack?'javascript:history.back();':'./').'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>';
-
+
$this->CallDelegate('DiscussionForm_PostButtonsRender');
-
+
echo'</form>
</fieldset>
</div>';

Modified: trunk/themes/people_apply_form_nopostback.php
==============================================================================
--- trunk/themes/people_apply_form_nopostback.php (original)
+++ trunk/themes/people_apply_form_nopostback.php Sun Sep 30 17:20:45 2007
@@ -9,10 +9,10 @@
<fieldset>
<legend>'.$this->Context->GetDefinition('MembershipApplicationForm').'</legend>
<p>'.$this->Context->GetDefinition('AllFieldsRequired').'</p>';
-
+
$this->CallDelegate('PreWarningsRender');
$this->Render_Warnings();
-
+
$this->Render_PostBackForm($this->FormName);
echo '<ul>';

@@ -35,16 +35,16 @@
<input id="txtConfirmPassword" type="password" name="ConfirmPassword" value="'.$this->Applicant->ConfirmPassword.'" class="Input" />
</li>';

- $this->CallDelegate('PostInputsRender');
+ $this->CallDelegate('PostInputsRender');
$this->CallDelegate('PreTermsCheckRender');
-
+
$TermsOfServiceUrl = $this->Context->Configuration['WEB_ROOT'].'termsofservice.php';
-
+
echo '<li id="TermsOfServiceCheckBox">
'.GetBasicCheckBox('AgreeToTerms', 1, $this->Applicant->AgreeToTerms,'').' '.str_replace('//1', ' <a href="'.$TermsOfServiceUrl.'" onclick="PopTermsOfService('."'".$TermsOfServiceUrl."'".'); return false;">'.$this->Context->GetDefinition('TermsOfService').'</a>', $this->Context->GetDefinition('IHaveReadAndAgreeTo')).'
</li>
</ul>
- <div class="Submit">
+ <div class="buttons">
<input type="submit" name="btnApply" value="'.$this->Context->GetDefinition('Proceed').'" class="Button" />
</div>
</form>

Modified: trunk/themes/people_password_request_form_nopostback.php
==============================================================================
--- trunk/themes/people_password_request_form_nopostback.php (original)
+++ trunk/themes/people_password_request_form_nopostback.php Sun Sep 30 17:20:45 2007
@@ -18,7 +18,7 @@
<input id="txtUsername" type="text" name="Username" value="'.FormatStringForDisplay($this->Username, 1).'" class="Input" maxlength="20" />
</li>
</ul>
-<div class="Submit"><input type="submit" name="btnPassword" value="'.$this->Context->GetDefinition('SendRequest').'" class="Button" /></div>
+<div class="buttons"><input type="submit" name="btnPassword" value="'.$this->Context->GetDefinition('SendRequest').'" class="Button" /></div>
</form>
</fieldset>
</div>';

Modified: trunk/themes/people_password_reset_form_nopostback.php
==============================================================================
--- trunk/themes/people_password_reset_form_nopostback.php (original)
+++ trunk/themes/people_password_reset_form_nopostback.php Sun Sep 30 17:20:45 2007
@@ -9,7 +9,7 @@
<fieldset>
<legend>'.$this->Context->GetDefinition('PasswordResetForm').'</legend>
<p>'.$this->Context->GetDefinition('ChooseANewPassword').'</p>';
-$this->Render_Warnings();
+$this->Render_Warnings();
$this->Render_PostBackForm($this->FormName);
echo '<ul>
<li>
@@ -21,7 +21,7 @@
<input id="txtConfirmPassword" type="password" name="ConfirmPassword" value="" class="Input" maxlength="20" />
</li>
</ul>
-<div class="Submit"><input type="submit" name="btnPassword" value="'.$this->Context->GetDefinition('Proceed').'" class="Button" /></div>
+<div class="buttons"><input type="submit" name="btnPassword" value="'.$this->Context->GetDefinition('Proceed').'" class="Button" /></div>
</form>
</fieldset>
</div>';

Modified: trunk/themes/people_signin_form_nopostback.php
==============================================================================
--- trunk/themes/people_signin_form_nopostback.php (original)
+++ trunk/themes/people_signin_form_nopostback.php Sun Sep 30 17:20:45 2007
@@ -18,7 +18,7 @@
'.GetDynamicCheckBox('RememberMe', 1, ForceIncomingBool('RememberMe', 0), '', $this->Context->GetDefinition('RememberMe')).'
</li>
</ul>
-<div class="Submit"><input type="submit" name="btnSignIn" value="'.$this->Context->GetDefinition('Proceed').'" class="Button" /></div>
+<div class="buttons"><input type="submit" name="btnSignIn" value="'.$this->Context->GetDefinition('Proceed').'" class="Button" /></div>
</form>
</fieldset>
<ul class="MembershipOptionLinks">

Modified: trunk/themes/settings_globals_form.php
==============================================================================
--- trunk/themes/settings_globals_form.php (original)
+++ trunk/themes/settings_globals_form.php Sun Sep 30 17:20:45 2007
@@ -10,7 +10,7 @@
<p>
'.$this->Context->GetDefinition('GlobalApplicationSettingsNotes').'
</p>
-
+
<h2>'.$this->Context->GetDefinition('ApplicationTitles').'</h2>
<ul>
<li>
@@ -34,7 +34,7 @@
<p><span>'.GetDynamicCheckBox('LOG_ALL_IPS', 1, $this->ConfigurationManager->GetSetting('LOG_ALL_IPS'), '', $this->Context->GetDefinition('LogAllIps')).'</span></p>
</li>
</ul>
-
+
<h2>'.$this->Context->GetDefinition('CountsTitle').'</h2>
<ul>
<li>
@@ -68,9 +68,9 @@
$Selector->SelectedValue = $this->ConfigurationManager->GetSetting('SEARCH_RESULTS_PER_PAGE');
echo $Selector->Get().'
</li>';
-
+
$this->CallDelegate('PostCounts');
-
+
echo '</ul>

<h2>'.$this->Context->GetDefinition('SpamProtectionTitle').'</h2>
@@ -87,7 +87,7 @@
}
$Selector->Name = 'DISCUSSION_POST_THRESHOLD';
$Selector->SelectedValue = $this->Context->Configuration['DISCUSSION_POST_THRESHOLD'];
-
+
$SecondsSelector = $this->Context->ObjectFactory->NewObject('Select');
$SecondsSelector2 = $this->Context->ObjectFactory->NewObject('Select');
$SecondsSelector->CssClass = 'SmallSelect';
@@ -95,26 +95,26 @@
for ($i = 10; $i < 601; $i++) {
$SecondsSelector->AddOption($i, $i);
$SecondsSelector2->AddOption($i, $i);
- $i += 9;
+ $i += 9;
}
$SecondsSelector->Name = 'DISCUSSION_TIME_THRESHOLD';
$SecondsSelector->SelectedValue = $this->Context->Configuration['DISCUSSION_TIME_THRESHOLD'];
$SecondsSelector2->Name = 'DISCUSSION_THRESHOLD_PUNISHMENT';
$SecondsSelector2->SelectedValue = $this->Context->Configuration['DISCUSSION_THRESHOLD_PUNISHMENT'];
-
+
echo '<br /><br />'.str_replace(array('//1', '//2', '//3'),
array($Selector->Get(), $SecondsSelector->Get(), $SecondsSelector2->Get()),
$this->Context->GetDefinition('XDiscussionsYSecondsZFreeze'));
-
+
$Selector->Name = 'COMMENT_POST_THRESHOLD';
$Selector->SelectedValue = $this->Context->Configuration['COMMENT_POST_THRESHOLD'];
-
+
$SecondsSelector->Name = 'COMMENT_TIME_THRESHOLD';
$SecondsSelector->SelectedValue = $this->Context->Configuration['COMMENT_TIME_THRESHOLD'];
-
+
$SecondsSelector2->Name = 'COMMENT_THRESHOLD_PUNISHMENT';
$SecondsSelector2->SelectedValue = $this->Context->Configuration['COMMENT_THRESHOLD_PUNISHMENT'];
-
+
echo '<br /><br />'
.str_replace(array('//1', '//2', '//3'),
array($Selector->Get(), $SecondsSelector->Get(), $SecondsSelector2->Get()),
@@ -147,7 +147,7 @@
<p class="Description">'.$this->Context->GetDefinition('SMTPSettingsNotes').'</p>
</li>
</ul>
-
+
<h2>'.$this->Context->GetDefinition('ApplicationSettings').'</h2>
<ul>
<li>
@@ -165,8 +165,8 @@
<p class="Description">'.$this->Context->GetDefinition('CookieSettingsNotes').'</p>
</li>
</ul>
-
- <div class="Submit">
+
+ <div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('Save').'" class="Button SubmitButton" />
<a href="'.GetUrl($this->Context->Configuration, $this->Context->SelfUrl).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/settings_language_form.php
==============================================================================
--- trunk/themes/settings_language_form.php (original)
+++ trunk/themes/settings_language_form.php Sun Sep 30 17:20:45 2007
@@ -5,7 +5,7 @@
$this->Context->WarningCollector->Add($this->Context->GetDefinition('PermissionError'));
echo '<div class="SettingsForm">
'.$this->Get_Warnings().'
- </div>';
+ </div>';
} else {
$this->PostBackParams->Set('PostBackAction', 'ProcessLanguageChange');
echo '<div id="Form" class="Account Identity">';
@@ -21,7 +21,7 @@
<p class="Description">'.$this->Context->GetDefinition('ChangeLanguageNotes').'</p>
</li>
</ul>
- <div class="Submit">
+ <div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('Save').'" class="Button SubmitButton" />
<a href="'.GetUrl($this->Context->Configuration, $this->Context->SelfUrl).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/settings_registration_form.php
==============================================================================
--- trunk/themes/settings_registration_form.php (original)
+++ trunk/themes/settings_registration_form.php Sun Sep 30 17:20:45 2007
@@ -6,7 +6,7 @@
echo '<div class="SettingsForm">
'.$this->Get_Warnings().'
</div>';
-} else {
+} else {
$this->PostBackParams->Set('PostBackAction', 'ProcessRegistrationChange');
echo '<div id="Form" class="Account Identity">';
if ($this->PostBackValidated) echo '<div id="Success">'.$this->Context->GetDefinition('RegistrationChangesSaved').'</div>';
@@ -27,7 +27,7 @@
</li>';
$this->CallDelegate('PostRegistrationOptions');
echo '</ul>
- <div class="Submit">
+ <div class="buttons">
<input type="submit" name="btnSave" value="'.$this->Context->GetDefinition('Save').'" class="Button SubmitButton" />
<a href="'.GetUrl($this->Context->Configuration, $this->Context->SelfUrl).'" class="CancelButton">'.$this->Context->GetDefinition('Cancel').'</a>
</div>

Modified: trunk/themes/vanilla/styles/default/people.css
==============================================================================
--- trunk/themes/vanilla/styles/default/people.css (original)
+++ trunk/themes/vanilla/styles/default/people.css Sun Sep 30 17:20:45 2007
@@ -161,7 +161,7 @@
#Form input {
width: 50%;
}
-#Form .Submit {
+#Form .buttons {
clear: left;
padding: 6px 0px 0px 88px;
text-align: left;
@@ -176,7 +176,7 @@
#Form.SignInForm fieldset {
padding: 0px 6px 0px 6px;
}
-#Form.SignInForm .Submit {
+#Form.SignInForm .buttons {
padding: 6px 0px 0px 0px;
clear: left;
text-align: center;
@@ -250,7 +250,7 @@
min-height: 322px;
height: auto;
}
-#Form.ApplyForm .Submit {
+#Form.ApplyForm .buttons {
padding-left: 104px;
}
#Form.ApplyForm label {
@@ -259,7 +259,7 @@
#Form.ApplyForm input {
width: 156px;
}
-#Form.ApplyForm .Submit input {
+#Form.ApplyForm .buttons input {
width:auto !important;
}
#TermsOfServiceCheckBox input {
@@ -278,7 +278,7 @@
#Form.PasswordResetForm .ErrorContainer {
margin: 0px;
}
-#Form.PasswordResetForm .Submit {
+#Form.PasswordResetForm .buttons {
padding-left:100px;
}
.PasswordReset .About {

Modified: trunk/themes/vanilla/styles/default/vanilla.css
==============================================================================
--- trunk/themes/vanilla/styles/default/vanilla.css (original)
+++ trunk/themes/vanilla/styles/default/vanilla.css Sun Sep 30 17:20:45 2007
@@ -693,7 +693,7 @@
#MainSearchInput label {
display: none !important;
}
-#Form.Search .Submit input {
+#Form.Search .buttons input {
margin: 0px !important;
color: #000 !important;
}
@@ -950,7 +950,7 @@
cursor: pointer;
color: #000 !important;
}
-#Form .Button.SubmitButton {
+#Form .Button.buttonsButton {
margin-right:10px;
}

@@ -1312,16 +1312,16 @@
#CustomInfo li input {
width:80% !important;
}
-.Submit {
+.buttons {
margin:20px 0px !important;
text-align:right;
}
-.Submit input {
+.buttons input {
width: auto !important;
float:left;
cursor:pointer;
}
-.Submit a {
+.buttons a {
color: #f60 !important;
}

Reply all
Reply to author
Forward
0 new messages