Show mobile nav bar badges as pills
This commit is contained in:
parent
da70238667
commit
ec2332818c
|
@ -39,6 +39,7 @@
|
||||||
|
|
||||||
@import
|
@import
|
||||||
"overrides/alerts",
|
"overrides/alerts",
|
||||||
|
"overrides/badges",
|
||||||
"overrides/bootstrap-datetimepicker",
|
"overrides/bootstrap-datetimepicker",
|
||||||
"overrides/buttons",
|
"overrides/buttons",
|
||||||
"overrides/colors",
|
"overrides/colors",
|
||||||
|
|
|
@ -13,6 +13,10 @@
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
@each $color in $color-names {
|
||||||
|
.badge-#{$color} {
|
||||||
|
color: var(--#{$color});
|
||||||
|
background-color: RGB(var(--#{$color}-text));
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,7 +7,9 @@
|
||||||
= nav_entry t('views.navigation.inbox'), '/inbox', badge: inbox_count, icon: 'inbox', icon_only: true
|
= nav_entry t('views.navigation.inbox'), '/inbox', badge: inbox_count, icon: 'inbox', icon_only: true
|
||||||
- if APP_CONFIG.dig(:features, :discover, :enabled) || current_user.mod?
|
- if APP_CONFIG.dig(:features, :discover, :enabled) || current_user.mod?
|
||||||
= nav_entry t('views.navigation.discover'), discover_path, icon: 'compass', icon_only: true
|
= nav_entry t('views.navigation.discover'), discover_path, icon: 'compass', icon_only: true
|
||||||
= nav_entry t('views.navigation.notifications'), '/notifications', badge: notification_count, icon: notifications_icon, icon_only: true
|
= nav_entry t('views.navigation.notifications'), '/notifications',
|
||||||
|
badge: notification_count, badge_color: 'light', badge_pill: true,
|
||||||
|
icon: notifications_icon, icon_only: true
|
||||||
%li.nav-item.profile--image-dropdown
|
%li.nav-item.profile--image-dropdown
|
||||||
%a.nav-link{ href: '#', data: { toggle: 'dropdown', target: '#rs-mobile-nav-profile' }, aria: { controls: 'rs-mobile-nav-profile', expanded: 'false' } }
|
%a.nav-link{ href: '#', data: { toggle: 'dropdown', target: '#rs-mobile-nav-profile' }, aria: { controls: 'rs-mobile-nav-profile', expanded: 'false' } }
|
||||||
%img.avatar-md.d-inline{ src: current_user.profile_picture.url(:small) }
|
%img.avatar-md.d-inline{ src: current_user.profile_picture.url(:small) }
|
||||||
|
|
Loading…
Reference in New Issue