diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-10 01:43:36 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-10 01:43:36 +0000 |
commit | 2c2ad03dce82a3fffa575a9a1233345a85e0db34 (patch) | |
tree | 5fab9727cb629c7f12af3a529addd809c433c985 /mod/profile/views | |
parent | 6b3ee5365b10afc37677781fc5f07539f1d8636f (diff) | |
download | elgg-2c2ad03dce82a3fffa575a9a1233345a85e0db34.tar.gz elgg-2c2ad03dce82a3fffa575a9a1233345a85e0db34.tar.bz2 |
Converted buttons to elgg-object-type naming convention. Added table of buttons to forms theming preview meant for previewing all button types and states (still have to implement those...)
git-svn-id: http://code.elgg.org/elgg/trunk@8091 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rw-r--r-- | mod/profile/views/default/profile/css.php | 2 | ||||
-rwxr-xr-x | mod/profile/views/default/profile/owner_block.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/profile/views/default/profile/css.php b/mod/profile/views/default/profile/css.php index b2a3ff935..d252dec68 100644 --- a/mod/profile/views/default/profile/css.php +++ b/mod/profile/views/default/profile/css.php @@ -31,7 +31,7 @@ #profile-owner-block .large { margin-bottom: 10px; } -#profile-owner-block a.elgg-action-button { +#profile-owner-block a.elgg-button-action { margin-bottom: 4px; display: table; } diff --git a/mod/profile/views/default/profile/owner_block.php b/mod/profile/views/default/profile/owner_block.php index e36658004..a51db87ef 100755 --- a/mod/profile/views/default/profile/owner_block.php +++ b/mod/profile/views/default/profile/owner_block.php @@ -28,7 +28,7 @@ $profile_actions = ''; if (elgg_is_logged_in() && $actions) { $profile_actions = '<ul class="elgg-menu">'; foreach ($actions as $action) { - $profile_actions .= '<li>' . $action->getLink(array('class' => 'elgg-action-button')) . '</li>'; + $profile_actions .= '<li>' . $action->getLink(array('class' => 'elgg-button-action')) . '</li>'; } $profile_actions .= '</ul>'; } |