2015-06-23 17:41:25 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-07-13 02:51:24 +02:00
|
|
|
.mx_MessageComposer_wrapper {
|
|
|
|
max-width: 720px;
|
|
|
|
height: 50px;
|
|
|
|
vertical-align: middle;
|
2015-07-07 03:10:10 +02:00
|
|
|
margin: auto;
|
2015-07-13 02:51:24 +02:00
|
|
|
border-top: 1px solid #d8d8d8;
|
|
|
|
border-left: 1px solid #d8d8d8;
|
|
|
|
border-right: 1px solid #d8d8d8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposer_row {
|
|
|
|
display: table-row;
|
|
|
|
width: 100%;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposer .mx_MessageComposer_avatar {
|
|
|
|
display: table-cell;
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2015-06-15 19:35:28 +02:00
|
|
|
}
|
2015-07-13 02:51:24 +02:00
|
|
|
|
|
|
|
.mx_MessageComposer_input {
|
|
|
|
display: table-cell;
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 1em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposer_input textarea {
|
|
|
|
font-size: 15px;
|
|
|
|
width: 100%;
|
|
|
|
height: 1em;
|
|
|
|
border: 0px;
|
|
|
|
resize: none;
|
|
|
|
outline: none;
|
|
|
|
padding-top: 0.7em;
|
|
|
|
padding-bottom: 0.7em;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|