mirror of
https://github.com/zulip/zulip.git
synced 2025-10-31 20:13:46 +00:00
design: Improve design of Subscribe/Unsubscribe buttons in message view.
Tweaked by tabbott to use an existing button style. Fixes #5196.
This commit is contained in:
@@ -343,15 +343,15 @@ exports.MessageList.prototype = {
|
||||
},
|
||||
|
||||
subscribed_bookend_content: function (stream_name) {
|
||||
return "--- Subscribed to stream " + stream_name + " ---";
|
||||
return "You subscribed to stream " + stream_name;
|
||||
},
|
||||
|
||||
unsubscribed_bookend_content: function (stream_name) {
|
||||
return "--- Unsubscribed from stream " + stream_name + " ---";
|
||||
return "You unsubscribed from stream " + stream_name;
|
||||
},
|
||||
|
||||
not_subscribed_bookend_content: function (stream_name) {
|
||||
return "--- Not subscribed to stream " + stream_name + " ---";
|
||||
return "You are not subscribed to stream " + stream_name;
|
||||
},
|
||||
|
||||
// Maintains a trailing bookend element explaining any changes in
|
||||
|
||||
Reference in New Issue
Block a user