commit b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04
parent d674e28bcd25e8e24697d2b871c1d8218686ec65
Author: Sebastian <sebasjm@gmail.com>
Date: Tue, 15 Jun 2021 23:43:18 -0300
remove animation
Diffstat:
3 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- fulfillment url should check absolute url or relative to the merchant domain
- create taler ui
- contract terms in the wallet
- - when backoffice get a response of the merchant that have info about the reponse of the exchange, the error is not readed correctly... see wire transfer
+ - when backoffice get a response of the merchant that have info about the response of the exchange, the error is not readed correctly... see wire transfer
- when creating the first default instance, the page keeps reloading preventing for filling the form
-
diff --git a/packages/frontend/src/paths/instance/reserves/list/Table.tsx b/packages/frontend/src/paths/instance/reserves/list/Table.tsx
@@ -120,12 +120,12 @@ function Table({ instances, onNewTip, onSelect, onDelete }: TableProps): VNode {
<td onClick={(): void => onSelect(i)} style={{ cursor: 'pointer' }} >{i.committed_amount}</td>
<td class="is-actions-cell right-sticky">
<div class="buttons is-right">
- <button class="button is-small is-danger"
+ <button class="button is-small is-danger has-tooltip-left"
data-tooltip={i18n`delete selected reserve from the database`}
type="button" onClick={(): void => onDelete(i)}>
Delete
</button>
- <button class="button is-small is-info"
+ <button class="button is-small is-info has-tooltip-left"
data-tooltip={i18n`authorize new tip from selected reserve`}
type="button" onClick={(): void => onNewTip(i)}>
New Tip
@@ -169,7 +169,7 @@ function TableWithoutFund({ instances, onSelect, onDelete }: TableProps): VNode
<td onClick={(): void => onSelect(i)} style={{ cursor: 'pointer' }} >{i.merchant_initial_amount}</td>
<td class="is-actions-cell right-sticky">
<div class="buttons is-right">
- <button class="button is-small is-danger jb-modal" type="button"
+ <button class="button is-small is-danger jb-modal has-tooltip-left" type="button"
data-tooltip={i18n`delete selected reserve from the database`}
onClick={(): void => onDelete(i)}>
Delete
diff --git a/packages/frontend/src/scss/_aside.scss b/packages/frontend/src/scss/_aside.scss
@@ -27,9 +27,6 @@
padding-left: $aside-width;
}
}
- nav.navbar, body {
- @include transition(padding-left);
- }
aside.is-placed-left {
display: block;
}