diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-05-11 02:22:27 +0200 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-05-11 02:22:27 +0200 |
commit | 5f1f82df5d0126cf68780b03f95e3c53f137bb75 (patch) | |
tree | 6918eae7c6c8908dc90b89e0e2c0161527ed6985 /view/theme/redbasic/css | |
parent | e2b96df27b76d27c9688cf131e2d5e63a410fad0 (diff) | |
download | volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.tar.gz volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.tar.bz2 volse-hubzilla-5f1f82df5d0126cf68780b03f95e3c53f137bb75.zip |
Move "boxy" conversation design into a schema file
Default design is now again basically the previous one
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3ed087c74..c1a30ee6d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1912,26 +1912,26 @@ img.mail-list-sender-photo { 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-left: $comment_border_left $comment_border_colour; + border-right: $comment_border_right $comment_border_colour; /* border-bottom: 1px solid $comment_border_colour; */ border-radius: 0px; padding: 7px 10px 7px 7px; } .thread-wrapper.toplevel_item{ - border-bottom: 1px solid $comment_border_colour; + border-bottom: $comment_border_bottom $comment_border_colour; } .wall-item-comment-wrapper { background-color: $comment_item_colour; - border-right: 1px solid $item_colour; - border-left: 1px solid $item_colour; - border-top: 1px solid $item_colour; + border-right: $comment_border_right $item_colour; + border-left: $comment_border_left $item_colour; + border-top: $comment_border_top $item_colour; border-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; |