2018-10-18 20:53:07 +01:00
|
|
|
.api-body {
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
margin: 12px 0 24px;
|
|
|
|
|
|
|
|
|
|
th {
|
|
|
|
|
text-transform: none;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(16);
|
2018-10-18 20:53:07 +01:00
|
|
|
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 {
|
|
|
|
|
td {
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.list-table {
|
|
|
|
|
td {
|
|
|
|
|
padding: 16px 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.short-description {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.parameters-table {
|
|
|
|
|
margin-top: 0;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(14);
|
2018-10-18 20:53:07 +01:00
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
tr {
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td:first-child {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
padding: 8px 8px 8px 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-12 18:21:20 +02:00
|
|
|
|
|
|
|
|
&.property-table {
|
|
|
|
|
td {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-18 20:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.class-overview {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
code-example {
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.short-description {
|
|
|
|
|
margin: 6px 0 0 10px;
|
|
|
|
|
}
|
2018-03-04 20:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
2018-10-18 20:53:07 +01:00
|
|
|
.breadcrumb-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-03 13:13:33 +00:00
|
|
|
.api-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
2018-10-18 20:53:07 +01:00
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
margin-top: -4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.github-links {
|
|
|
|
|
float: right;
|
|
|
|
|
.material-icons {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(20);
|
2018-10-18 20:53:07 +01:00
|
|
|
&:hover {
|
|
|
|
|
background-color: $mist;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-03 13:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
.api-body {
|
2017-07-12 23:06:02 +01:00
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
.class-overview {
|
|
|
|
|
position: relative;
|
2017-07-12 23:06:02 +01:00
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
code-example {
|
|
|
|
|
clear: left;
|
2017-07-12 23:06:02 +01:00
|
|
|
}
|
2018-02-08 15:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
2018-06-22 16:58:29 +01:00
|
|
|
.method-table, .option-table, .list-table {
|
2018-08-31 15:57:53 +01:00
|
|
|
td > code {
|
|
|
|
|
background-color: inherit;
|
2018-09-19 21:25:30 +01:00
|
|
|
white-space: pre;
|
2018-08-31 15:57:53 +01:00
|
|
|
}
|
|
|
|
|
|
2018-07-17 12:14:18 +03:00
|
|
|
.with-github-links {
|
2018-05-23 22:56:05 +01:00
|
|
|
align-items: center;
|
2018-07-17 12:14:18 +03:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2018-05-23 22:56:05 +01:00
|
|
|
|
|
|
|
|
.github-links {
|
|
|
|
|
a {
|
|
|
|
|
color: $mediumgray;
|
|
|
|
|
.material-icons:hover {
|
|
|
|
|
background: none;
|
|
|
|
|
color: $blue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-23 22:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
h3 {
|
|
|
|
|
margin: 6px 0;
|
|
|
|
|
font-weight: bold;
|
2018-05-23 22:56:05 +01:00
|
|
|
clear: left;
|
2018-02-08 15:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4 {
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(14);
|
2018-02-08 15:00:53 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-18 20:53:07 +01:00
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
.api-heading {
|
|
|
|
|
padding: 5px 0;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(14);
|
2018-03-04 20:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
.parameters-table {
|
|
|
|
|
margin-top: 0;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(14);
|
2018-02-08 15:00:53 +00:00
|
|
|
td:nth-child(1) {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
details.overloads {
|
2018-10-18 20:53:07 +01:00
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
.icon-action-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-contents {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 1px solid $lightgray;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
> *:not(hr) {
|
|
|
|
|
margin: 16px 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-08 15:00:53 +00:00
|
|
|
|
|
|
|
|
summary {
|
|
|
|
|
height: inherit;
|
2018-10-18 20:53:07 +01:00
|
|
|
padding: 0;
|
|
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
h4 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
2018-10-18 20:53:07 +01:00
|
|
|
|
|
|
|
|
.show-all {
|
|
|
|
|
display: initial;
|
|
|
|
|
}
|
|
|
|
|
.collapse-all {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[open] > summary {
|
|
|
|
|
.show-all {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.collapse-all {
|
|
|
|
|
display: initial;
|
|
|
|
|
}
|
2018-02-08 15:00:53 +00:00
|
|
|
}
|
2018-09-08 21:57:46 +01:00
|
|
|
}
|
2017-07-12 23:06:02 +01:00
|
|
|
|
2018-10-18 20:53:07 +01:00
|
|
|
details.overload {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-09-26 13:39:51 +01:00
|
|
|
.from-constructor, .read-only-property, .write-only-property {
|
2019-06-18 13:36:02 -07:00
|
|
|
@include font-size(12);
|
2018-10-18 20:53:07 +01:00
|
|
|
font-weight: 600;
|
2019-06-18 13:36:02 -07:00
|
|
|
@include letter-spacing(0.5);
|
2018-02-08 15:00:53 +00:00
|
|
|
font-style: italic;
|
2018-10-18 20:53:07 +01:00
|
|
|
background-color: $lightgray;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px 6px;
|
2018-02-08 15:00:53 +00:00
|
|
|
}
|
2018-09-08 21:57:46 +01:00
|
|
|
|
|
|
|
|
.ngmodule-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
2018-09-20 12:57:34 +01:00
|
|
|
}
|
2018-09-19 14:28:23 +01:00
|
|
|
|
2018-09-20 12:57:34 +01:00
|
|
|
.selector-list, .inherited-members-list {
|
2018-09-19 14:28:23 +01:00
|
|
|
ul {
|
|
|
|
|
padding: 0;
|
|
|
|
|
li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-08 21:57:46 +01:00
|
|
|
}
|
2018-09-19 21:25:30 +01:00
|
|
|
|
2018-09-21 14:07:51 +01:00
|
|
|
.selector-list {
|
|
|
|
|
li, a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
i {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-12 23:06:02 +01:00
|
|
|
}
|
2018-09-17 17:37:18 +01:00
|
|
|
|
|
|
|
|
.deprecated-api-item {
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|