Add download button for each file

- This commit also introduces some CSS to place the buttons/forms next
to each other
This commit is contained in:
Fabian Würfl
2018-05-20 17:02:41 +02:00
parent f3813777b7
commit de96175c18
2 changed files with 34 additions and 2 deletions

View File

@ -0,0 +1,23 @@
/* necessary to place both forms/buttons next to each other */
li.file {
clear: both;
list-style-position: outside;
}
/* necessary to place both forms/buttons next to each other */
form.file {
/* Float both forms to the left */
float: left;
}
form.file.file_add {
margin-left: 5px;
margin-right: 5px;
}
/* necessary to place both forms/buttons next to each other */
form.file.file_download {
clear: right;
/* with some space to the left of the second form */
margin-right: 20px;
}