diff --git a/data/interfaces/default/css/plexpy.css b/data/interfaces/default/css/plexpy.css index d9a67b65..98edd295 100644 --- a/data/interfaces/default/css/plexpy.css +++ b/data/interfaces/default/css/plexpy.css @@ -2671,6 +2671,12 @@ a .home-platforms-list-cover-face:hover border-radius: 8px; background-clip: padding-box; } +pre::-webkit-scrollbar-track { + background-color: rgba(255,255,255,.2); +} +pre::-webkit-scrollbar-thumb { + background-color: rgba(0,0,0,.15); +} @media only screen and (min-device-width: 300px) diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index 6a61c9e5..beb463e6 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -951,15 +951,10 @@
- Enable to only get one TV Show or Artist notification for a batch of recently added Episodes or Tracks. Movies are unaffected.
- % if config['notify_recently_added_grandparent'] == 'Checked':
- Note: No Season/Episode or Album/Track metadata will be available.
- % else:
- Note: No Season/Episode or Album/Track metadata will be available.
- % endif
+ Enable to only get one TV Show/Season or Artist/Album notification for a batch of recently added Episodes or Tracks. Movies are unaffected.
All text inside <movie></movie> tags will only be sent when the media item is a movie.
Example:
-{user} has started playing {title} <movie>({year})</movie>+
{title} <movie>({year})</movie> was recently added to Plex
All text inside <tv></tv> tags will only be sent when the media item is an episode.
+All text inside <show></show>/<season></season>/<episode></episode> + tags will only be sent when the media item is an show/season/episode.
Example:
-{user} has started playing {title} <tv>(S{season_num}E{episode_num})</tv>+
<show>{show_name}</show><seasom>{show_name} - Season {season_num}</season><episode>{show_name} - S{season_num}E{episode_num} - {episode_name}</episode> was recently added to Plex.
All text inside <music></music> tags will only be sent when the media item is a track.
+All text inside <artist></artist>/<album></album>/<track></track> + tags will only be sent when the media item is a track.
Example:
-{user} has started playing {title} <music>(Track {track_num})</music>+
<artist>{artist_name}</artist><album>{artist_name} - {album_name}</album><track>{artist_name} - {album_name} - {track_name}</track> was recently added to Plex.