You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When <table> tags as html with custom styling are used inside .md files,
default styles that are defined inside theme.styl file overrides those custom styles,
making it impossible to use table tags to style custom tables.
Proposal:
Remove css styles that are bound to <table> element inside [/theme/styles/theme.styl] and add a custom class to default tables that are parsed from md syntax.
Steps to reproduce:
Use table tags
Define the custom styles that overrides the default styles like this: th, td {border: none}
※the default style: th, td {border: 1px solid #dfe2e5}
Expected:
Override the default style by the custom style.
The text was updated successfully, but these errors were encountered:
When
<table>
tags as html with custom styling are used inside .md files,default styles that are defined inside theme.styl file overrides those custom styles,
making it impossible to use table tags to style custom tables.
Proposal:
Remove css styles that are bound to
<table>
element inside [/theme/styles/theme.styl] and add a custom class to default tables that are parsed from md syntax.Steps to reproduce:
th, td {border: none}
※the default style:
th, td {border: 1px solid #dfe2e5}
Expected:
Override the default style by the custom style.
The text was updated successfully, but these errors were encountered: