zulip/templates/zephyr/left-sidebar.html
Allen Rabinovich 23c729a904 Switched to Source Sans Pro as the base font for the app and made a number of other cosmetic changes.
What changed:
   * Vector icons swapped in for the left sidebar buttons and filters
   * Lighter font weight in the stream filters list
   * Round color swatches in the stream filters list, with an inner shadow
   * Tighter line height in the individual messages in the message pane
   * Fixed button widths in the left sidebar (so the buttons are equal in width)

(imported from commit 337dc4a3d8e29945cfc8cfb9524ac76a7b038ad8)
2013-05-09 10:35:46 -04:00

39 lines
2.4 KiB
HTML

<div class="row-fluid">
<div class="span3 sidebar-nav affix" id="left-sidebar">
<div class="upper_sidebar">
<div class="brand">
<img class="img-rounded gravatar-profile"
src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=60" />
<span id="my_information">
<span class="my_fullname">{{ user_profile.full_name }}</span><br />
<span class="my_email">{{ user_profile.email }}</span>
</span>
</div>
<div class="new_message_button">
<button type="button" class="btn btn-large compose_stream_button"
id="left_bar_compose_stream_button_big">
<i class="icon-vector-bullhorn"></i>&nbsp;&nbsp;New stream message
</button>
</div>
<div class="new_message_button">
<button type="button" class="btn btn-large compose_private_button"
id="left_bar_compose_private_button_big">
<i class="icon-vector-user"></i>&nbsp;&nbsp;New private message
</button>
</div>
</div>
<div class="bottom_sidebar">
<ul id="global_filters" class="filters">
{# Special-case this link so we don't actually go to page top. #}
<li data-name="home"
class="active-filter"><i class="icon-vector-home"></i> <a href="#">Home <span class="count">(<span class="value"></span>)</span></a></li>
<li data-name="all" class="hidden-filter"><i class="icon-vector-list"></i> <a href="#narrow/in/all">All messages <span class="count">(<span class="value"></span>)</span></a></li>
<li data-name="private-message"><i class="icon-vector-user"></i> <a href="#narrow/is/private-message">Private messages <span class="count">(<span class="value"></span>)</span></a></li>
<li data-name="starred"><i class="icon-vector-star"></i> <a href="#narrow/is/starred">Starred messages</a></li>
</ul>
<ul id="stream_filters" class="filters scrolling_list"></ul>
</div>
</div>
</div>