mirror of
https://github.com/basicswap/basicswap.git
synced 2025-02-02 03:06:30 +00:00
ui: Start of notifications (styling)
This commit is contained in:
parent
c87f66a041
commit
1dc626e305
4 changed files with 9 additions and 42 deletions
BIN
basicswap/static/css/.DS_Store
vendored
BIN
basicswap/static/css/.DS_Store
vendored
Binary file not shown.
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
.padded_row td
|
|
||||||
{
|
|
||||||
padding-top:1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bold
|
|
||||||
{
|
|
||||||
font-weight:bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.monospace
|
|
||||||
{
|
|
||||||
font-family:monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.floatright
|
|
||||||
{
|
|
||||||
position:fixed;
|
|
||||||
top:10px;
|
|
||||||
right:18px;
|
|
||||||
margin: 0;
|
|
||||||
width:calc(33.33% - 25px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.error
|
|
||||||
{
|
|
||||||
background:#ff5b5b;
|
|
||||||
}
|
|
||||||
|
|
||||||
.error_msg
|
|
||||||
{
|
|
||||||
color:red;
|
|
||||||
}
|
|
|
@ -16,11 +16,10 @@
|
||||||
|
|
||||||
.floatright
|
.floatright
|
||||||
{
|
{
|
||||||
position:fixed;
|
position: fixed;
|
||||||
top:50px;
|
top: 2em;
|
||||||
right:18px;
|
right: 2em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width:calc(33.33% - 25px);
|
|
||||||
z-index: 50;
|
z-index: 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -658,21 +658,23 @@
|
||||||
|
|
||||||
let event_message = 'Unknown event';
|
let event_message = 'Unknown event';
|
||||||
if (json['event'] == 'new_offer') {
|
if (json['event'] == 'new_offer') {
|
||||||
event_message = '<a href=/offer/' + json['offer_id'] + '>New offer</a>';
|
event_message = '<div class="p-4 w-full mt-5 text-gray-500 bg-white rounded-lg shadow"> <div class="flex"> <div class="text-sm font-normal"> <div class="mb-1 text-sm font-semibold text-gray-900"> <a href=/offer/' + json['offer_id'] + '>New offer</a></div></div></div></div>';
|
||||||
} else
|
} else
|
||||||
if (json['event'] == 'new_bid') {
|
if (json['event'] == 'new_bid') {
|
||||||
event_message = '<a href=/bid/' + json['bid_id'] + '>New bid</a> on offer <a href=/offer/' + json['offer_id'] + '>' + json['offer_id'] + '</a>';
|
event_message = '<div class="p-4 w-full mt-5 text-gray-500 bg-white rounded-lg shadow"> <div class="flex"> <div class="text-sm font-normal"> <div class="mb-1 text-sm font-semibold text-gray-900 "> <a href=/bid/' + json['bid_id'] + '>New bid</a> on offer</div><div class="mb-2 mt-2 text-sm"><a class="inline-flex px-2.5 py-1.5 text-xs font-small monospace text-center text-white bg-blue-600 rounded-lg hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300" href=/offer/' + json['offer_id'] + '>' + json['offer_id'] + '</a></div></div>';
|
||||||
} else
|
} else
|
||||||
if (json['event'] == 'bid_accepted') {
|
if (json['event'] == 'bid_accepted') {
|
||||||
event_message = '<a href=/bid/' + json['bid_id'] + '>Bid accepted</a>';
|
event_message = '<div class="p-4 w-full mt-5 text-gray-500 bg-white rounded-lg shadow"><div class="flex"><div class="text-sm font-normal"><div class="mb-1 text-sm font-semibold text-gray-900"><a href=/bid/' + json['bid_id'] + '>Bid accepted</a></div></div></div></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
let messages = document.getElementById('ul_updates'),
|
let messages = document.getElementById('ul_updates'),
|
||||||
message = document.createElement('li');
|
message = document.createElement('li');
|
||||||
|
|
||||||
message.innerHTML = event_message;
|
message.innerHTML = event_message;
|
||||||
messages.appendChild(message);
|
messages.appendChild(message);
|
||||||
};
|
};
|
||||||
floating_div.appendChild(messages);
|
floating_div.appendChild(messages);
|
||||||
document.body.appendChild(floating_div);
|
document.body.appendChild(floating_div);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue