From 015cd65e8ff5edc0902720ec4f7cf7ab1d368728 Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Wed, 15 Nov 2017 15:56:22 -0800 Subject: [PATCH] message-feed: Change borders from grey to translucent. This changes the borders from grey to translucent and bins them to the nearest tenth of opacity. --- static/styles/zulip.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 22d5f4ba41..af06bbb1ad 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -178,7 +178,7 @@ p.n-margin { position: fixed; z-index: 102; /* Needs to be higher than .alert-bar-container */ width: 100%; - border-bottom: 1px solid hsl(0, 0%, 85%); + border-bottom: 1px solid hsla(0, 0%, 0%, 0.2); height: 40px; } @@ -1319,8 +1319,8 @@ div.message_table { .message_row { position: relative; - border-left: 1px solid hsl(0, 0%, 88%); - border-right: 1px solid hsl(0, 0%, 88%); + border-left: 1px solid hsla(0, 0%, 0%, 0.10); + border-right: 1px solid hsla(0, 0%, 0%, 0.10); } .message_row.selected_message { @@ -1843,7 +1843,7 @@ nav a .no-style { width: auto; float: none; overflow: hidden; - border-right: 1px solid hsl(0, 0%, 85%); + border-right: 1px solid hsla(0, 0%, 0%, 0.2); height: 40px; }