diff --git a/aio/content/guide/roadmap.md b/aio/content/guide/roadmap.md index a664225ab7..819c9a2864 100644 --- a/aio/content/guide/roadmap.md +++ b/aio/content/guide/roadmap.md @@ -80,10 +80,16 @@ A long-standing feature request is to add the ability to add directives to host A common problem with web applications is their slow initial load time. A way to improve it is to apply more granular code-splitting on a component level. To encourage this practice, we’ll be working on more ergonomic code-splitting APIs. -
- +
+

Done

+ + Show all + Hide all + expand_more +
+
### Accelerated debugging and performance profiling with Angular DevTools @@ -163,4 +169,5 @@ _Completed Q4 2020_ We are actively investing up to 50% of our engineering capacity on triaging issues and PRs until we have a clear understanding of broader community needs. After that, we'll commit up to 20% of our engineering capacity to keep up with new submissions promptly. +
diff --git a/aio/src/styles/2-modules/roadmap/_roadmap-theme.scss b/aio/src/styles/2-modules/roadmap/_roadmap-theme.scss index ae4e6ffe3c..70f91de13b 100644 --- a/aio/src/styles/2-modules/roadmap/_roadmap-theme.scss +++ b/aio/src/styles/2-modules/roadmap/_roadmap-theme.scss @@ -1,11 +1,12 @@ -@use 'sass:color'; @use 'sass:map'; @use '../../constants'; @mixin theme($theme) { $is-dark-theme: map.get($theme, is-dark); - .roadmap-done-summary::marker { - color: if($is-dark-theme, constants.$offwhite, color.adjust(constants.$darkgray, $lightness: 10%)); + .page-guide-roadmap { + .completed-details { + border-top: 1px solid if($is-dark-theme, constants.$mediumgray, constants.$lightgray); + } } } diff --git a/aio/src/styles/2-modules/roadmap/_roadmap.scss b/aio/src/styles/2-modules/roadmap/_roadmap.scss index a036ab423e..9ce297c8d9 100644 --- a/aio/src/styles/2-modules/roadmap/_roadmap.scss +++ b/aio/src/styles/2-modules/roadmap/_roadmap.scss @@ -1,13 +1,16 @@ -.roadmap-done-details { - padding: 0 20px 20px; - margin: 0 -20px; -} +.page-guide-roadmap { + .completed-details { + box-shadow: none; + margin-top: 4rem; + padding: 4rem 0 2rem; -.roadmap-done-summary { - margin: 0 -20px; - font-size: 3.2rem; - height: 40px; - padding-bottom: 0; - display: list-item; - user-select: none; + > summary { + justify-content: space-between; + padding: 0; + } + + > .details-content { + padding: 0; + } + } }