From 2c56e692a29ab32f433696d37fa823e60b637954 Mon Sep 17 00:00:00 2001 From: Allen Rabinovich Date: Thu, 6 Feb 2014 15:36:45 -0700 Subject: [PATCH] Fix floating recepient bar hiding when switching to settings pages (imported from commit 9a643075197a53e84df196c3dcc1ce04766d3d4e) --- static/styles/zulip.css | 11 ++++++++++- templates/zerver/index.html | 16 ++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 01d3ee4f9e..55c802624f 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -91,6 +91,7 @@ a { width: 100%; position: fixed; z-index: 98; + left: 0px; } .column-left, @@ -2108,11 +2109,19 @@ div.floating_recipient { border-collapse: separate; width: 100%; position: relative; - top: 50px; /* Needs body background because the child row becomes transparent when faded */ background: #f4f5f4; } +.floating_recipient .message_header_private_message .message-header-contents { + margin-left: 10px; + margin-right: 8px; +} + +#floating_recipient_bar { + top: 50px; +} + #bottom_whitespace { display: block; height: 300px; diff --git a/templates/zerver/index.html b/templates/zerver/index.html index a6f9e98203..bc36307059 100644 --- a/templates/zerver/index.html +++ b/templates/zerver/index.html @@ -91,6 +91,22 @@ var page_params = {{ page_params }};
+
+
+
+
+ + +
+
+
+
{% include "zerver/home.html" %}