diff --git a/basicswap/static/css/style.css b/basicswap/static/css/style.css index c008660..4650ad0 100644 --- a/basicswap/static/css/style.css +++ b/basicswap/static/css/style.css @@ -106,9 +106,25 @@ } } - - /* Add this to your existing CSS file */ .error { border: 1px solid red !important; } + +.active-container { + position: relative; + border-radius: 5px; +} + +.active-container::before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + border: 1px solid rgb(77, 132, 240); + border-radius: inherit; + pointer-events: none; +} + diff --git a/basicswap/templates/footer.html b/basicswap/templates/footer.html index bc29b04..4c9a491 100644 --- a/basicswap/templates/footer.html +++ b/basicswap/templates/footer.html @@ -23,7 +23,7 @@

© 2023~

{{ title }}

-

GUI 2.0.1

+

GUI 2.0.2

Made with

@@ -51,35 +51,44 @@
- + + toggleImages(); + }); + })(); + + + +{% include 'footer.html' %} - - - - -{% include 'footer.html' %} \ No newline at end of file diff --git a/basicswap/templates/wallets.html b/basicswap/templates/wallets.html index 05de34f..04c340e 100644 --- a/basicswap/templates/wallets.html +++ b/basicswap/templates/wallets.html @@ -33,10 +33,36 @@
-
-

Wallets

-

Check your coin balances and manage your wallets. {% if refresh %} (Page Refresh: {{ refresh }} seconds) {% endif %}

+
+ + +

+ Wallets +

+
+

+ Total Assets: +

+ +
+
+
+
USD
+
+
+ + + + +
+
-
-

Balance:

- {{ w.balance }} -
{% if w.unconfirmed %} -
-

Unconfirmed:

- {{ w.unconfirmed }} -
- {% endif %} + +
+

Balance:

+
{{ w.balance }} {{ w.ticker }}
+
+ {% if w.unconfirmed %} +
+

Unconfirmed:

+ +{{ w.unconfirmed }} {{ w.ticker }} +
+ {% endif %} +
+

USD value:

+
+
+ + {% if w.cid == '1' %}

Blind Balance:

- {{ w.blind_balance }} -
{% if w.blind_unconfirmed %} + {{ w.blind_balance }} {{ w.ticker }} +
+
+

USD value:

+
+
+ + + {% if w.blind_unconfirmed %}

Blind Unconfirmed:

- {{ w.blind_unconfirmed }} + +{{ w.blind_unconfirmed }} {{ w.ticker }}
{% endif %}

Anon Balance:

- {{ w.anon_balance }} -
{% if w.anon_pending %} + {{ w.anon_balance }} {{ w.ticker }} +
+
+

USD value:

+
+
+ + + {% if w.anon_pending %}

Anon Pending:

- {{ w.anon_pending }} + + +{{ w.anon_pending }} {{ w.ticker }}
{% endif %} {% endif %} @@ -146,6 +195,226 @@
+ {% include 'footer.html' %} + - + \ No newline at end of file