Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.1.17.1000

- Fixed an issue where the channel community highlights would appear when the hide option was enabled
- Fixed an issue where the chat leaderboard would appear when community highlights were open

### 3.1.16.2000

- Updated Firefox extension URL in onboarding
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.1.17

- Fixed an issue where the channel community highlights would appear when the hide option was enabled
- Fixed an issue where the chat leaderboard would appear when community highlights were open

### 3.1.16

- Fixed emote menu not showing emotes with same name but different casing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ export const config = [
}

.seventv-hide-leaderboard {
section[data-test-selector="chat-room-component-layout"] > div:first-child > div:first-child {
/* stylelint-disable-next-line selector-class-pattern */
section[data-test-selector="chat-room-component-layout"] > div.chat-room__content > div:first-child {
display: none !important;
}
}
Expand Down Expand Up @@ -221,7 +222,8 @@ export const config = [
}

.seventv-hide-community-highlights {
div[class^="community-highlight-stack"] {
/* stylelint-disable-next-line selector-class-pattern */
section[data-test-selector="chat-room-component-layout"] > div.chat-room__content > div:nth-child(3) {
display: none !important;
}
}
Expand Down
Loading