aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-11-10 00:47:10 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-10 03:18:47 +0800
commit62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8 (patch)
tree9fdad876157e5fd4615f278edda2521902526d0c /ui/app/components
parent424c1f23c91b06b687ddb3a3cbc79610584dc23f (diff)
downloadtangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.tar.gz
tangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.tar.zst
tangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.zip
Network loading does not block network loading.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/dropdowns/components/dropdown.js2
-rw-r--r--ui/app/components/dropdowns/network-dropdown.js3
-rw-r--r--ui/app/components/loading.js15
3 files changed, 4 insertions, 16 deletions
diff --git a/ui/app/components/dropdowns/components/dropdown.js b/ui/app/components/dropdowns/components/dropdown.js
index ddcb7998f..15d064be8 100644
--- a/ui/app/components/dropdowns/components/dropdown.js
+++ b/ui/app/components/dropdowns/components/dropdown.js
@@ -31,7 +31,7 @@ class Dropdown extends Component {
containerClassName,
useCssTransition,
isOpen,
- zIndex: 30,
+ zIndex: 55,
onClickOutside,
style,
innerStyle: innerStyleDefaults,
diff --git a/ui/app/components/dropdowns/network-dropdown.js b/ui/app/components/dropdowns/network-dropdown.js
index 20dfca590..0908faf01 100644
--- a/ui/app/components/dropdowns/network-dropdown.js
+++ b/ui/app/components/dropdowns/network-dropdown.js
@@ -75,11 +75,12 @@ NetworkDropdown.prototype.render = function () {
}
},
containerClassName: 'network-droppo',
- zIndex: 11,
+ zIndex: 55,
style: {
position: 'absolute',
top: '58px',
minWidth: '309px',
+ zIndex: '55px',
},
innerStyle: {
padding: '18px 8px',
diff --git a/ui/app/components/loading.js b/ui/app/components/loading.js
index 587212015..9442121fe 100644
--- a/ui/app/components/loading.js
+++ b/ui/app/components/loading.js
@@ -10,20 +10,7 @@ class LoadingIndicator extends Component {
render () {
return (
- h('.full-flex-height', {
- style: {
- left: '0px',
- zIndex: 50,
- position: 'absolute',
- flexDirection: 'column',
- display: 'flex',
- justifyContent: 'center',
- alignItems: 'center',
- height: '100%',
- width: '100%',
- background: 'rgba(255, 255, 255, 0.8)',
- },
- }, [
+ h('.full-flex-height.loading-overlay', {}, [
h('img', {
src: 'images/loading.svg',
}),