diff options
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ba26f8910..88fd693ad 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1911,29 +1911,45 @@ img.mail-list-sender-photo { .wall-item-content-wrapper:hover { z-index:99; } -/* .comment .wall-item-body { -padding-left: 42px; + padding-left: $comment_padding; } - */ + .hide-comments-outer, .wall-item-content-wrapper.comment { background-color: $comment_item_colour; - border-left: 1px solid $comment_border_colour; - border-right: 1px solid $comment_border_colour; - border-bottom: 1px solid $comment_border_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: 1px solid $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; border-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; } + .wall-item-like, .wall-item-dislike { font-size: 11px; |