Skip to content
Merged

bugfix #3407

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions redisinsight/ui/src/components/shortcuts-flyout/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,27 @@
font-size: 18px;
font-weight: 600 !important;
}

.table {
:global(thead) {
display: none;
}

:global {
td, tr {
border-color: var(--tableLightBorderColor) !important;
}
}
&:global(.inMemoryTableDefault .euiTableCellContent span) {
padding-top: 0 !important;
white-space: normal;

&:global(.inMemoryTableDefault) {
:global {
.euiTableCellContent span {
padding-top: 0 !important;
white-space: normal !important;
}
}
}

:global(.euiBadge) {
height: 22px;
min-width: 34px !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
.snoozeBtn {
svg {
fill: var(--recommendationBgColor) !important;
g {
g, circle, path {
stroke: currentColor !important;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $animation-duration: 300ms;

display: flex;
flex-direction: column;
overflow: hidden;
}

.loading {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const ConfigOAuth = () => {
if (isSelectAccout) return

if (ssoFlowRef.current === OAuthSocialAction.SignIn) {
dispatch(setSSOFlow(undefined))
closeInfinityNotification()
return
}
Expand Down Expand Up @@ -90,7 +91,6 @@ const ConfigOAuth = () => {

const closeInfinityNotification = () => {
dispatch(removeInfiniteNotification(InfiniteMessagesIds.oAuthProgress))
dispatch(setSSOFlow(undefined))
}

const cloudOauthCallback = (_e: any, { status, message = '', error }: CloudAuthResponse) => {
Expand Down
4 changes: 4 additions & 0 deletions redisinsight/ui/src/styles/base/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,7 @@
body .euiSuperSelect__listbox {
max-height: 350px;
}

.euiPanel {
border-color: var(--euiColorLightShade);
}
1 change: 1 addition & 0 deletions redisinsight/ui/src/styles/components/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@import "database";
@import "switch";
@import "callout";
@import "flyout";
@import "tabs";
@import "notificationBody";
@import "json_view";
Expand Down
9 changes: 9 additions & 0 deletions redisinsight/ui/src/styles/components/_flyout.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.euiFlyout {
border-left: 1px solid var(--euiColorLightShade);
box-shadow: none;
background: var(--euiColorEmptyShade);

&__closeButton:not(:hover) {
background-color: transparent;
}
}