Add user_color_scheme_class helper

This commit is contained in:
Riyad Preukschas 2012-11-27 22:49:22 +01:00
parent c4f3c54ecb
commit 184a9ecaf6
3 changed files with 8 additions and 6 deletions

View file

@ -126,6 +126,10 @@ module ApplicationHelper
Gitlab::Theme.css_class_by_id(current_user.try(:theme_id))
end
def user_color_scheme_class
current_user.dark_scheme ? :black : :white
end
def show_last_push_widget?(event)
event &&
event.last_push_to_non_root? &&