Fix typo related to scroller, fix scrolling

- fixes #2221 by adding `overflow: scroll` to tautulli.css.
- fixes scroller-content typo
This commit is contained in:
Derek Reiff 2024-06-04 18:56:52 -07:00
commit a942b16419
5 changed files with 5 additions and 4 deletions

View file

@ -927,6 +927,7 @@ a .users-poster-face:hover {
-webkit-flex-grow: 1; -webkit-flex-grow: 1;
flex-grow: 1; flex-grow: 1;
z-index: 1; z-index: 1;
overflow: scroll;
} }
.dashboard-activity-info-scroller.scrollbar-macosx > .scroll-element.scroll-y { .dashboard-activity-info-scroller.scrollbar-macosx > .scroll-element.scroll-y {
left: 10px; left: 10px;

View file

@ -148,7 +148,7 @@ DOCUMENTATION :: END
</div> </div>
<div class="dashboard-activity-info-container"> <div class="dashboard-activity-info-container">
<div class="dashboard-activity-info-scroller scrollbar-macosx"> <div class="dashboard-activity-info-scroller scrollbar-macosx">
<div class="dashboard-activity-info scoller-content"> <div class="dashboard-activity-info scroller-content">
<ul class="list-unstyled dashboard-activity-info-list"> <ul class="list-unstyled dashboard-activity-info-list">
<li class="dashboard-activity-info-item"> <li class="dashboard-activity-info-item">
<div class="sub-heading">Product</div> <div class="sub-heading">Product</div>

View file

@ -141,7 +141,7 @@ DOCUMENTATION :: END
% endif % endif
</div> </div>
<div class="dashboard-stats-info-scroller scrollbar-macosx"> <div class="dashboard-stats-info-scroller scrollbar-macosx">
<div class="dashboard-stats-info scoller-content"> <div class="dashboard-stats-info scroller-content">
<ul class="list-unstyled dashboard-stats-info-list"> <ul class="list-unstyled dashboard-stats-info-list">
% for row in top_stat['rows']: % for row in top_stat['rows']:
<li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${stat_id}" <li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${stat_id}"

View file

@ -236,7 +236,7 @@
function lockScroll(elem) { function lockScroll(elem) {
$(elem).each(function (i, instance) { $(elem).each(function (i, instance) {
var childHeight = $(instance).children('.scoller-content').height(); var childHeight = $(instance).children('.scroller-content').height();
var height = $(instance).height(); var height = $(instance).height();
var scrollHeight = $(instance).get(0).scrollHeight; var scrollHeight = $(instance).get(0).scrollHeight;

View file

@ -52,7 +52,7 @@ DOCUMENTATION :: END
<span class="dashboard-stats-stats-units">${' / '.join(u for u in headers[section_type][1] if u)}</span> <span class="dashboard-stats-stats-units">${' / '.join(u for u in headers[section_type][1] if u)}</span>
</div> </div>
<div class="dashboard-stats-info-scroller scrollbar-macosx"> <div class="dashboard-stats-info-scroller scrollbar-macosx">
<div class="dashboard-stats-info scoller-content"> <div class="dashboard-stats-info scroller-content">
<ul class="list-unstyled dashboard-stats-info-list"> <ul class="list-unstyled dashboard-stats-info-list">
% for section in data[section_type]: % for section in data[section_type]:
<li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${section_type}" <li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${section_type}"