zulip/static/styles
Steve Howell a78a1ec36c Use <a> tags for links in the recipient/summary bars.
The main user-facing feature here is that users can open narrows
in new tabs or windows. Internally, it makes the HTML more semantic.

One consequence of making these elements into actual anchor tags
is that clicking on them no longer triggers this logic to
close the compose box when you click outside of it:

        // Unfocus our compose area if we click out of it. Don't let exits out
        // of modals or selecting text (for copy+paste) trigger cancelling.
        if (compose.composing() && !$(e.target).is("a") &&
            ($(e.target).closest(".modal").length === 0) &&
            window.getSelection().toString() === "") {
            compose.cancel();
        }

Instead of patching the above code, I elected to just call
compose.cancel() explicitly in the click handlers for the links
themselves.

We are gonna try to clean up the compose-box behavior globally soon.

(imported from commit c9a01916f1714fe3dd495d25c78cd5e5532105ef)
2013-10-09 17:09:10 -04:00
..
activity.css activity: Only make the summary table not-full-width. 2013-09-26 15:29:29 -04:00
fonts.css Move zephyr/static to just static. 2013-07-29 12:11:26 -04:00
portico.css Fix for hello/ background color 2013-10-08 08:57:28 -04:00
pygments.css Move zephyr/static to just static. 2013-07-29 12:11:26 -04:00
thirdparty-fonts.css font-awesome: icon- becomes icon-vector-. 2013-08-12 16:55:29 -04:00
zulip.css Use <a> tags for links in the recipient/summary bars. 2013-10-09 17:09:10 -04:00