From ac4b221690fbee8d5ffdf841d9eb3fadc5f028f7 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Mon, 18 Jan 2016 17:22:02 +0000 Subject: [PATCH] More CSS fun for border bottom --- .../views/rooms/EntityTile.css | 1 + .../views/rooms/SearchableEntityList.css | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/skins/vector/css/matrix-react-sdk/views/rooms/SearchableEntityList.css diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/EntityTile.css b/src/skins/vector/css/matrix-react-sdk/views/rooms/EntityTile.css index 3e93c2ec7a..99965bff91 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/EntityTile.css +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/EntityTile.css @@ -24,6 +24,7 @@ limitations under the License. .mx_EntityTile_invite { display: table-cell; vertical-align: middle; + margin-left: 10px; } .mx_EntityTile:hover .mx_MessageTimestamp { diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/SearchableEntityList.css b/src/skins/vector/css/matrix-react-sdk/views/rooms/SearchableEntityList.css new file mode 100644 index 0000000000..0283f56e13 --- /dev/null +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/SearchableEntityList.css @@ -0,0 +1,23 @@ +/* +Copyright 2016 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_SearchableEntityList_list { + border-bottom: 1px solid #e1dddd; +} + +.mx_SearchableEntityList_list:empty { + border-bottom: 0px; +}