Fixed CSS when dragging

This commit is contained in:
Kenneth Jao 2016-09-15 09:40:45 -04:00
parent 8e0256c845
commit b11850fb6c
2 changed files with 23 additions and 13 deletions

View File

@ -514,18 +514,20 @@ input, textarea {
} }
.cWorkTop { .cWorkTop {
width: 100%;
margin: 0 0 5% 0; margin: 0 0 5% 0;
display: table;
} }
.cWorkCreator { .cWorkCreator {
width: 39%; width: 50%;
display: inline-block; display: table-cell;
text-align: right; text-align: right;
} }
.cWorkDate { .cWorkDate {
width: 75%; width: 70%;
display: inline-block; display: table-cell;
} }
.cWorkCont { .cWorkCont {
@ -539,19 +541,25 @@ input, textarea {
.cWorkName { .cWorkName {
font-weight: 400; font-weight: 400;
font-size: 100%; font-size: 100%;
width: 60%; width: 50%;
margin-top: 0; margin-top: 0;
-webkit-filter: none; -webkit-filter: none;
filter: none; filter: none;
display: inline-block; display: table-cell;
white-space: normal; white-space: normal;
} }
.cWorkBottom { .cWorkBottom {
width: 100%;
display: table;
}
.cWorkBottom div {
width: 30%; width: 30%;
display: inline-block; display: table-cell;
text-align: right;
} }
#editWork { #editWork {

View File

@ -303,12 +303,14 @@
<h3 class="cWorkName">{{name}}</h3> <h3 class="cWorkName">{{name}}</h3>
<span class="cWorkCreator">{{creator}}</span> <span class="cWorkCreator">{{creator}}</span>
</div> </div>
<span class="cWorkDate" style="font-weight:{{cardDate}}">{{dueDate}}</span> <div class="cWorkBottom">
<div class="cWorkBottom"> <span class="cWorkDate" style="font-weight:{{cardDate}}">{{dueDate}}</span>
<i class="fa fa-thumbs-up" aria-hidden="true"></i> <div>
<span>{{confirmationLength}}</span> <i class="fa fa-thumbs-up" aria-hidden="true"></i>
<i class="fa fa-thumbs-down" aria-hidden="true"></i> <span>{{confirmationLength}}</span>
<span>{{reportLength}}</span> <i class="fa fa-thumbs-down" aria-hidden="true"></i>
<span>{{reportLength}}</span>
</div>
</div> </div>
</div> </div>
</div> </div>