Skip to content

Commit 4e92057

Browse files
authored
Merge pull request #122 from RedisInsight/bugfix/change_fonts
bugfix/change_fonts
2 parents 24c6867 + 04c05c2 commit 4e92057

File tree

12 files changed

+23
-20
lines changed

12 files changed

+23
-20
lines changed

redisinsight/ui/src/components/command-helper/CommandHelper/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
.summary {
5050
font: normal normal normal 13px/18px Graphik, sans-serif !important;
51-
letter-spacing: -0.13px;
51+
letter-spacing: -0.13px !important;
5252
padding: 10px 0 5px;
5353
}
5454

redisinsight/ui/src/components/command-helper/components/command-helper-search-output/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
}
2121

2222
.summary, .summary div {
23-
color: var(--inputPlaceHolderColor) !important;
23+
color: var(--inputPlaceholderColor) !important;
2424
}

redisinsight/ui/src/components/page-breadcrumbs/styles.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:global(.euiBreadcrumb) {
77
margin-bottom: 0;
88
font-size: 13px;
9+
letter-spacing: -0.13px;
910
font-weight: 500;
1011
color: var(--euiTextSubduedColor) !important;
1112

redisinsight/ui/src/pages/home/components/AddDatabases/styles.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
font-size: 16px;
3434
line-height: 20px;
3535
font-weight: 500;
36+
letter-spacing: 0;
3637
}
3738

3839
.connectionTypeTitleFullWidth {

redisinsight/ui/src/pages/home/components/AddInstanceControls/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
padding-right: 10px;
1515
height: 43px;
1616
margin: 0 auto;
17-
width: 210px;
17+
width: 220px;
1818
text-decoration: none !important;
1919

2020
:global(.euiButton__text) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020

2121
input::placeholder, textarea::placeholder {
22-
color: var(--inputPlaceHolderColor) !important;
22+
color: var(--inputPlaceholderColor) !important;
2323
}
2424

2525
input[type='password'] ~ .euiFormControlLayoutIcons,

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
color: var(--euiColorGhost) !important;
66
font-weight: 500 !important;
77
letter-spacing: normal !important;
8+
height: 42px !important;
9+
line-height: 42px !important;
810

911
&.euiButton--secondary {
1012
color: var(--buttonSecondaryTextColor) !important;
@@ -27,12 +29,6 @@
2729
box-shadow: none;
2830
}
2931
}
30-
&.euiButton--fill {
31-
color: var(--euiColorPrimaryText) !important;
32-
&:hover {
33-
color: var(--euiColorPrimaryText) !important;
34-
}
35-
}
3632
}
3733
.euiButton.euiButton--fill {
3834
&.euiButton--secondary {
@@ -87,11 +83,15 @@
8783
}
8884

8985
.euiButton__text {
90-
font: normal normal 500 14px/20px Graphik, sans-serif !important;
86+
font: normal normal 500 15px/20px Graphik, sans-serif !important;
9187
}
9288

93-
.euiButton--small .euiButton__text {
94-
font: normal normal 500 13px/16px Graphik, sans-serif !important;
89+
.euiButton--small {
90+
height: 30px !important;
91+
line-height: 30px !important;
92+
.euiButton__text {
93+
font: normal normal 500 13px/16px Graphik, sans-serif !important;
94+
}
9595
}
9696

9797
.euiButton {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
box-shadow: 0 3px 15px var(--controlsBoxShadowColor) !important;
66
font-weight: 400;
77
font-size: 12px !important;
8+
letter-spacing: -0.12px;
89

910
&__title {
1011
color: var(--euiTooltipTitleTextColor) !important;

redisinsight/ui/src/styles/themes/dark_theme/_dark_theme.lazy.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
--tableLightestBorderColor: #{$tableLightestBorderColor};
7777
--tableDarkestBorderColor: #{$tableDarkestBorderColor};
7878
--browserTableRowEven: #{$browserTableRowEven};
79-
--inputPlaceHolderColor: #{$inputPlaceHolderColor};
79+
--inputPlaceholderColor: #{$inputPlaceholderColor};
8080
--inputDisabledBackgroundColor: #{$inputDisabledBackgroundColor};
8181
--inputTextColor: #{$inputTextColor};
8282
--controlsBoxShadowColor: #{$controlsBoxShadowColor};

redisinsight/ui/src/styles/themes/dark_theme/_theme_color.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $browserTableRowEven: #171717;
4545

4646
$inputTextColor: #DFE5EF;
4747
$inputDisabledBackgroundColor: $euiColorEmptyShade;
48-
$inputPlaceHolderColor: #989898;
48+
$inputPlaceholderColor: #898A90;
4949
$controlsBoxShadowColor: rgba(0, 0, 0, 0.45);
5050
$controlsBorderColor: #757575;
5151
$controlsLabelColor: #b5b6c0;
@@ -54,8 +54,8 @@ $iconsDefaultHoverColor: #DFE5EF;
5454
$separatorColor: #3D3D3D;
5555
$separatorDropdownColor: #8B90A3;
5656

57-
$buttonSecondaryHoverColor: #3e41a0;
58-
$buttonSecondaryTextColor: #ffffff;
57+
$buttonSecondaryHoverColor: #364DA8;
58+
$buttonSecondaryTextColor: #DFE5EF;
5959
$buttonSecondaryDisabledTextColor: #8B90A3;
6060
$buttonDangerHoverColor: #E8524A;
6161
$buttonIconPrimaryHover: #364DA8;

0 commit comments

Comments
 (0)