discourse/app
Krzysztof Kotlarek 74f24d5973
FIX: bold sidebar header when admin sidebar is disabled (#26993)
Recently a bug was introduced when the admin sidebar section was made bold.

When the admin sidebar is disabled, we display the original sidebar in the admin panel. In that case, an incorrect CSS rule is executed.
```CSS
.admin-area .sidebar-wrapper {
  background-color: var(--d-sidebar-admin-background);
  .sidebar-section-header-text {
    font-weight: bold;
  }
}
```
Bug in this PR: https://github.com/discourse/discourse/pull/26801

To solve it, a custom CSS class with a panel key was added which will allow granular customisations.
2024-05-13 12:36:03 +10:00
..
assets FIX: bold sidebar header when admin sidebar is disabled (#26993) 2024-05-13 12:36:03 +10:00
controllers FIX: add missing translations for staff action logs. (#26969) 2024-05-10 23:11:56 +08:00
helpers FIX: Include HTML content for authenticated users with crawler UA (#26757) 2024-04-25 22:41:57 +01:00
jobs FIX: send activity summaries based on "last seen" 2024-05-06 15:22:52 +02:00
mailers FIX: send activity summaries based on "last seen" 2024-05-06 15:22:52 +02:00
models DEV: Embed IDs in serializer for about page (#26679) 2024-05-10 20:11:43 +03:00
serializers DEV: Embed IDs in serializer for about page (#26679) 2024-05-10 20:11:43 +03:00
services FIX: add missing translations for staff action logs. (#26969) 2024-05-10 23:11:56 +08:00
views FEATURE: Add experimental tracking of 'real browser' pageviews (#26647) 2024-04-25 11:00:01 +01:00