mirror of https://gitee.com/bigwinds/arangodb
left-align table headers in query result view
This commit is contained in:
parent
c51592ca5d
commit
faf5e5a090
|
@ -5,7 +5,7 @@
|
|||
<tr>
|
||||
<% var hcounter = 0; %>
|
||||
<% _.each(content.titles, function(y) {%>
|
||||
<th class="arangob-table-th table-cell<%=hcounter%>"><%=y%></th>
|
||||
<th class="arango-table-th table-cell<%=hcounter%>"><%=y%></th>
|
||||
<% hcounter++; });%>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -13,7 +13,7 @@
|
|||
<% _.each(content.rows, function(k) { var counter=0;%>
|
||||
<tr>
|
||||
<% _.each(k, function(x) { %>
|
||||
<td class="arangob-table-td table-cell<%=counter%>"><%=(content.unescaped && content.unescaped[counter] ? x : _.escape(x))%></td>
|
||||
<td class="arango-table-td table-cell<%=counter%>"><%=(content.unescaped && content.unescaped[counter] ? x : _.escape(x))%></td>
|
||||
<% counter++;});%>
|
||||
</tr>
|
||||
<%});%>
|
||||
|
|
|
@ -6,7 +6,9 @@
|
|||
|
||||
th {
|
||||
border-bottom: 1px solid $c-c2grey;
|
||||
font-weight: 400;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
padding-left: 18px;
|
||||
height: 43px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue