diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-10 04:18:44 +0000 | 
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-10 04:18:44 +0000 | 
| commit | f73b5756ea56f2f73e578892074a79c83793cb41 (patch) | |
| tree | 3e6291438fb6f8ec8a023982c7e04361d4854044 /views/default | |
| parent | 965d29e1349dd03524eac7960c73e81c4562d1f6 (diff) | |
| download | elgg-f73b5756ea56f2f73e578892074a79c83793cb41.tar.gz elgg-f73b5756ea56f2f73e578892074a79c83793cb41.tar.bz2 | |
Fixes #2948: Put specific rules in for .elgg-plugin.elgg-state-active to get white backgrounds in plugins, but not break the action button. The admin CSS still needs a bit of work.
git-svn-id: http://code.elgg.org/elgg/trunk@8646 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default')
| -rw-r--r-- | views/default/css/admin.php | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/views/default/css/admin.php b/views/default/css/admin.php index 00503a916..1a8747f3a 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -1020,6 +1020,10 @@ ul.admin_plugins {  	color:black;  } +.elgg-plugin.elgg-state-active { +	background: white; +} +  .admin_notices {  	padding-bottom: 15px;  } @@ -1313,7 +1317,8 @@ ul.admin_plugins {  *************************************** */  .elgg-state-active { -	background:white; +	background:#cccccc; +	color: #333333;  }  .elgg-state-inactive { | 
