Skip to content

Commit

Permalink
Reduced size of folder names in documents sidebar, closes #12.
Browse files Browse the repository at this point in the history
  • Loading branch information
remomueller committed Sep 4, 2019
1 parent 746d142 commit ec00c70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 12.0.0

### Enhancements
- **Document Changes**
- Reduced size of folder names in documents sidebar
- **User Changes**
- Admins can now associate a Staff ID with a user that will display in the
directory and in the menu bar
Expand Down
3 changes: 2 additions & 1 deletion app/views/folders/_sidebar.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
- if folders.present?
%li.sidebar-menu-header= category.name
- category.folders.each do |folder|
%li= link_to folder.name, category_folder_path(category, folder), class: current_page?(category_folder_path(category, folder)) ? "active" : nil
%li
%small= link_to folder.name, category_folder_path(category, folder), class: current_page?(category_folder_path(category, folder)) ? "active" : nil

- if current_user.editor?
.mx-3.my-0.ml-md-3.mb-md-3.mr-md-0
Expand Down

0 comments on commit ec00c70

Please sign in to comment.