Shifted QSO notifications to the right panel rather than top to keep elements at the same height

这个提交包含在:
Peter Goodhall 2019-06-13 14:39:35 +01:00
父节点 4295e1881c
当前提交 c676a35b21
共有 2 个文件被更改,包括 15 次插入13 次删除

查看文件

@ -1,17 +1,5 @@
<div class="container qso_panel">
<?php if($notice) { ?>
<div class="alert alert-info" role="alert">
<?php echo $notice; ?>
</div>
<?php } ?>
<?php if(validation_errors()) { ?>
<div class="alert alert-warning" role="alert">
<?php echo validation_errors(); ?>
</div>
<?php } ?>
<div class="row">
<div class="col-sm-5">
@ -287,10 +275,20 @@
<div class="col-sm-7">
<?php if($notice) { ?>
<div class="alert alert-info" role="alert">
<?php echo $notice; ?>
</div>
<?php } ?>
<?php if(validation_errors()) { ?>
<div class="alert alert-warning" role="alert">
<?php echo validation_errors(); ?>
</div>
<?php } ?>
<div class="card previous-qsos">
<div class="card-header"><h2 class="card-title">Previous Contacts</h2></div>
<div class="card-header"><h4 class="card-title">Previous Contacts</h4></div>
<div class="card-body">
<div id="partial_view">

查看文件

@ -106,4 +106,8 @@ TD.lotw{
.qso-edit-box {
padding: 10px;
}
.previous-qsos .card-title {
margin-bottom: 0px;
}