Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated html attributes #924

Merged
merged 1 commit into from
Dec 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -160,7 +160,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 @@ -377,7 +377,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