Add aspects list and mentions link
This commit is contained in:
parent
0a31d61ccc
commit
e204a9a121
2 changed files with 16 additions and 11 deletions
|
|
@ -125,12 +125,14 @@ h3 {
|
|||
border-bottom: solid rgb(53, 53, 53) 2px;
|
||||
}
|
||||
|
||||
// Aspects
|
||||
li > ul > li {
|
||||
#aspects_list {
|
||||
padding: 0px;
|
||||
border-bottom: 0px;
|
||||
|
||||
> ul > li {
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: $text-dark-grey;
|
||||
border-bottom: none;
|
||||
padding: 8px 42px;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
|
|||
|
|
@ -95,12 +95,15 @@
|
|||
%ul
|
||||
%li
|
||||
= link_to t("streams.activity.title"), activity_stream_path
|
||||
%li
|
||||
= link_to t("streams.mentions.title"), mentioned_stream_path
|
||||
%li
|
||||
= t('streams.aspects.title')
|
||||
%li#aspects_list
|
||||
%ul
|
||||
- for aspect in current_user.aspects
|
||||
%li
|
||||
%ul#aspects_list
|
||||
%li
|
||||
= "One Aspect"
|
||||
= aspect.name
|
||||
%li
|
||||
= link_to(t('layouts.header.profile'), user_profile_path(current_user.username))
|
||||
%li
|
||||
|
|
|
|||
Loading…
Reference in a new issue