Toggle with jquery + link on the whole line of the menu
This commit is contained in:
parent
70f305958b
commit
725fbbf85e
3 changed files with 8 additions and 18 deletions
|
|
@ -33,13 +33,7 @@ $(document).ready(function(){
|
|||
});
|
||||
|
||||
var toggleDrawerMenu = function(){
|
||||
var app = $("#app");
|
||||
|
||||
if (app.hasClass('draw')){
|
||||
app.removeClass('draw');
|
||||
} else {
|
||||
app.addClass('draw');
|
||||
}
|
||||
$("#app").toggleClass('draw');
|
||||
};
|
||||
|
||||
/* Show / hide aspects in the drawer */
|
||||
|
|
@ -49,13 +43,7 @@ $(document).ready(function(){
|
|||
});
|
||||
|
||||
var toggleAspectsMenu = function(){
|
||||
var aspect_list = $("#all_aspects + li");
|
||||
|
||||
if (aspect_list.hasClass('hide')){
|
||||
aspect_list.removeClass('hide');
|
||||
} else {
|
||||
aspect_list.addClass('hide');
|
||||
}
|
||||
$("#all_aspects + li").toggleClass('hide');
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -120,7 +120,6 @@ h3 {
|
|||
line-height: 25px;
|
||||
font-weight: bold;
|
||||
color: $light-grey;
|
||||
padding: 12px 25px;
|
||||
border-bottom: solid rgb(53, 53, 53) 2px;
|
||||
}
|
||||
|
||||
|
|
@ -128,7 +127,7 @@ h3 {
|
|||
padding: 0px;
|
||||
border-bottom: 0px;
|
||||
|
||||
> ul > li {
|
||||
> ul > li > a {
|
||||
font-size: 14px;
|
||||
padding: 8px 42px;
|
||||
}
|
||||
|
|
@ -146,8 +145,10 @@ h3 {
|
|||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
color: $light-grey;
|
||||
text-decoration: none;
|
||||
padding: 12px 25px;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
|
|
|||
|
|
@ -102,8 +102,9 @@
|
|||
%li
|
||||
= link_to aspect.name, aspects_stream_path(a_ids: [aspect.id])
|
||||
%li
|
||||
= link_to t('layouts.header.profile'), user_profile_path(current_user.username)
|
||||
= person_image_tag(current_user)
|
||||
= link_to user_profile_path(current_user.username) do
|
||||
= t('layouts.header.profile')
|
||||
= person_image_tag(current_user)
|
||||
%li
|
||||
= link_to t('_contacts'), contacts_path
|
||||
%li
|
||||
|
|
|
|||
Loading…
Reference in a new issue