summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-15 23:43:18 -0300
committerSebastian <sebasjm@gmail.com>2021-06-15 23:43:50 -0300
commitb93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04 (patch)
treee32b5c92fdfd2aec89c4ecf3eee10e4ea8ac6272
parentd674e28bcd25e8e24697d2b871c1d8218686ec65 (diff)
downloadmerchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.tar.gz
merchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.tar.bz2
merchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.zip
remove animation
-rw-r--r--CHANGELOG.md2
-rw-r--r--packages/frontend/src/paths/instance/reserves/list/Table.tsx6
-rw-r--r--packages/frontend/src/scss/_aside.scss3
3 files changed, 4 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b78731..ad3529a 100644
--- 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
index 5977b8b..a76edf6 100644
--- 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
index 21fe189..22258ac 100644
--- 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;
}