mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-21 22:03:18 -07:00
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:
parent
795d568df2
commit
a942b16419
5 changed files with 5 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -148,7 +148,7 @@ DOCUMENTATION :: END
|
|||
</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>
|
||||
|
|
|
@ -141,7 +141,7 @@ DOCUMENTATION :: END
|
|||
% 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}"
|
||||
|
|
|
@ -236,7 +236,7 @@
|
|||
|
||||
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;
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ DOCUMENTATION :: END
|
|||
<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}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue