a bit of restyling. Replace some images with icons. Simplify note form
This commit is contained in:
parent
315fd7d746
commit
130f60d55b
14 changed files with 50 additions and 80 deletions
|
@ -7,7 +7,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(controller: :dashboard, html_options: {class: 'home'}) do
|
||||
= link_to "Stats", admin_root_path
|
||||
= link_to admin_root_path, title: "Stats" do
|
||||
%i.icon-home
|
||||
= nav_link(controller: :projects) do
|
||||
= link_to "Projects", admin_projects_path
|
||||
= nav_link(controller: :teams) do
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(path: 'dashboard#show', html_options: {class: 'home'}) do
|
||||
= link_to "Home", root_path, title: "Home"
|
||||
= link_to root_path, title: "Home" do
|
||||
%i.icon-home
|
||||
= nav_link(path: 'dashboard#projects') do
|
||||
= link_to projects_dashboard_path do
|
||||
Projects
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(path: 'groups#show', html_options: {class: 'home'}) do
|
||||
= link_to "Home", group_path(@group), title: "Home"
|
||||
= link_to group_path(@group), title: "Home" do
|
||||
%i.icon-home
|
||||
= nav_link(path: 'groups#issues') do
|
||||
= link_to issues_group_path(@group) do
|
||||
Issues
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(path: 'profiles#show', html_options: {class: 'home'}) do
|
||||
= link_to "Profile", profile_path
|
||||
= link_to profile_path, title: "Profile" do
|
||||
%i.icon-home
|
||||
= nav_link(path: 'profiles#account') do
|
||||
= link_to "Account", account_profile_path
|
||||
= nav_link(controller: :keys) do
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(html_options: {class: "home #{project_tab_class}"}) do
|
||||
= link_to @project.path, project_path(@project), title: "Project"
|
||||
= link_to project_path(@project), title: "Project" do
|
||||
%i.icon-home
|
||||
|
||||
- if @project.repo_exists?
|
||||
- if can? current_user, :download_code, @project
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
.container
|
||||
%ul.main_menu
|
||||
= nav_link(path: 'teams#show', html_options: {class: 'home'}) do
|
||||
= link_to "Home", team_path(@team), title: "Home"
|
||||
= link_to team_path(@team), title: "Home" do
|
||||
%i.icon-home
|
||||
|
||||
= nav_link(path: 'teams#issues') do
|
||||
= link_to issues_team_path(@team) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue