Browse Source

Merge pull request #581 from LN-Zap/fix/channel-loading-hover

fix(channels): loading hover state
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
de354f3f4b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/components/Contacts/Network.js

4
app/components/Contacts/Network.js

@ -224,7 +224,7 @@ class Network extends Component {
return ( return (
<li key={loadingPubkey} className={styles.channel}> <li key={loadingPubkey} className={styles.channel}>
<section className={styles.channelTitle}> <section className={styles.channelTitle}>
<span className={`${styles.loading} hint--left`} data-hint="loading"> <span className={`${styles.loading} hint--right`} data-hint="loading">
<i className={styles.spinner} /> <i className={styles.spinner} />
</span> </span>
<span>{nodeDisplay()}</span> <span>{nodeDisplay()}</span>
@ -306,7 +306,7 @@ class Network extends Component {
<div className={styles.actions}> <div className={styles.actions}>
{closingChannelIds.includes(channel.chan_id) && ( {closingChannelIds.includes(channel.chan_id) && (
<section> <section>
<span className={`${styles.loading} hint--left`} data-hint="closing"> <span className={`${styles.loading} hint--right`} data-hint="closing">
<i>Closing</i> <i className={`${styles.spinner} ${styles.closing}`} /> <i>Closing</i> <i className={`${styles.spinner} ${styles.closing}`} />
</span> </span>
</section> </section>

Loading…
Cancel
Save