diff options
Diffstat (limited to 'views/default/css.php')
-rw-r--r-- | views/default/css.php | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/views/default/css.php b/views/default/css.php index cc7e86451..e2a8d59b5 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1447,13 +1447,35 @@ a.action_button:focus { /* *************************************** LIKES *************************************** */ -.user_like_holder { - float:right; -} .likes_list_holder { position: relative; float:right; } +.likes_list_holder a.user_like { + cursor:pointer; + background: url(<?php echo $vars['url']; ?>_graphics/icon_like.png) no-repeat left -2px; + text-indent: -9000em; + text-align: left; + display:block; + width:20px; + height:20px; + margin:0; + float:left; +} +.likes_list_holder a.user_like:hover { + background-position: left -32px; +} +.likes_list_holder .likes_list_button.link { + float:left; + text-align: left; + background: url(<?php echo $vars['url']; ?>_graphics/icon_like.png) no-repeat left -32px; + padding-left:21px; + height:20px; +} +.likes_list_holder .likes_list_button.link.not_liked { + background:none; + padding-left:0; +} .likes_list_holder .likes_list { background-color: white; border:1px solid #cccccc; |