diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-12 18:30:42 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-12 18:30:42 +0000 |
commit | c71cfb0a82b4e2d0a1395ba9d3d96b4f9d6a1ebd (patch) | |
tree | e421558b72052c7547b933acae8ec6a48dc1505a /views | |
parent | 49d2af620116bdb98695d35159df235547293977 (diff) | |
download | elgg-c71cfb0a82b4e2d0a1395ba9d3d96b4f9d6a1ebd.tar.gz elgg-c71cfb0a82b4e2d0a1395ba9d3d96b4f9d6a1ebd.tar.bz2 |
sidebar menu additions
git-svn-id: https://code.elgg.org/elgg/trunk@1862 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css.php | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/views/default/css.php b/views/default/css.php index 39bdfbe1d..e5aa2f0a2 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1343,12 +1343,20 @@ temp force image width until upload size is changed margin:0 10px 0 0; } #owner_block_rss_feed { - border-top:1px solid #cccccc; + /* border-top:1px solid #cccccc; */ margin:0 0 4px 0; padding:5px 0 0 0; } #owner_block_odd_feed { padding:0 0 7px 0; + /* border-bottom:1px solid #cccccc; */ +} +#owner_block_bookmark_this { + margin:0 0 4px 0; +} +#owner_block_report_this { + padding:0 0 7px 0; + margin:0 0 4px 0; border-bottom:1px solid #cccccc; } #owner_block_rss_feed a { @@ -1363,17 +1371,31 @@ temp force image width until upload size is changed padding:0 0 4px 20px; background: url(<?php echo $vars['url']; ?>_graphics/icon_odd.gif) no-repeat left top; } -#owner_block_rss_feed a:hover { - color: #0054a7; +#owner_block_bookmark_this a { + font-size: 90%; + color:#999999; + padding:0 0 4px 20px; + background: url(<?php echo $vars['url']; ?>_graphics/icon_bookmarkthis.gif) no-repeat left top; +} +#owner_block_report_this a { + font-size: 90%; + color:#999999; + padding:0 0 4px 20px; + background: url(<?php echo $vars['url']; ?>_graphics/icon_reportthis.gif) no-repeat left top; } -#owner_block_odd_feed a:hover { +#owner_block_rss_feed a:hover, +#owner_block_odd_feed a:hover, +#owner_block_bookmark_this a:hover, +#owner_block_report_this a:hover { color: #0054a7; } + #owner_block_desc { - padding:4px 0 0 0; + padding:4px 0 4px 0; margin:0 0 5px 0; line-height: 1.2em; border-top:1px solid #cccccc; + border-bottom:1px solid #cccccc; color:#666666; } #owner_block_content { |