diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-28 20:08:16 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-28 20:08:16 +0000 |
commit | 6d47049d72562d74f0c6838fc2d9d3d89c016a47 (patch) | |
tree | ac74bd578e4cf22148fd97484528c4827b4cb30e /views/default | |
parent | 21578472f91912c8a5c1b52d8d9863173d284583 (diff) | |
download | elgg-6d47049d72562d74f0c6838fc2d9d3d89c016a47.tar.gz elgg-6d47049d72562d74f0c6838fc2d9d3d89c016a47.tar.bz2 |
Refs #3236 updated the button css so that disable plugin button looks like a button
git-svn-id: http://code.elgg.org/elgg/trunk@9047 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/css/admin.php | 17 | ||||
-rw-r--r-- | views/default/forms/profile/fields/reset.php | 2 |
2 files changed, 16 insertions, 3 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index ae3002dcb..68720b89a 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -429,7 +429,7 @@ input { textarea { height: 100px; } -input[type="submit"], .elgg-button-submit, .elgg-button-action { +input[type="submit"], .elgg-button-submit, .elgg-button-action, .elgg-button-cancel { font-size: 14px; font-weight: bold; color: white; @@ -453,9 +453,22 @@ input[type="submit"]:hover, .elgg-button-submit:hover, .elgg-button-action:hover background-color: #000; text-decoration: none; } -.elgg-button-submit, .elgg-button-action { +.elgg-button-submit, .elgg-button-action, .elgg-button-cancel { padding: 4px 8px; } +.elgg-button-cancel { + color: #333; + background-color: #999; +} +.elgg-button-cancel:hover { + color: #222; + background-color: #666; + text-decoration: none; +} +.elgg-button-action.elgg-state-disabled { + background-color: #aaa; +} + /* *************************************** PAGINATION *************************************** */ diff --git a/views/default/forms/profile/fields/reset.php b/views/default/forms/profile/fields/reset.php index 57dc00e85..4e0f51dc6 100644 --- a/views/default/forms/profile/fields/reset.php +++ b/views/default/forms/profile/fields/reset.php @@ -5,6 +5,6 @@ $params = array( 'value' => elgg_echo('profile:resetdefault'), - 'class' => 'elgg-button elgg-button-action elgg-state-disabled', + 'class' => 'elgg-button-cancel', ); echo elgg_view('input/submit', $params); |