Project

General

Profile

Defect #32156 » fix_left_padding_of_board_table.diff

Replaces padding-left with text-indent - Bernhard Rohloff, 2021-01-26 10:45

View differences:

app/views/boards/index.html.erb (Arbeitskopie)
16 16
  <tbody>
17 17
<% Board.board_tree(@boards) do |board, level| %>
18 18
  <tr>
19
    <td class="name" style="padding-left: <%= level * 18 %>px;">
20
      <%= link_to board.name, project_board_path(board.project, board), :class => "board" %><br />
21
      <%=h board.description %>
19
    <td class="name" style="text-indent: <%= level * 18 %>px;">
20
      <%= link_to board.name, project_board_path(board.project, board), :class => "board" %>
21
      <p class="description"><%=h board.description %></p>
22 22
    </td>
23 23
    <td class="topic-count"><%= board.topics_count %></td>
24 24
    <td class="message-count"><%= board.messages_count %></td>
(5-5/8)