diff --git a/app/javascript/src/styles/base/030_links.scss b/app/javascript/src/styles/base/030_links.scss index 2ddb74c52..ed4cdf9ca 100644 --- a/app/javascript/src/styles/base/030_links.scss +++ b/app/javascript/src/styles/base/030_links.scss @@ -24,15 +24,6 @@ a.active { font-weight: bold; } -a.login { - font-weight: bold; - color: #e00; -} - -a.forum-updated { - font-style: italic; -} - a.wiki-link { margin-right: 0.3em; } diff --git a/app/javascript/src/styles/common/page_header.scss b/app/javascript/src/styles/common/page_header.scss index 0eec3c303..3d3b914c7 100644 --- a/app/javascript/src/styles/common/page_header.scss +++ b/app/javascript/src/styles/common/page_header.scss @@ -42,5 +42,14 @@ header#top { background: $menu_color; font-weight: bold; } + + li#nav-sign-in a { + font-weight: bold; + color: #e00; + } + + li.forum-updated a { + font-style: italic; + } } } diff --git a/app/views/layouts/_main_links.html.erb b/app/views/layouts/_main_links.html.erb index aa42f3b44..10ed61be5 100644 --- a/app/views/layouts/_main_links.html.erb +++ b/app/views/layouts/_main_links.html.erb @@ -1,6 +1,6 @@ <% if CurrentUser.is_anonymous? %> - <%= nav_link_to("Sign in", new_session_path, :class => "login") %> + <%= nav_link_to("Sign in", new_session_path) %> <% else %> <%= nav_link_to("My Account #{CurrentUser.dmail_count}", user_path(CurrentUser.user)) %> <% end %>