Skip to content

Commit f49cac5

Browse files
authored
Merge pull request #33 from ixian-platform/jaka/fix/styles
fix: recipients list flex wrap unset, online status style fix
2 parents 41af5cd + 22df116 commit f49cac5

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

Spixi/Resources/Raw/html/css/spixiui-dark.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4773,21 +4773,18 @@ img.emoji {
47734773
.spixi-contact-details-avatar-online {
47744774
border: 2px solid var(--colors-icon-success);
47754775
animation: onlinePulse 1.8s infinite ease-in-out;
4776-
transition: border-width 0.3s ease;
4776+
backface-visibility: hidden;
47774777
}
47784778

47794779
@keyframes onlinePulse {
47804780
0% {
47814781
border-width: 2px;
4782-
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
47834782
}
47844783
50% {
47854784
border-width: 4px;
4786-
box-shadow: 0 0 4px 2px rgba(0, 255, 0, 0.2);
47874785
}
47884786
100% {
47894787
border-width: 2px;
4790-
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
47914788
}
47924789
}
47934790

Spixi/Resources/Raw/html/css/spixiui-light.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4744,21 +4744,18 @@ img.emoji {
47444744
.spixi-contact-details-avatar-online{
47454745
border: 2px solid var(--colors-icon-success);
47464746
animation: onlinePulse 1.8s infinite ease-in-out;
4747-
transition: border-width 0.3s ease;
4747+
backface-visibility: hidden;
47484748
}
47494749

47504750
@keyframes onlinePulse {
47514751
0% {
47524752
border-width: 2px;
4753-
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
47544753
}
47554754
50% {
47564755
border-width: 4px;
4757-
box-shadow: 0 0 4px 2px rgba(0, 255, 0, 0.2);
47584756
}
47594757
100% {
47604758
border-width: 2px;
4761-
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
47624759
}
47634760
}
47644761

Spixi/Resources/Raw/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276

277277
<!-- Tabbar -->
278278
<div id="footer" class="fixed-bottom spixi-footer">
279-
<div class="" style="width:90%; margin: auto;">
279+
<div class="" style="width:98%; margin: auto;">
280280
<ul class="nav nav-tabs row no-gutters spixi-footer-row">
281281
<li id="tab1" class="col-3 spixi-tab">
282282
<a data-toggle="tab" href="#chats" class="spixi-tab-pad">

Spixi/Resources/Raw/html/wallet_recipient.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
var contactEntry = document.createElement("div");
183183
contactEntry.className = "spixi-list-item";
184184
//contactEntry.innerHTML = '<a href="javascript:selectRecipient(\'' + wal + '\')"><div class="row" id="row' + wal + '"><div class="col-2 spixi-list-item-left"><img class="spixi-list-item-avatar" src="' + avatar + '"/></div><div class="col-8 spixi-list-item-center"><div class="spixi-list-item-title-center">' + name + '</div></div><div class="col-2 spixi-list-item-right"><i class="fa fa-square spixi-list-item-action-icon"></i></div></div></a>';
185-
contactEntry.innerHTML = '<a href="javascript:selectSingleRecipient(\'' + wal + '\')"><div class="row" id="row' + wal + '"><div class="col-2 spixi-list-item-left"><img class="spixi-list-item-avatar" src="' + avatar + '"/></div><div class="col-10 spixi-list-item-center"><div class="spixi-list-item-title-center">' + name + '</div></div></div></a>';
185+
contactEntry.innerHTML = '<a href="javascript:selectSingleRecipient(\'' + wal + '\')"><div class="row" style="flex-wrap: unset" id="row' + wal + '"><div class="col-2 spixi-list-item-left"><img class="spixi-list-item-avatar" src="' + avatar + '"/></div><div class="col-10 spixi-list-item-center"><div class="spixi-list-item-title-center">' + name + '</div></div></div></a>';
186186

187187
contactsNode.appendChild(contactEntry);
188188
}

0 commit comments

Comments
 (0)