* Revert "Revert "Upgrade Primer CSS to 16 (#18713)""
This reverts commit c01d3e302e.
* Add a hack to handle trashcan icon in translated content
45 lines
626 B
SCSS
45 lines
626 B
SCSS
/* Global type styles
|
|
------------------------------------------------------------------------------*/
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
a {
|
|
color: var(--color-auto-gray-9);
|
|
}
|
|
}
|
|
|
|
summary {
|
|
outline: none;
|
|
}
|
|
|
|
.markdown-body {
|
|
summary {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// all h3 headers that are links should be blue-500
|
|
// except those on each product's toc
|
|
h3 a {
|
|
color: var(--color-auto-blue-5);
|
|
|
|
.directory-toc & {
|
|
color: var(--color-auto-gray-9);
|
|
}
|
|
}
|