mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix RoomDropTarget and emptySubListTip to have containers
so that the correct background colour can be used to surround both.
This commit is contained in:
parent
f6255906d8
commit
9e1e7e0dbe
@ -23,9 +23,11 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomDropTarget">
|
<div className="mx_RoomDropTarget_container">
|
||||||
<div className="mx_RoomDropTarget_label">
|
<div className="mx_RoomDropTarget">
|
||||||
{ this.props.label }
|
<div className="mx_RoomDropTarget_label">
|
||||||
|
{ this.props.label }
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -39,12 +39,16 @@ limitations under the License.
|
|||||||
z-index: 6;
|
z-index: 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomList_emptySubListTip_container {
|
||||||
|
background-color: $secondary-accent-color;
|
||||||
|
padding-left: 18px;
|
||||||
|
padding-right: 18px;
|
||||||
|
padding-top: 8px;
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomList_emptySubListTip {
|
.mx_RoomList_emptySubListTip {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-left: 18px;
|
|
||||||
margin-right: 18px;
|
|
||||||
margin-top: 8px;
|
|
||||||
margin-bottom: 7px;
|
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border: 1px dashed $accent-color;
|
border: 1px dashed $accent-color;
|
||||||
color: $primary-fg-color;
|
color: $primary-fg-color;
|
||||||
|
@ -14,12 +14,21 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.mx_RoomDropTarget_container {
|
||||||
|
background-color: $secondary-accent-color;
|
||||||
|
padding-left: 18px;
|
||||||
|
padding-right: 18px;
|
||||||
|
padding-top: 8px;
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.collapsed .mx_RoomDropTarget_container {
|
||||||
|
padding-right: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomDropTarget {
|
.mx_RoomDropTarget {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-left: 18px;
|
|
||||||
margin-right: 18px;
|
|
||||||
margin-top: 8px;
|
|
||||||
margin-bottom: 7px;
|
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
border: 1px dashed $accent-color;
|
border: 1px dashed $accent-color;
|
||||||
@ -28,10 +37,6 @@ limitations under the License.
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.collapsed .mx_RoomDropTarget {
|
|
||||||
margin-right: 10px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_RoomDropTarget_label {
|
.mx_RoomDropTarget_label {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
Loading…
Reference in New Issue
Block a user