Skip to content

Commit

Permalink
Added horizontal scrolling to all report pages (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
meister-eder authored May 21, 2024
1 parent c8f24e2 commit 8bb1d7a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/breakdown_report.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>Breakdown Report</h2>

<table style="border: 1px solid black; padding: 1px;" cellpadding="5" cellspacing="5">
Expand Down
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.PlaybackReporting/Pages/custom_query.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
data-controller="__plugin/custom_query.js">

<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>Custom Query Report</h2>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/duration_histogram_report.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>Playback Session Duration Report</h2>

<table style="border: 1px solid black; padding: 1px;" cellpadding="5" cellspacing="5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/hourly_usage_report.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>Usage Report</h2>

<table style="border: 1px solid black; padding: 1px;" cellpadding="5" cellspacing="5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/playback_report_settings.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>Playback Report Settings</h2>
<h3>
<strong>Data Retention</strong>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/user_playback_report.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>User Playback Report</h2>

<table style="border: 1px solid black; padding: 1px;" cellpadding="5" cellspacing="5">
Expand Down
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.PlaybackReporting/Pages/user_report.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
data-require="emby-button,emby-select,emby-checkbox"
data-controller="__plugin/user_report.js">
<div data-role="content">
<div class="content-primary">
<div class="content-primary" style="overflow-x: scroll;">
<h2>User Report</h2>

<table style="border: 1px solid black; padding: 1px;" cellpadding="5" cellspacing="5">
Expand Down

0 comments on commit 8bb1d7a

Please sign in to comment.