Errores solucionados
This commit is contained in:
parent
b043918921
commit
ff13874901
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.304-deb8) stable; urgency=low
|
||||
hedera-web (1.305-deb8) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -20,11 +20,6 @@ Vn.Connections = new Class
|
|||
this.$('sessions').refresh ();
|
||||
}
|
||||
|
||||
,onVisitsClick: function ()
|
||||
{
|
||||
this.hash.set ({'form': 'admin/visits'});
|
||||
}
|
||||
|
||||
,onAccessLogClick: function (button, form)
|
||||
{
|
||||
this.hash.set ({
|
||||
|
|
|
@ -7,19 +7,18 @@
|
|||
max-width: 25em;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.connections .form
|
||||
.action-bar .connections-sum
|
||||
{
|
||||
padding: 1.5em;
|
||||
font-size: 1.4em;
|
||||
text-align: right;
|
||||
padding: .4em;
|
||||
margin-top: .9em;
|
||||
margin-right: .5em;
|
||||
background-color: #1e88e5;
|
||||
border-radius: 0.1em;
|
||||
box-shadow: 0 0 0.4em #666;
|
||||
}
|
||||
|
||||
/* List */
|
||||
|
||||
.connections .list
|
||||
{
|
||||
margin-top: 1em;
|
||||
}
|
||||
.connections .item
|
||||
{
|
||||
display: block;
|
||||
|
@ -37,5 +36,8 @@
|
|||
.connections .item > p.important
|
||||
{
|
||||
font-size: 1.2em;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
|
|
@ -3,30 +3,23 @@
|
|||
<h1><t>Connections</t></h1>
|
||||
</div>
|
||||
<div id="actions">
|
||||
<div class="connections-sum">
|
||||
<htk-text>
|
||||
<db-calc-sum
|
||||
property="param"
|
||||
model="sessions"
|
||||
func="sessionsFunc"/>
|
||||
</htk-text>
|
||||
<t>connections</t>
|
||||
</div>
|
||||
<htk-button
|
||||
image="image/dark/refresh.svg"
|
||||
tip="_Refresh"
|
||||
on-click="onRefreshClick"
|
||||
showText="true"/>
|
||||
<htk-button
|
||||
image="image/dark/graph.svg"
|
||||
tip="_Visits"
|
||||
on-click="onVisitsClick"
|
||||
showText="true"/>
|
||||
</div>
|
||||
<div id="form" class="connections">
|
||||
<div class="box">
|
||||
<div class="form">
|
||||
<htk-text>
|
||||
<db-calc-sum
|
||||
property="param"
|
||||
model="sessions"
|
||||
func="sessionsFunc"/>
|
||||
</htk-text>
|
||||
<t>connections</t>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list box">
|
||||
<htk-repeater form-id="iter">
|
||||
<db-model property="model" id="sessions">
|
||||
<custom>
|
||||
|
|
|
@ -66,4 +66,8 @@
|
|||
{
|
||||
font-size: 1.2em;
|
||||
}
|
||||
.orders .item > p.total
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
|
|
@ -53,17 +53,17 @@
|
|||
</db-model>
|
||||
<custom>
|
||||
<a id="link" class="item" title="_SeeOrder">
|
||||
<p class="important total">
|
||||
<htk-text form="iter" column="total" format="%.2d€"/>
|
||||
</p>
|
||||
<p class="important">
|
||||
<htk-text form="iter" column="date" format="%A, %e of %B"/>
|
||||
</p>
|
||||
<p>
|
||||
<t>Delivery</t> <htk-text form="iter" column="type"/>
|
||||
</p>
|
||||
<p>
|
||||
<htk-text form="iter" column="consignee"/>
|
||||
</p>
|
||||
<p>
|
||||
<htk-text form="iter" column="total" format="%.2d€"/>
|
||||
<htk-text form="iter" column="type"/>
|
||||
</p>
|
||||
<div class="clear"/>
|
||||
</a>
|
||||
|
|
|
@ -108,7 +108,6 @@
|
|||
.vn-gui .action-bar > div > *
|
||||
{
|
||||
float: left;
|
||||
padding: 0;
|
||||
}
|
||||
.vn-gui .action-bar button
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue