port boxy scheme

This commit is contained in:
Mario Vavti 2015-03-08 12:07:32 +01:00
parent 9cd7546be5
commit 488d5b8714
4 changed files with 19 additions and 36 deletions

View File

@ -1688,25 +1688,22 @@ img.mail-list-sender-photo {
border-radius: $radiuspx;
}
.comment .wall-item-body {
padding-left: $comment_padding;
}
.wall-item-content-wrapper.comment {
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-color: $comment_border_colour;
border-style: solid;
border-width: 1px 0px 0px 3px;
border-radius: 0px;
padding: 7px 10px 7px 7px;
}
.hide-comments-outer {
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-top: 1px dashed #ccc;
border-color: $comment_border_colour;
border-top-color: #ccc;
border-style: solid;
border-top-style: dashed;
border-width: 1px 0px 0px 3px;
text-align: center;
border-radius: 0px;
}

View File

@ -282,16 +282,6 @@ if(! $a->install) {
$chat_txtbgcol = "#EEE";
if(! $fancybox_bgcolour)
$fancybox_bgcolour = "#FFFFFF";
if (!$comment_padding)
$comment_padding="0px";
if (!$comment_border_left)
$comment_border_left="3px solid";
if (!$comment_border_right)
$comment_border_right="0px solid";
if (!$comment_border_top)
$comment_border_top="0px solid";
if (!$comment_border_bottom)
$comment_border_bottom="0px solid";
if (!$admintable_hoverbgcol)
$admintable_hoverbgcol="#BBC7D7";
if (!$dirpopup_txtcol)

View File

@ -0,0 +1,11 @@
.comment .wall-item-body {
padding-left: 42px;
}
.wall-item-content-wrapper.comment {
border-width: 0px 1px 1px 1px;
}
.hide-comments-outer {
border-width: 1px 1px 1px 1px;
}

View File

@ -1,19 +1,4 @@
<?php
if (!$comment_padding)
$comment_padding="42px";
if (!$comment_border_left)
$comment_border_left="1px solid";
if (!$comment_border_right)
$comment_border_right="1px solid";
if (!$comment_border_top)
$comment_border_top="1px solid";
if (!$comment_border_bottom)
$comment_border_bottom="1px solid";
if (! $radiuspx)
$radiuspx = "4";