add th elements to table in presentation uploader
This commit is contained in:
parent
f2e2948df3
commit
cf01beb875
@ -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>
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user