fix accessibility issue caused by not using table (#9645)

* fix accessibility issue caused by not using table

* remove fixed background color
This commit is contained in:
Alan Ren
2020-03-17 12:01:55 -07:00
committed by GitHub
parent 6c8a7dc97f
commit 19dec78349
6 changed files with 116 additions and 229 deletions

View File

@@ -168,7 +168,7 @@ export const installMlsWindowsDocs = 'https://docs.microsoft.com/sql/advanced-an
//
export namespace cssStyles {
export const title = { 'font-size': '14px', 'font-weight': '600' };
export const tableHeader = { 'text-align': 'left', 'font-weight': 'bold', 'text-transform': 'uppercase', 'font-size': '10px', 'user-select': 'text', 'border': 'none', 'background-color': '#FFFFFF' };
export const tableHeader = { 'text-align': 'left', 'font-weight': 'bold', 'text-transform': 'uppercase', 'font-size': '10px', 'user-select': 'text', 'border': 'none' };
export const tableRow = { 'border-top': 'solid 1px #ccc', 'border-bottom': 'solid 1px #ccc', 'border-left': 'none', 'border-right': 'none' };
export const hyperlink = { 'user-select': 'text', 'color': '#0078d4', 'text-decoration': 'underline', 'cursor': 'pointer' };
export const text = { 'margin-block-start': '0px', 'margin-block-end': '0px' };