-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b24637b
commit 22187e0
Showing
2 changed files
with
18 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// TODO: Need to add the queue-tabBar bit to block the Podcasts tab on the Your Library page | ||
// Because it resets itself when the window resizes and it go in/out of the overflow menu | ||
// Technically I should block the li.queue-tabBar-headerItem above it, but can't do that with just CSS | ||
|
||
// General rules | ||
.hide-podcasts-enabled .podcast-item { | ||
display: none !important; | ||
} | ||
.hide-audiobooks-enabled .audiobook-item { | ||
display: none !important; | ||
} | ||
|
||
// Podcasts tab in Your Library page | ||
.hide-podcasts-enabled .queue-tabBar-header a[href="/collection/podcasts"] { | ||
display: none !important; | ||
}; |