Favorites tab
parent
d576016e9c
commit
f110820203
|
@ -6,7 +6,8 @@ div.profile.centered
|
||||||
include ../includes/modules/profile/profile-content-tabs
|
include ../includes/modules/profile/profile-content-tabs
|
||||||
div.content-wrapper
|
div.content-wrapper
|
||||||
div.content
|
div.content
|
||||||
//include ../includes/modules/profile/profile-timeline
|
include ../includes/modules/profile/profile-timeline
|
||||||
//include ../includes/modules/profile/profile-projects
|
//include ../includes/modules/profile/profile-projects
|
||||||
include ../includes/modules/profile/profile-contacts
|
//include ../includes/modules/profile/profile-contacts
|
||||||
|
//include ../includes/modules/profile/profile-favorites
|
||||||
include ../includes/modules/profile/profile-sidebar
|
include ../includes/modules/profile/profile-sidebar
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
section.profile-contacts
|
section.profile-contacts
|
||||||
nav.profile-contacts-filters
|
nav.profile-contact-filters
|
||||||
a.active(href="", title="No Filter") all
|
a.active(href="", title="No Filter") all
|
||||||
a(href="", title="Only show your team") team
|
a(href="", title="Only show your team") team
|
||||||
a(href="", title="Only show people you follow") following
|
a(href="", title="Only show people you follow") following
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
section.profile-favorites
|
||||||
|
nav.profile-favorites-filters
|
||||||
|
a.active(href="", title="No Filter") all
|
||||||
|
a(href="", title="Only show your team") projects
|
||||||
|
a(href="", title="Only show people you follow") US
|
||||||
|
a(href="", title="Only show people follow you") tasks
|
|
@ -0,0 +1,21 @@
|
||||||
|
.profile-favorites {
|
||||||
|
border-top: 1px solid $whitish;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
.profile-favorites-filters {
|
||||||
|
align-self: flex-start;
|
||||||
|
display: flex;
|
||||||
|
a {
|
||||||
|
border-bottom: 2px solid $white;
|
||||||
|
color: $gray-light;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 1rem 1.5rem;
|
||||||
|
transition: all .2s linear;
|
||||||
|
&:hover,
|
||||||
|
&.active {
|
||||||
|
border-bottom: 2px solid $gray-light;
|
||||||
|
color: $green-taiga;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue