Skip to content

Commit

Permalink
fix(ui5-table): correct font weight (#9417)
Browse files Browse the repository at this point in the history
"72-SemiboldDuplex", "72-SemiboldDuplexfull" fonts look broken in Safari browser when its font weight is set to bold.
![image](https://github.com/SAP/ui5-webcomponents/assets/31909318/8b927aea-da58-4a73-916b-5ce8dd8ff91e)

With this the specification of `ui5-table-column` was updated and now, the column's font weight should be set to normal. With this PR the styles are align to the specification.

Related to: #9046
  • Loading branch information
nnaydenow authored Jul 9, 2024
1 parent 4ba9173 commit 9cc7aeb
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

:root {
--ui5_table_header_row_outline_width: var(--sapContent_FocusWidth);
--ui5_table_header_row_font_weight: bold;
--ui5_table_header_row_font_family: var(--sapFontSemiboldDuplexFamily);
--ui5_table_header_row_border_bottom_color: var(--sapList_HeaderBorderColor);
--ui5_table_focus_outline_offset: -0.1875rem;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@import "../base/Table-parameters.css";
@import "../base/TableRow-parameters.css";
@import "./Table-parameters.css";
@import "./TableColumn-parameters.css";
@import "./TableRow-parameters.css";
@import "./TableGroupRow-parameters.css";
@import "./GrowingButton-parameters.css";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

:root {
--ui5_table_header_row_outline_width: var(--sapContent_FocusWidth);
--ui5_table_header_row_font_weight: bold;
--ui5_table_header_row_font_family: var(--sapFontSemiboldDuplexFamily);
--ui5_table_header_row_border_bottom_color: var(--sapList_HeaderBorderColor);
--ui5_table_focus_outline_offset: -0.1875rem;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@import "../base/Table-parameters.css";
@import "../base/TableRow-parameters.css";
@import "./Table-parameters.css";
@import "./TableColumn-parameters.css";
@import "./TableRow-parameters.css";
@import "./TableGroupRow-parameters.css";
@import "./GrowingButton-parameters.css";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

:root {
--ui5_table_header_row_outline_width: 0.125rem;
--ui5_table_header_row_font_weight: bold;
--ui5_table_header_row_font_family: var(--sapFontSemiboldDuplexFamily);
--ui5_table_header_row_border_bottom_color: var(--sapList_HeaderBorderColor);
--ui5_table_focus_outline_offset: -0.1875rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

:root {
--ui5_table_header_row_outline_width: 0.125rem;
--ui5_table_header_row_font_weight: bold;
--ui5_table_header_row_font_family: var(--sapFontSemiboldDuplexFamily);
--ui5_table_header_row_border_bottom_color: var(--sapList_HeaderBorderColor);
--ui5_table_focus_outline_offset: -0.1875rem;
Expand Down

0 comments on commit 9cc7aeb

Please sign in to comment.