diff --git a/data/interfaces/default/css/tautulli.css b/data/interfaces/default/css/tautulli.css index dc982489..ca76687d 100644 --- a/data/interfaces/default/css/tautulli.css +++ b/data/interfaces/default/css/tautulli.css @@ -4092,4 +4092,9 @@ a:hover .overlay-refresh-image:hover { } a[data-tab-destination] { cursor: pointer; +} +.modal-config-section { + margin-top: 10px !important; + padding-top: 10px; + border-top: 1px solid #444; } \ No newline at end of file diff --git a/data/interfaces/default/js/script.js b/data/interfaces/default/js/script.js index 1fae01e3..18b8bb30 100644 --- a/data/interfaces/default/js/script.js +++ b/data/interfaces/default/js/script.js @@ -1,5 +1,5 @@ -function initConfigCheckbox(elem, reverse = false) { - var config = $(elem).closest('div').next(); +function initConfigCheckbox(elem, toggleElem = null, reverse = false) { + var config = toggleElem ? $(toggleElem) : $(elem).closest('div').next(); config.css('overflow', 'hidden'); if ($(elem).is(":checked")) { config.toggle(!reverse); @@ -7,7 +7,7 @@ function initConfigCheckbox(elem, reverse = false) { config.toggle(reverse); } $(elem).click(function () { - var config = $(this).closest('div').next(); + var config = toggleElem ? $(toggleElem) : $(this).closest('div').next(); if ($(this).is(":checked")) { config.slideToggleBool(!reverse); } else { diff --git a/data/interfaces/default/newsletter_config.html b/data/interfaces/default/newsletter_config.html index c0bcaf0f..52d54f78 100644 --- a/data/interfaces/default/newsletter_config.html +++ b/data/interfaces/default/newsletter_config.html @@ -20,7 +20,7 @@
Set the time frame to include in the newsletter. Note: Days uses calendar days (i.e. since midnight).
Optional: Enter a unique ID name to create a static URL to the last sent scheduled newsletter at ${http_root}newsletter/id/<id_name>. Only letters (a-z), numbers (0-9), underscores (_) and hyphens (-) are allowed. Leave blank to disable.
Optional: Enter the filename to use when saving the newsletter (ending with .html). You may use any of the newsletter text parameters. Leave blank for default.
-Enable to save the newsletter file without sending it to any notification agent.
+Enable to save the newsletter HTML file without sending it to any notification agent.