diff options
author | friendica <info@friendica.com> | 2013-12-04 17:36:53 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-04 17:36:53 -0800 |
commit | 307fcac86d8b6627389bdfaae048bcb24e146c72 (patch) | |
tree | cda373ac38bf393166a049798d8b9fe2c1c1d3e9 /view/theme/redbasic | |
parent | f9c5cde38bebdc93b24f0b47b0db1348ebbe5834 (diff) | |
download | volse-hubzilla-307fcac86d8b6627389bdfaae048bcb24e146c72.tar.gz volse-hubzilla-307fcac86d8b6627389bdfaae048bcb24e146c72.tar.bz2 volse-hubzilla-307fcac86d8b6627389bdfaae048bcb24e146c72.zip |
more icon updates
Diffstat (limited to 'view/theme/redbasic')
-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');} ); |