mirror of https://github.com/vector-im/riot-web
Add not-working-yet text box, plus a bit more css
parent
56415b40e9
commit
a0c5fb4a8b
|
@ -0,0 +1,12 @@
|
|||
.mx_MessageComposer {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.mx_MessageComposer textarea {
|
||||
width: 100%;
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
.mx_MessageTile {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
|
@ -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>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue