diff options
| author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-18 19:10:20 +0000 | 
|---|---|---|
| committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-18 19:10:20 +0000 | 
| commit | f2f3cf95a96dc1167f90d3d0e5419149e680ee96 (patch) | |
| tree | 437bebfa1b3b31b604b478cecfb1c8c0fb1e61fd | |
| parent | 73c248a96ce5e12f3d0695d3185e12f702f0bbc7 (diff) | |
| download | elgg-f2f3cf95a96dc1167f90d3d0e5419149e680ee96.tar.gz elgg-f2f3cf95a96dc1167f90d3d0e5419149e680ee96.tar.bz2 | |
Improved the admin menu a bit
git-svn-id: http://code.elgg.org/elgg/trunk@8292 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | views/default/css/admin.php | 17 | 
1 files changed, 14 insertions, 3 deletions
| diff --git a/views/default/css/admin.php b/views/default/css/admin.php index 223f361cd..d0ee9f372 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -255,7 +255,18 @@ table.mceLayout {  	color: #333333;  	cursor: pointer;  	text-decoration: none; +	margin-bottom: 2px; +	border: 1px solid #CCC; +	 +	-webkit-border-radius: 5px; +	-moz-border-radius: 5px; +	border-radius: 5px; +} + +.elgg-menu-page a:hover { +  } +  .elgg-menu-page .elgg-menu-closed:before {  	content: "\25B8";  	padding-right: 4px; @@ -265,16 +276,16 @@ table.mceLayout {  	padding-right: 4px;  }  .elgg-menu-page a:hover { -	color: black;  	text-decoration: none; +	background: black; +	color: white; +	border: 1px solid black;  }  .elgg-menu-page li.elgg-state-selected > ul {  	display: block;  }  .elgg-menu-page .elgg-child-menu {  	display: none; -} -.elgg-menu-page .elgg-child-menu a {  	padding-left: 30px;  } | 
