Support multiple versions in technical changelog

- Better handling of article links
- Style improvements
This commit is contained in:
Misode
2021-11-02 02:25:04 +01:00
parent 582d5f4b1e
commit cc20cb7f7a
3 changed files with 70 additions and 17 deletions

View File

@@ -1004,7 +1004,7 @@ hr {
.changelog-tags {
display: flex;
margin-bottom: 8px;
flex-wrap: wrap;
}
.changelog-tag {
@@ -1018,12 +1018,17 @@ hr {
padding: 0 8px;
color: var(--color);
fill: var(--color);
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.changelog-entry .changelog-tag {
margin-bottom: 8px;
}
.changelog-tag svg {
margin-right: 4px;
width: 20px;
@@ -1041,13 +1046,31 @@ hr {
}
.changelog-version {
float: right;
}
.changelog-version > * {
margin-left: auto;
font-size: 15px;
color: var(--text-3);
text-decoration: none;
}
.changelog-version:hover {
.changelog-version > *:first-child {
position: relative;
margin-right: 19px;
}
.changelog-version > *:first-child::after {
content: '•';
position: absolute;
text-decoration: none;
right: -12px;
top: 0;
pointer-events: none;
}
.changelog-version a:hover {
text-decoration: underline;
}