diff --git a/data/interfaces/default/css/tautulli.css b/data/interfaces/default/css/tautulli.css index 881b23a7..16320f06 100644 --- a/data/interfaces/default/css/tautulli.css +++ b/data/interfaces/default/css/tautulli.css @@ -125,8 +125,10 @@ div.form-control .selectize-input { padding-bottom: 2px !important; transition: background-color .3s; } -.react-selectize.root-node .simple-value span { +.react-selectize.root-node .simple-value span, +.selectize-control.multi .selectize-input > div { padding-bottom: 2px !important; + padding-left: 5px !important; } .react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values .value-wrapper:not(:first-child):before { content: "or"; diff --git a/data/interfaces/default/newsletter_config.html b/data/interfaces/default/newsletter_config.html index 47f045e0..a08bc130 100644 --- a/data/interfaces/default/newsletter_config.html +++ b/data/interfaces/default/newsletter_config.html @@ -1,7 +1,11 @@ -<%! - from plexpy import helpers -%> % if newsletter: +<%! + from plexpy import helpers, notifiers + + email_notifiers = [n for n in notifiers.get_notifiers() if n['agent_name'] == 'email'] + sorted(email_notifiers, key=lambda k: (k['agent_label'], k['friendly_name'], k['id'])) + email_notifiers = [{'id': 0, 'agent_label': 'New Email Configuration', 'friendly_name': ''}] + email_notifiers +%>