* Code for task #90776 .
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
.actions > .text {color: #8c8c8c; font-size: 14px;}
|
||||
.flex-content {display: flex; width: 100%; height: 100%;}
|
||||
.flex-content > #content {flex: auto; overflow-y: auto;}
|
||||
.flex-content > #history {flex: 0 0 302px; position: relative;}
|
||||
.flex-content > #history {flex: 0 0 302px; position: relative; overflow: auto;}
|
||||
.flex-content > #history > #closeIcon {position: absolute; right: 10px; top: 10px;}
|
||||
.panel {margin-bottom: 0;}
|
||||
.detail {margin: 0 4px;}
|
||||
|
||||
@@ -208,19 +208,22 @@ $(function()
|
||||
if($history.hasClass('hidden'))
|
||||
{
|
||||
$history.removeClass('hidden');
|
||||
$('#outlineMenu').addClass('hidden');
|
||||
$icon.addClass('text-primary');
|
||||
}
|
||||
else
|
||||
{
|
||||
$history.addClass('hidden');
|
||||
$('#outlineMenu').removeClass('hidden');
|
||||
$icon.removeClass('text-primary');
|
||||
}
|
||||
})
|
||||
|
||||
$('#history').find('.btn.pull-right').removeClass('pull-right')
|
||||
$('#history').find('.btn.pull-right').removeClass('pull-right');
|
||||
$('#closeBtn').on('click', function()
|
||||
{
|
||||
$('#history').addClass('hidden');
|
||||
$('#outlineMenu').removeClass('hidden');
|
||||
$('#hisTrigger').removeClass('text-primary');
|
||||
})
|
||||
$('#history').find('.btn.pull-right').removeClass('pull-right');
|
||||
|
||||
@@ -145,7 +145,7 @@
|
||||
<?php endforeach;?>
|
||||
</div>
|
||||
<?php if(!empty($outline) and strip_tags($outline)):?>
|
||||
<div class="outline table-col">
|
||||
<div id="outlineMenu" class="outline table-col">
|
||||
<div class="outline-toggle"><i class="icon icon-angle-right"></i></div>
|
||||
<div class="outline-content">
|
||||
<?php echo $outline;?>
|
||||
|
||||
Reference in New Issue
Block a user