fix upload drop target

pull/296/head
Matthew Hodgson 2015-10-25 23:13:03 +00:00
parent 86fb313b9b
commit 78cff9f20d
2 changed files with 3 additions and 3 deletions

View File

@ -61,10 +61,10 @@ limitations under the License.
border-top-right-radius: 10px; border-top-right-radius: 10px;
background-color: rgba(255, 255, 255, 0.9); background-color: rgba(255, 255, 255, 0.9);
border: 2px dashed #76cfa6; border: 2px #e1dddd solid;
border-bottom: none; border-bottom: none;
position: absolute; position: absolute;
top: 88px; top: 83px;
bottom: 0px; bottom: 0px;
z-index: 3000; z-index: 3000;
} }

View File

@ -211,7 +211,7 @@ module.exports = React.createClass({
if (this.state.draggingFile) { if (this.state.draggingFile) {
fileDropTarget = <div className="mx_RoomView_fileDropTarget"> fileDropTarget = <div className="mx_RoomView_fileDropTarget">
<div className="mx_RoomView_fileDropTargetLabel"> <div className="mx_RoomView_fileDropTargetLabel">
<img src="img/upload-big.png" width="46" height="61" alt="Drop File Here"/><br/> <img src="img/upload-big.png" width="43" height="57" alt="Drop File Here"/><br/>
Drop File Here Drop File Here
</div> </div>
</div>; </div>;