Skip to content

Commit

Permalink
Fix typo related to scroller, fix scrolling
Browse files Browse the repository at this point in the history
- fixes Tautulli#2221 by adding `overflow: scroll` to tautulli.css.
- fixes scroller-content typo
  • Loading branch information
dareiff committed Jun 5, 2024
1 parent 795d568 commit a942b16
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions data/interfaces/default/css/tautulli.css
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,7 @@ a .users-poster-face:hover {
-webkit-flex-grow: 1;
flex-grow: 1;
z-index: 1;
overflow: scroll;
}
.dashboard-activity-info-scroller.scrollbar-macosx > .scroll-element.scroll-y {
left: 10px;
Expand Down
2 changes: 1 addition & 1 deletion data/interfaces/default/current_activity_instance.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
</div>
<div class="dashboard-activity-info-container">
<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">
<li class="dashboard-activity-info-item">
<div class="sub-heading">Product</div>
Expand Down
2 changes: 1 addition & 1 deletion data/interfaces/default/home_stats.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h4>${top_stat['stat_title']}</h4>
% endif
</div>
<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">
% for row in top_stat['rows']:
<li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${stat_id}"
Expand Down
2 changes: 1 addition & 1 deletion data/interfaces/default/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ <h4 class="modal-title">Raw Stream Info: <strong><span id="raw-stream-info-title

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

Expand Down
2 changes: 1 addition & 1 deletion data/interfaces/default/library_stats.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h4>${headers[section_type][0]}</h4>
<span class="dashboard-stats-stats-units">${' / '.join(u for u in headers[section_type][1] if u)}</span>
</div>
<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">
% for section in data[section_type]:
<li class="dashboard-stats-info-item ${'expanded' if loop.index == 0 else ''}" data-stat_id="${section_type}"
Expand Down

0 comments on commit a942b16

Please sign in to comment.