diff options
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 20 | ||||
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 10 |
2 files changed, 15 insertions, 15 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 029a15978..36e147502 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -458,6 +458,14 @@ footer { clear: both; } +.vcard-profile-edit-icon { + font-size: 1.2em; +} +.vcard-profile-edit-icon:hover { + text-decoration: none; +} + + #profile-extra-links { clear: both; margin-top: 10px; @@ -589,11 +597,6 @@ footer { margin-bottom: 10px; } -.contact-entry-direction-icon { - margin-top: 24px; - margin-right: 2px; -} - .contact-entry-photo img { border: none; } @@ -638,11 +641,7 @@ footer { margin-left: 50px; } -/* might be obsolete -.wall-item-delete-icon { - border: none; -} -*/ + /* might be obsolete #profile-youtube-wrapper { @@ -2697,6 +2696,7 @@ text-decoration: none; list-style-type: none; } +.group-edit-icon, .savedsearchdrop { opacity: 0; } diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index e40a94fcc..12ff2c6fe 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -20,19 +20,19 @@ $(document).ready(function() { $('.group-edit-icon').hover( function() { - $(this).addClass('icon'); $(this).removeClass('iconspacer');}, + $(this).css('opacity','1.0');}, function() { - $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); + $(this).css('opacity','0');} +); $('.sidebar-group-element').hover( function() { id = $(this).attr('id'); - $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');}, + $('#edit-' + id).css('opacity','1.0');}, function() { id = $(this).attr('id'); - $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');} + $('#edit-' + id).css('opacity','0');} ); |