From a829bc901cf80d3240fc69c13224dbc81db3d7c6 Mon Sep 17 00:00:00 2001 From: Nad Chishtie Date: Tue, 18 Dec 2018 17:59:46 +0000 Subject: [PATCH] Updated CSS syntax to avoid 'transparent black'. --- res/css/structures/_RoomSubList.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/css/structures/_RoomSubList.scss b/res/css/structures/_RoomSubList.scss index 3a0dd0395b..a3319669cb 100644 --- a/res/css/structures/_RoomSubList.scss +++ b/res/css/structures/_RoomSubList.scss @@ -170,12 +170,12 @@ limitations under the License. &.mx_IndicatorScrollbar_topOverflow::before { top: 0; - background: linear-gradient($secondary-accent-color, transparent); + background: linear-gradient(to top, rgba(242,245,248,0), rgba(242,245,248,1)); } &.mx_IndicatorScrollbar_bottomOverflow::after { bottom: 0; - background: linear-gradient(transparent, $secondary-accent-color); + background: linear-gradient(to bottom, rgba(242,245,248,0), rgba(242,245,248,1)); } }