diff --git a/public/docs/_examples/architecture/dart/.docsync.json b/public/docs/_examples/architecture/dart/.docsync.json new file mode 100644 index 0000000000..f47a6645ce --- /dev/null +++ b/public/docs/_examples/architecture/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "name": "Architecture overview", + "docHref": "https://angular.io/docs/dart/latest/guide/architecture.html" +} diff --git a/public/docs/_examples/dependency-injection/dart/.docsync.json b/public/docs/_examples/dependency-injection/dart/.docsync.json new file mode 100644 index 0000000000..3695627e50 --- /dev/null +++ b/public/docs/_examples/dependency-injection/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "name": "Dependency injection", + "docHref": "https://angular.io/docs/dart/latest/guide/dependency-injection.html" +} diff --git a/public/docs/_examples/displaying-data/dart/.docsync.json b/public/docs/_examples/displaying-data/dart/.docsync.json new file mode 100644 index 0000000000..3d1d13a2df --- /dev/null +++ b/public/docs/_examples/displaying-data/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "name": "Displaying data", + "docHref": "https://angular.io/docs/dart/latest/guide/displaying-data.html" +} diff --git a/public/docs/_examples/forms/dart/.docsync.json b/public/docs/_examples/forms/dart/.docsync.json new file mode 100644 index 0000000000..066f6e56e9 --- /dev/null +++ b/public/docs/_examples/forms/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "name": "Forms", + "docHref": "https://angular.io/docs/dart/latest/guide/forms.html" +} diff --git a/public/docs/_examples/user-input/dart/.docsync.json b/public/docs/_examples/user-input/dart/.docsync.json new file mode 100644 index 0000000000..7538cfa2a0 --- /dev/null +++ b/public/docs/_examples/user-input/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "name": "User input", + "docHref": "https://angular.io/docs/dart/latest/guide/user-input.html" +} diff --git a/public/resources/css/module/_api.scss b/public/resources/css/module/_api.scss index 375196012f..558dd70812 100644 --- a/public/resources/css/module/_api.scss +++ b/public/resources/css/module/_api.scss @@ -159,9 +159,9 @@ input.api-filter { font-size: 14px; color: #1a2326; - // Override highlight.js + // the last .pln (white space) creates additional spacing between sections of the api doc. Remove it. &.no-pln { - .pln { + .pln:last-child { display: none; } } @@ -169,6 +169,15 @@ input.api-filter { } @media screen and (max-width: 600px) { + .docs-content { + // Overrides display flex from angular material. + // This was added because Safari doesn't play nice with layout="column". + // Look of API doc in Chrome and Firefox remains the same, and is fixed for Safari. + .layout-xs-column { + display: block !important; + } + } + code { font-size: 12px; }