Skip to content

Commit

Permalink
Add support for Administartion and Moderation column-links in 4.3.0-b…
Browse files Browse the repository at this point in the history
…eta.1 (2024-09-07)
  • Loading branch information
ronilaukkarinen committed Sep 7, 2024
1 parent be1d0c7 commit 1fcca22
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### 2.0.0rc48: 2024-09-07

* Fix indicator for private mentions when grouped notifications are enabled in 4.3.0
* Add support for Administartion and Moderation column-links in 4.3.0-beta.1 (2024-09-07)

### 2.0.0rc47: 2024-08-23

Expand Down
18 changes: 18 additions & 0 deletions layout-multiple-columns.css
Original file line number Diff line number Diff line change
Expand Up @@ -3204,6 +3204,24 @@ body.embed .button.logo-button:hover,
order: 12;
}

.layout-multiple-columns .column-link[href="/admin/dashboard"] {
order: 11;
}

.layout-multiple-columns .column-link[href="/admin/reports"] {
order: 12;
}

.layout-multiple-columns .column-link[href="/admin/dashboard"] path {
/* stylelint-disable-next-line declaration-no-important */
display: block !important;
}

.layout-multiple-columns .column-link[href="/admin/reports"] path {
/* stylelint-disable-next-line declaration-no-important */
display: block !important;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.layout-multiple-columns .list-panel {
order: 13;
Expand Down
20 changes: 19 additions & 1 deletion layout-single-column.css
Original file line number Diff line number Diff line change
Expand Up @@ -3423,13 +3423,31 @@ body.embed .button.logo-button:hover,
}

.layout-single-column .column-link[href="/search"] {
order: 12;
order: 11;
}

.layout-single-column .column-link[href="/lists"] {
order: 13;
}

.layout-single-column .column-link[href="/admin/dashboard"] {
order: 11;
}

.layout-single-column .column-link[href="/admin/reports"] {
order: 12;
}

.layout-single-column .column-link[href="/admin/dashboard"] path {
/* stylelint-disable-next-line declaration-no-important */
display: block !important;
}

.layout-single-column .column-link[href="/admin/reports"] path {
/* stylelint-disable-next-line declaration-no-important */
display: block !important;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.layout-single-column .list-panel {
order: 13;
Expand Down

0 comments on commit 1fcca22

Please sign in to comment.