Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit c114252

Browse files
committed
fix(plugins/plugin-client-common): override carbon's -webkit-font-smoothing: antialiased
Fixes #4414
1 parent 3e1f8e7 commit c114252

File tree

1 file changed

+4
-2
lines changed
  • plugins/plugin-client-common/web/css/static

1 file changed

+4
-2
lines changed

plugins/plugin-client-common/web/css/static/ui.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ body[kui-theme-style] {
2020
font-weight: 400;
2121
margin: 0;
2222
overflow: hidden;
23+
24+
/* see https://github.com/IBM/kui/issues/4414 */
25+
-webkit-font-smoothing: unset;
2326
}
2427
.kui--full-height,
2528
.page {
@@ -305,13 +308,12 @@ code.fancy-code.hljs {
305308
}
306309
.grid-layout {
307310
display: grid;
308-
grid-column-gap: 0.375em;
311+
grid-column-gap: 0.875em;
309312
grid-template-columns: repeat(auto-fill, minmax(10em, auto));
310313
grid-template-rows: repeat(auto-fill, minmax(1.25em, auto));
311314
flex: 1;
312315
}
313316
.grid-layout > div {
314-
margin-right: 0.5em;
315317
overflow: hidden;
316318
text-overflow: ellipsis;
317319
white-space: nowrap;

0 commit comments

Comments
 (0)