1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

stub out process throttle

This commit is contained in:
Luke Pulverenti 2015-02-27 12:43:06 -05:00
parent 377e169961
commit c7aae76f72
5 changed files with 7 additions and 15 deletions

View file

@ -23,14 +23,6 @@
z-index: 998; z-index: 998;
display: none; display: none;
} }
/* Stops safari context menus (supposedly). Can't get this to work. */
body, .card {
-webkit-touch-callout: none !important;
}
body, .card {
-webkit-user-select: none !important;
}
.cardOverlayInner { .cardOverlayInner {
padding: 11px 12px 10px; padding: 11px 12px 10px;

View file

@ -60,7 +60,7 @@
</div> </div>
</div> </div>
<div data-role="popup" id="popupUpload" data-theme="a" data-corners="false"> <div data-role="popup" id="popupUpload" data-theme="a">
<form id="uploadItemImageForm" style="max-width: 100%; margin: 0 1.5em 1.5em;"> <form id="uploadItemImageForm" style="max-width: 100%; margin: 0 1.5em 1.5em;">
<h2>${HeaderAddUpdateImage}</h2> <h2>${HeaderAddUpdateImage}</h2>
<div> <div>
@ -98,8 +98,8 @@
<div data-role="popup" class="popup popupDownload" data-theme="a"> <div data-role="popup" class="popup popupDownload" data-theme="a">
<a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">${ButtonClose}</a> <a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">${ButtonClose}</a>
<div class="ui-bar-b" style="text-align: center; padding: 0 20px;"> <div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
<h3 style="margin: .5em 0;">${HeaderBrowseOnlineImages}</h3> <h3>${HeaderBrowseOnlineImages}</h3>
</div> </div>
<div data-role="content"> <div data-role="content">

View file

@ -454,7 +454,7 @@
<div data-role="popup" id="popupEditPerson" class="popup" data-theme="a"> <div data-role="popup" id="popupEditPerson" class="popup" data-theme="a">
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;"> <div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
<h3 style="margin: .5em;">${HeaderPersonInfo}</h3> <h3>${HeaderPersonInfo}</h3>
</div> </div>
<div data-role="content"> <div data-role="content">
@ -501,7 +501,7 @@
<div data-role="popup" class="popup popupAdvancedRefresh" data-theme="a"> <div data-role="popup" class="popup popupAdvancedRefresh" data-theme="a">
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;"> <div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
<h3 style="margin: .5em;">${HeaderRefreshMetadata}</h3> <h3>${HeaderRefreshMetadata}</h3>
</div> </div>
<div data-role="content"> <div data-role="content">

View file

@ -19,7 +19,7 @@
<div class="listTopPaging"> <div class="listTopPaging">
</div> </div>
</div> </div>
<div id="items" class="itemsContainer"></div> <div id="items" class="itemsContainer" style="text-align:center;"></div>
</div> </div>
<div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true"> <div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true">

View file

@ -18,7 +18,7 @@
function populateLanguages(page, config, languages) { function populateLanguages(page, config, languages) {
var html = '<div data-role="controlgroup" data-corners="false" style="margin:0;">'; var html = '<div data-role="controlgroup" style="margin:0;">';
for (var i = 0, length = languages.length; i < length; i++) { for (var i = 0, length = languages.length; i < length; i++) {