Skip to content

Commit 2b64aa6

Browse files
committed
#RI-5772 - fix styles
1 parent f712f39 commit 2b64aa6

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
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/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)