Make entirity of "Lists" dropdown clickable
This commit is contained in:
parent
e0e06aee48
commit
92544370b6
|
@ -27,3 +27,9 @@
|
|||
.dropdown-toggle {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up('md') {
|
||||
.dropdown-menu--lists {
|
||||
max-width: 275px;
|
||||
}
|
||||
}
|
|
@ -3,13 +3,12 @@
|
|||
= list_group_item t('views.general.timeline'), root_path
|
||||
- if APP_CONFIG.dig(:features, :public, :enabled)
|
||||
= list_group_item t('views.general.public'), public_timeline_path
|
||||
.list-group-item.list-group-item-action.dropdown{ class: list ? 'active' : '' }
|
||||
%a.dropdown-toggle{ type: :button, data: { toggle: :dropdown }, aria: { haspopup: true, expanded: false } }
|
||||
%a.list-group-item.list-group-item-action.dropdown.dropdown-toggle{ class: list ? 'active' : '', type: :button, data: { toggle: :dropdown }, aria: { haspopup: true, expanded: false } }
|
||||
- if list
|
||||
= list.display_name
|
||||
- else
|
||||
Lists
|
||||
.dropdown-menu
|
||||
.dropdown-menu.dropdown-menu--lists
|
||||
- if current_user.lists.empty?
|
||||
.p-3
|
||||
%p Looks like you don't have any lists yet.
|
||||
|
|
Loading…
Reference in New Issue