diff --git a/Jellyfin.Plugin.MediaCleaner/Pages/configuration.html b/Jellyfin.Plugin.MediaCleaner/Pages/configuration.html index 7100e76..3025a6a 100644 --- a/Jellyfin.Plugin.MediaCleaner/Pages/configuration.html +++ b/Jellyfin.Plugin.MediaCleaner/Pages/configuration.html @@ -4,57 +4,63 @@

Media Cleaner Configuration

-
- - -
The api key used by your radarr instance
+ +

Management Configuration

+ +
+
+ + +
The api key used by your radarr instance
+
+
+ + +
The address and port of your radarr instance.
+
+
+ + +
-
- - -
The address and port of your radarr instance.
+
+
+ + +
The api key used by your sonarr instance
+
+
+ + +
The address and port of your sonarr instance.
+
+
+ + +
-
- -
- +

General Settings

+
+
+ + +
How many days to wait before marking files as stale
+
-
- - -
The api key used by your sonarr instance
-
- -
- - -
The address and port of your sonarr instance.
-
- -
- -
- - -
- - -
How many days to wait before marking files as stale
-
- -
- +
+ +
diff --git a/Jellyfin.Plugin.MediaCleaner/Pages/global.css b/Jellyfin.Plugin.MediaCleaner/Pages/global.css index b6e3bbc..a56355e 100644 --- a/Jellyfin.Plugin.MediaCleaner/Pages/global.css +++ b/Jellyfin.Plugin.MediaCleaner/Pages/global.css @@ -1,3 +1,19 @@ +.content-primary > * { + box-sizing: border-box; +} + +.inlineContainer { + display: inline-flex; + margin-bottom: 1.8em; + flex-direction: column; + /* Would be nice to figure out why 50% doesn't work. */ + width: 49%; +} + +.inlineContainer > * { + padding: 0 0.5rem; +} + table { border: 1px solid; border-collapse: collapse; @@ -33,10 +49,15 @@ td, th { .validation { border: 1px solid; border-radius: 0.25rem; + margin-top: 1rem; padding: 1rem; opacity: 1; } +.max-width{ + width: 100%; +} + .medium-width { width: 50%; }