From d4341f03c27b59695d4b2829e1d328c2af0475eb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 18 Jun 2008 12:35:16 -0400 Subject: add submit class to all buttons darcs-hash:20080618163516-84dde-ab4d9daa4180d75da0813bed03f6c824577a87a0.gz --- actions/openidsettings.php | 2 ++ actions/showstream.php | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'actions') diff --git a/actions/openidsettings.php b/actions/openidsettings.php index 91f9ab4c7..0737f2148 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -53,6 +53,7 @@ class OpenidsettingsAction extends SettingsAction { common_element('input', array('type' => 'submit', 'id' => 'add', 'name' => 'add', + 'class' => 'submit', 'value' => _t('Add'))); common_element_end('p'); common_element_end('form'); @@ -83,6 +84,7 @@ class OpenidsettingsAction extends SettingsAction { common_element('input', array('type' => 'submit', 'id' => 'remove'.$idx, 'name' => 'remove', + 'class' => 'submit', 'value' => _t('Remove'))); common_element_end('p'); common_element_end('form'); diff --git a/actions/showstream.php b/actions/showstream.php index a9073df86..49a44b274 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -164,7 +164,7 @@ class ShowstreamAction extends StreamAction { 'type' => 'hidden', 'value' => $profile->nickname)); common_element('input', array('type' => 'submit', - 'class' => 'button', + 'class' => 'submit', 'value' => _t('Subscribe'))); common_element_end('form'); } @@ -182,7 +182,7 @@ class ShowstreamAction extends StreamAction { 'id' => 'submit', 'name' => 'submit', 'value' => _t('Subscribe'), - 'class' => 'button')); + 'class' => 'submit')); common_element_end('form'); } @@ -194,7 +194,7 @@ class ShowstreamAction extends StreamAction { 'type' => 'hidden', 'value' => $profile->nickname)); common_element('input', array('type' => 'submit', - 'class' => 'button', + 'class' => 'submit', 'value' => _t('Unsubscribe'))); common_element_end('form'); } -- cgit v1.2.3-54-g00ecf