diff options
author | marijus <mario@mariovavti.com> | 2014-05-20 17:33:06 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-05-20 17:33:06 +0200 |
commit | c530a7a9366b1c89a63fc1782ec620db992efc3b (patch) | |
tree | 3fc623a4c7d675e99f80c00a99d919ee8c117c0b /view/theme/redbasic | |
parent | 6d01707a724504a34b8e84e87c6601a046de9739 (diff) | |
download | volse-hubzilla-c530a7a9366b1c89a63fc1782ec620db992efc3b.tar.gz volse-hubzilla-c530a7a9366b1c89a63fc1782ec620db992efc3b.tar.bz2 volse-hubzilla-c530a7a9366b1c89a63fc1782ec620db992efc3b.zip |
some work on comment_item.tpl
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/css/style.css | 52 | ||||
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 20 |
2 files changed, 7 insertions, 65 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f7df3bf52..f773264cc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1884,7 +1884,6 @@ img.mail-list-sender-photo { .wall-item-content-wrapper { background-color: $item_colour; - opacity: $item_opacity; padding: 10px; } @@ -1893,9 +1892,6 @@ img.mail-list-sender-photo { border-top-left-radius: $radiuspx; } -.wall-item-content-wrapper:hover { - z-index:99; -} .comment .wall-item-body { padding-left: $comment_padding; } @@ -1905,35 +1901,23 @@ img.mail-list-sender-photo { background-color: $comment_item_colour; border-left: $comment_border_left $comment_border_colour; border-right: $comment_border_right $comment_border_colour; - border-bottom: $comment_border_bottom $comment_border_colour; border-radius: 0px; padding: 7px 10px 7px 7px; } -/* -.thread-wrapper.toplevel_item{ - border-bottom: $comment_border_bottom $comment_border_colour; - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - - border-top-right-radius: $radiuspx; - border-top-left-radius: $radiuspx; - border-bottom-right-radius: $radiuspx; - border-bottom-left-radius: $radiuspx; -} - */ .wall-item-comment-wrapper { - background-color: $comment_item_colour; - /* border-top: $comment_border_top $item_colour; */ - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - border-bottom: $comment_border_bottom $item_colour; + padding: 7px 10px; + background-color: $item_colour; border-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; + margin-top: 3px; } +.wall-item-comment-wrapper-wc { + margin-top: 0px; +} .wall-item-like, .wall-item-dislike { @@ -1981,37 +1965,15 @@ img.mail-list-sender-photo { color: $toolicon_colour; } -.item-tool:hover { - /*color: $toolicon_activecolour;*/ -} - .like-rotator { color: $toolicon_colour; } -.my-comment-photo { - border-radius: $radiuspx; - -moz-border-radius: $radiuspx; - box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444; -} - -.comment-edit-photo img { - width: $reply_photo; -} - -[class^="comment-edit-bb"] { - list-style: none; -} - .comment-icon { - font-size: 1.2em; + font-size: 0.8em; color: $toolicon_colour; } -.comment-icon:hover { - color: $toolicon_activecolour; -} - .comment-edit-text-empty, .comment-edit-text-full { border: 1px solid #ccc; diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 20902fe1a..d981b0c11 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -1,23 +1,3 @@ -function cmtBbOpen(comment, id) { - if($(comment).hasClass('comment-edit-text-full')) { - $(".comment-edit-bb-" + id).show(); - return true; - } - return false; -} - -function cmtBbClose(comment, id) { -// if($(comment).hasClass('comment-edit-text-empty')) { -// $(".comment-edit-bb-" + id).hide(); -// return true; -// } - return false; -} - -//document.jotpermslock = 'icon-lock'; -//document.jotpermsunlock = 'icon-unlock'; - - $(document).ready(function() { $('#expand-aside').click(function() { |