fix(docs-infra): make API member name bold (#31574)
- Return API member name bold font weight - SCSS formatting cleanup Closes #31494 PR Close #31574
This commit is contained in:
parent
146ef48a6e
commit
cffbaba914
|
@ -4,36 +4,6 @@
|
||||||
table {
|
table {
|
||||||
margin: 12px 0 24px;
|
margin: 12px 0 24px;
|
||||||
|
|
||||||
th {
|
|
||||||
text-transform: none;
|
|
||||||
@include font-size(16);
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr {
|
|
||||||
border-bottom: 1px solid $lightgray;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is overriding a style here:
|
|
||||||
// https://github.com/angular/angular/blob/95993e1/aio/src/styles/2-modules/_table.scss#L58-L62
|
|
||||||
tbody > tr > td tr td:first-child {
|
|
||||||
@media screen and (max-width: 480px) {
|
|
||||||
background-color: inherit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
margin: 16px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr:last-child {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.item-table {
|
&.item-table {
|
||||||
td {
|
td {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
|
@ -46,10 +16,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.short-description {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.parameters-table {
|
&.parameters-table {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@include font-size(14);
|
@include font-size(14);
|
||||||
|
@ -80,6 +46,40 @@
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-transform: none;
|
||||||
|
@include font-size(16);
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
border-bottom: 1px solid $lightgray;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is overriding a style here:
|
||||||
|
// https://github.com/angular/angular/blob/95993e1/aio/src/styles/2-modules/_table.scss#L58-L62
|
||||||
|
tbody > tr > td tr td:first-child {
|
||||||
|
@media screen and (max-width: 480px) {
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
margin: 16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.short-description {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.class-overview {
|
.class-overview {
|
||||||
|
@ -90,6 +90,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.member-name .pln {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
.short-description {
|
.short-description {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
@ -138,6 +142,7 @@
|
||||||
.github-links {
|
.github-links {
|
||||||
a {
|
a {
|
||||||
color: $mediumgray;
|
color: $mediumgray;
|
||||||
|
|
||||||
.material-icons:hover {
|
.material-icons:hover {
|
||||||
background: none;
|
background: none;
|
||||||
color: $blue;
|
color: $blue;
|
||||||
|
@ -229,7 +234,6 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.from-constructor,
|
.from-constructor,
|
||||||
.read-only-property,
|
.read-only-property,
|
||||||
.write-only-property {
|
.write-only-property {
|
||||||
|
|
|
@ -7,4 +7,4 @@ interface {$ doc.name $}{$ doc.typeParams | escape $}{$ memberHelper.renderHerit
|
||||||
</code-example>
|
</code-example>
|
||||||
{$ descendants.renderDescendants(doc, 'interface', 'Child interfaces') $}
|
{$ descendants.renderDescendants(doc, 'interface', 'Child interfaces') $}
|
||||||
{$ descendants.renderDescendants(doc, 'class', 'Class implementations', true, r/class|directive|pipe|decorator/) $}
|
{$ descendants.renderDescendants(doc, 'class', 'Class implementations', true, r/class|directive|pipe|decorator/) $}
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue