add th elements to table in presentation uploader

This commit is contained in:
KDSBrowne 2019-05-09 18:30:16 +00:00
parent f2e2948df3
commit cf01beb875
2 changed files with 11 additions and 0 deletions

View File

@ -434,6 +434,9 @@ class PresentationUploader extends Component {
<div className={styles.fileList}>
<table className={styles.table}>
<tbody>
<th className={styles.visuallyHidden} colSpan={3}>File Name</th>
<th className={styles.visuallyHidden}>Status</th>
<th className={styles.visuallyHidden}>Options</th>
{ presentationsSorted.map(item => this.renderPresentationItem(item))}
</tbody>
</table>

View File

@ -6,6 +6,14 @@
to { background-position: 0 0; }
}
.visuallyHidden {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
}
.fileList {
@include scrollbox-vertical();
max-height: 35vh;