mirror of https://github.com/zulip/zulip.git
Add space for an onboarding checklist in the right sidebar.
(imported from commit 69f1c14f4050de8e527a7044f5f9cf90bc7b4a59)
This commit is contained in:
parent
0304014274
commit
4dd0a3d1be
|
@ -1,5 +1,10 @@
|
|||
<div class="row right_sidebar">
|
||||
<div class="span2 sidebar-nav affix" id="right-sidebar">
|
||||
<div id="onboarding">
|
||||
<p id="onboarding-header">Get started with Humbug!</p>
|
||||
<div id="onboarding-checklist">
|
||||
</div>
|
||||
</div>
|
||||
<ul id="user_presences" class="scrolling_list"></ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1263,3 +1263,18 @@ li.expanded_subject {
|
|||
#create_bot_row input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#onboarding-header {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
#onboarding-checklist {
|
||||
font-size: 14px;
|
||||
border: 1px solid #ddd;
|
||||
background-color: #F7F7F7;
|
||||
padding: 10px;
|
||||
}
|
||||
#onboarding {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue