62 lines
1.3 KiB
CSS
62 lines
1.3 KiB
CSS
/*
|
|
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.
|
|
*/
|
|
|
|
.mx_RoomDropTarget {
|
|
font-size: 14px;
|
|
margin-left: 10px;
|
|
margin-right: 15px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
border: 1px dashed #76cfa6;
|
|
color: #454545;
|
|
background-color: rgba(255,255,255,0.5);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.collapsed .mx_RoomDropTarget {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.mx_RoomDropTarget_placeholder {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.mx_RoomDropTarget_avatar {
|
|
background-color: #fff;
|
|
border-radius: 24px;
|
|
width: 24px;
|
|
height: 24px;
|
|
float: left;
|
|
margin-left: 7px;
|
|
margin-right: 7px;
|
|
}
|
|
|
|
.mx_RoomDropTarget_label {
|
|
position: relative;
|
|
margin-top: 3px;
|
|
line-height: 21px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.collapsed .mx_RoomDropTarget_avatar {
|
|
float: none;
|
|
}
|
|
|
|
.collapsed .mx_RoomDropTarget_label {
|
|
display: none;
|
|
}
|