Skip to content

Commit

Permalink
Remove deprecated html attributes (cvat-ai#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarkelov authored and Chris Lee-Messer committed Mar 5, 2020
1 parent 5f2be8a commit 1766d4a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion cvat/apps/engine/static/engine/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,16 @@
margin: 0px auto;
border: 1px solid dimgrey;
border-radius: 6px;
text-align: left;
width: 100%;
text-align: center;
border-collapse: separate;
border-spacing: 3px;
}

#annotationStatisticTable th, #annotationStatisticTable td { padding: 3px; }

#annotationSettingsTable th, #annotationSettingsTable td {
padding: 20px;
}

#playerPanel {
Expand Down
4 changes: 2 additions & 2 deletions cvat/apps/engine/templates/engine/annotation.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<input class="regular h2" style="width: 3.5em;" type="number" id="frameNumber">
</div>
<hr>
<table class="regular" cellpadding="20">
<table id="annotationSettingsTable" class="regular">
<tr>
<td style="width: auto;">
<div style="float: left;"> <label class="semiBold"> Fill Opacity: </label> </div>
Expand Down Expand Up @@ -381,7 +381,7 @@
</center>
<center> <label class="semiBold h2"> Segment Statistic </label> </center>
<div style="text-align: center; max-height: 250px; overflow: auto; display: block;">
<table id="annotationStatisticTable" cellspacing="3" cellpadding="3">
<table id="annotationStatisticTable">
<tr class="semiBold">
<td> Label </td>
<td colspan="2"> Boxes </td>
Expand Down

0 comments on commit 1766d4a

Please sign in to comment.