Add new record button shortcut in mainview

This commit is contained in:
simov
2013-12-08 10:13:20 +02:00
parent c0be33eedc
commit cd9d3e616a
2 changed files with 10 additions and 2 deletions
+3
View File
@@ -20,6 +20,9 @@
/*login header*/
#login .label-default { color: #f8f8f2; }
/*mainview*/
.ex-table tbody td .glyphicon-plus { font-size: 8px; position: relative; top: -1px; }
/*editview*/
.btn-today { line-height: 240%; }
+7 -2
View File
@@ -10,7 +10,10 @@
<tbody>
{{#tables}}
<tr>
<td><a href="{{slug}}">{{name}}</a></td>
<td>
<a href="{{root}}/{{slug}}">{{name}}</a>
<a href="{{root}}/{{slug}}/add" class="glyphicon glyphicon-plus" title="{{string.add}} {{name}}"></a>
</td>
</tr>
{{/tables}}
</tbody>
@@ -26,7 +29,9 @@
<tbody>
{{#views}}
<tr>
<td><a href="{{slug}}">{{name}}</a></td>
<td>
<a href="{{root}}/{{slug}}">{{name}}</a>
</td>
</tr>
{{/views}}
</tbody>