1
0
mirror of synced 2026-01-07 00:01:39 -05:00
Files
docs/stylesheets/release-notes.scss
Jason Etcovitch 92d5722103 Add 2.22 release notes (#16586)
* Add 2.22.0

* Add 2.22.1

* Add 2.22.2

* Add 2.22.3

* Add 2.22.4

* Lint YAML files

* intro shouldn't be required

* Align all notes

* Full height sidebar

* Make the sidebar full height properly

* Get the real layout going

* Include full name

* Move details > summary around

* Fix sticky sidebar

* Tweak bottom of page

* Add more label colors

* Change heading title

* Don't be <details>, change sticky header

* Include other releases' info

* Show prev/next links

* Change sidenav to show all releases

* Fix ordering of chevron

* Fix link underlines

* Collapsing minor versions

* Moar padding

* Setup schema for sub-sections

* Update a YAML file to match schema

* Redo rendering/sorting logic

* Update layout

* Convert remaining notes

* Improve schema

* Use proper min properties

* Custom bullet points

* Show details control for version picker

* Improve layout on small screens

* One more tiny fix

* Order by semver

* Use proper version in details

* Fix extra arrows showing up

* Change label colors

* Pass the reference check

* Add gradients

* Gradient all the things
2020-12-11 13:43:11 -05:00

18 lines
353 B
SCSS

ul.release-notes-list li.release-notes-list-item {
&::marker {
// `• `
content: '\2022\00a0';
font-size: 1.6em;
margin-right: $spacer-2;
color: $gray-400;
}
&.list-style-none::marker {
content: '';
}
}
details[open].release-notes-version-picker summary .octicon.octicon-chevron-down {
transform: rotate(180deg);
}