Skip to content

Commit d7c4cf6

Browse files
authored
Merge branch 'develop' into feature/ddw-614-add-display-of-current-rewards-balance
2 parents 00d6fab + e7fa5ef commit d7c4cf6

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
### Fixes
1313

1414
- Fixed main container zIndex ([PR 2863](https://github.com/input-output-hk/daedalus/pull/2863))
15+
- Fixed ui overlap issues ([PR 2881](https://github.com/input-output-hk/daedalus/pull/2881))
1516

1617
## 4.9.0-FC1
1718

source/renderer/app/components/appUpdate/AppUpdateOverlay.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import '../../themes/mixins/link';
22
@import '../../themes/mixins/overlay-backdrop';
3+
@import '../../themes/mixins/layers.scss';
34

45
.component {
56
align-items: center;
@@ -14,7 +15,7 @@
1415
position: fixed;
1516
top: 0;
1617
width: 100vw;
17-
z-index: 22;
18+
z-index: $dialog-z-index;
1819
@include overlay-backrop;
1920

2021
.content {

source/renderer/app/components/knownIssues/RTSFlagsRecommendationOverlay/RTSFlagsRecommendationOverlay.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import '../../../themes/mixins/overlay-backdrop';
2+
@import '../../../themes/mixins/layers.scss';
23

34
// TODO reduce duplication with AlertsOverlay
45
// https://input-output.atlassian.net/browse/DDW-928
@@ -15,7 +16,7 @@
1516
position: fixed;
1617
top: 0;
1718
width: 100vw;
18-
z-index: 22;
19+
z-index: $dialog-z-index;
1920
@include overlay-backrop;
2021

2122
.actionBtn {

source/renderer/app/components/news/AlertsOverlay.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import '../../themes/mixins/overlay-backdrop';
2+
@import '../../themes/mixins/layers.scss';
23

34
.component {
45
align-items: center;
@@ -12,7 +13,7 @@
1213
position: fixed;
1314
top: 0;
1415
width: 100vw;
15-
z-index: 22;
16+
z-index: $dialog-z-index;
1617
@include overlay-backrop;
1718

1819
.actionBtn {

source/renderer/app/components/news/IncidentOverlay.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import '../../themes/mixins/overlay-backdrop';
2+
@import '../../themes/mixins/layers.scss';
23

34
.component {
45
align-items: center;
@@ -12,7 +13,7 @@
1213
position: fixed;
1314
top: 0;
1415
width: 100vw;
15-
z-index: 22;
16+
z-index: $dialog-z-index;
1617
@include overlay-backrop;
1718

1819
.actionBtn {

source/renderer/app/components/news/NewsFeed.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import '../../themes/mixins/layers.scss';
2+
13
.component {
24
background: var(--theme-news-feed-background-color);
35
box-shadow: var(--theme-news-feed-box-shadow-color);
@@ -11,7 +13,7 @@
1113
top: 0;
1214
transition: margin-right 400ms ease;
1315
width: 460px;
14-
z-index: 20;
16+
z-index: $dialog-z-index;
1517

1618
&.noTransition {
1719
transition: none;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$dialog-z-index: 200;

0 commit comments

Comments
 (0)