Skip to content

Commit 8bd6c79

Browse files
Merge pull request #3407 from RedisInsight/fe/bugfix/RI-5772
bugfix
2 parents 30b84d8 + 618e1fc commit 8bd6c79

File tree

7 files changed

+27
-5
lines changed

7 files changed

+27
-5
lines changed

redisinsight/ui/src/components/shortcuts-flyout/styles.module.scss

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,27 @@
22
font-size: 18px;
33
font-weight: 600 !important;
44
}
5+
56
.table {
67
:global(thead) {
78
display: none;
89
}
10+
911
:global {
1012
td, tr {
1113
border-color: var(--tableLightBorderColor) !important;
1214
}
1315
}
14-
&:global(.inMemoryTableDefault .euiTableCellContent span) {
15-
padding-top: 0 !important;
16-
white-space: normal;
1716

17+
&:global(.inMemoryTableDefault) {
18+
:global {
19+
.euiTableCellContent span {
20+
padding-top: 0 !important;
21+
white-space: normal !important;
22+
}
23+
}
1824
}
25+
1926
:global(.euiBadge) {
2027
height: 22px;
2128
min-width: 34px !important;

redisinsight/ui/src/components/side-panels/panels/live-time-recommendations/components/recommendation/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
.snoozeBtn {
150150
svg {
151151
fill: var(--recommendationBgColor) !important;
152-
g {
152+
g, circle, path {
153153
stroke: currentColor !important;
154154
}
155155
}

redisinsight/ui/src/components/side-panels/panels/live-time-recommendations/styles.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $animation-duration: 300ms;
66

77
display: flex;
88
flex-direction: column;
9+
overflow: hidden;
910
}
1011

1112
.loading {

redisinsight/ui/src/electron/components/ConfigOAuth/ConfigOAuth.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const ConfigOAuth = () => {
5151
if (isSelectAccout) return
5252

5353
if (ssoFlowRef.current === OAuthSocialAction.SignIn) {
54+
dispatch(setSSOFlow(undefined))
5455
closeInfinityNotification()
5556
return
5657
}
@@ -90,7 +91,6 @@ const ConfigOAuth = () => {
9091

9192
const closeInfinityNotification = () => {
9293
dispatch(removeInfiniteNotification(InfiniteMessagesIds.oAuthProgress))
93-
dispatch(setSSOFlow(undefined))
9494
}
9595

9696
const cloudOauthCallback = (_e: any, { status, message = '', error }: CloudAuthResponse) => {

redisinsight/ui/src/styles/base/_overrides.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,7 @@
5656
body .euiSuperSelect__listbox {
5757
max-height: 350px;
5858
}
59+
60+
.euiPanel {
61+
border-color: var(--euiColorLightShade);
62+
}

redisinsight/ui/src/styles/components/_components.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
@import "database";
1414
@import "switch";
1515
@import "callout";
16+
@import "flyout";
1617
@import "tabs";
1718
@import "notificationBody";
1819
@import "json_view";
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.euiFlyout {
2+
border-left: 1px solid var(--euiColorLightShade);
3+
box-shadow: none;
4+
background: var(--euiColorEmptyShade);
5+
6+
&__closeButton:not(:hover) {
7+
background-color: transparent;
8+
}
9+
}

0 commit comments

Comments
 (0)