Various improvements (#325)

* Fix missing translation in roadmap
* Fix resizing of textareas
* Increase line height for small muted texts
* Improve collapsed board list style
* Fix switch on top of header (z-index)
* Fix margin inconsistencies in site settings
* Add user count to site settings
This commit is contained in:
Riccardo Graziosi
2024-04-10 23:28:58 +02:00
committed by GitHub
parent f41f9dd082
commit a11157295d
16 changed files with 57 additions and 11 deletions

View File

@@ -3,10 +3,10 @@
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Boards
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<ul class="dropdown-menu boards-dropdown" aria-labelledby="navbarDropdown">
<% boards.each do |board| %>
<li>
<%= link_to board.name, board_path(board), class: 'dropdown-item py-2' %>
<%= link_to board.name, board_path(board), class: 'dropdown-item' %>
</li>
<% end %>
</ul>