Skip to content

Commit 2272750

Browse files
authoredFeb 10, 2021
fix: add styling for markdown tables (#921)
Adds some basic styles to clean up the appearance of the Markdown-generated tables.
1 parent 6a52044 commit 2272750

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed
 

‎material.angular.io/src/styles/_markdown-theme.scss

+6
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,11 @@
3232
code {
3333
background: rgba(mat-color($foreground, secondary-text), $exportBackgroundOpacity);
3434
}
35+
36+
> table {
37+
th, td {
38+
border-bottom-color: mat-color($foreground, divider);
39+
}
40+
}
3541
}
3642
}

‎material.angular.io/src/styles/_markdown.scss

+24-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@
3535
text-decoration: none;
3636
}
3737

38-
td code {
39-
font-size: 14px;
40-
}
41-
4238
pre {
4339
border-radius: 5px;
4440
display: block;
@@ -56,6 +52,30 @@
5652
code {
5753
padding: 3px;
5854
}
55+
56+
// Target direct descendants here so that the styles don't bleed into the live examples.
57+
> table {
58+
text-align: left;
59+
table-layout: fixed;
60+
border-collapse: collapse;
61+
margin-bottom: 1em;
62+
font-size: 14px;
63+
64+
tr {
65+
height: 48px;
66+
}
67+
68+
th, td {
69+
padding: 8px 4px 8px 0;
70+
border-bottom-width: 1px;
71+
border-bottom-style: solid;
72+
}
73+
74+
// Code tends to wrap inside tables which doesn't look great with the background color.
75+
code {
76+
background: transparent;
77+
}
78+
}
5979
}
6080

6181
.docs-header-link {

0 commit comments

Comments
 (0)
Please sign in to comment.