Add not-working-yet text box, plus a bit more css

pull/1/head
David Baker 2015-06-15 18:35:28 +01:00
parent 56415b40e9
commit a0c5fb4a8b
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,12 @@
.mx_MessageComposer {
position: absolute;
bottom: 5px;
right: 0px;
left: 0px;
width: 100%;
height: 36px;
}
.mx_MessageComposer textarea {
width: 100%;
}

View File

@ -0,0 +1,3 @@
.mx_MessageTile {
border-bottom: 1px solid #eee;
}

View File

@ -0,0 +1,16 @@
var React = require('react');
var MatrixClientPeg = require("../MatrixClientPeg");
module.exports = React.createClass({
render: function() {
return (
<div className="mx_MessageComposer">
<form>
<textarea />
</form>
</div>
);
},
});