fix empty favorites view alignement
This commit is contained in:
parent
52316a4155
commit
c812e5b0f8
22
css/main.css
22
css/main.css
@ -25,7 +25,7 @@
|
||||
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
||||
|
||||
#volumeslider{
|
||||
width: 150px;
|
||||
width: 200px;
|
||||
display: inline-block;
|
||||
margin-top: 15px;
|
||||
margin-left: 5px;
|
||||
@ -93,6 +93,10 @@
|
||||
}
|
||||
|
||||
/* fit app list view heights */
|
||||
#content {
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.app-files #app-content>.viewcontainer {
|
||||
min-height: 0%;
|
||||
}
|
||||
@ -842,3 +846,19 @@ html.ie8 #controls .button.new {
|
||||
#filestable tbody tr.canDrop {
|
||||
background-color: rgba(255, 255, 140, 1);
|
||||
}
|
||||
|
||||
#app-content {
|
||||
z-index: 500;
|
||||
background-color: var(--color-main-background);
|
||||
position: relative;
|
||||
flex-basis: 100vw;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
#content {
|
||||
z-index: 500;
|
||||
background-color: var(--color-main-background);
|
||||
position: relative;
|
||||
flex-basis: 100vw;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
@ -116,6 +116,7 @@ $(function(){
|
||||
scheduled = true;
|
||||
var stationid = $('#player').attr('data-id');
|
||||
req = $.get('https://onny.project-insanity.org/getmetadata/'+stationid, function(data) {
|
||||
if (data.hasOwnProperty('metadata')) {
|
||||
var metadata = data['metadata'].toString();
|
||||
if (metadata != $("#station_metadata").text()) {
|
||||
$("#station_metadata").html(metadata);
|
||||
@ -125,6 +126,9 @@ $(function(){
|
||||
};
|
||||
};
|
||||
setTimeout(function(){schedule_get_metadata(stationid);}, 10000);
|
||||
} else {
|
||||
scheduled = false;
|
||||
};
|
||||
}).fail(function(){
|
||||
scheduled = false;
|
||||
});
|
||||
@ -333,10 +337,13 @@ $(function(){
|
||||
};
|
||||
};
|
||||
|
||||
OC.Plugins.register('OCA.Search', {
|
||||
/*OC.Plugins.register('OCA.Search.Core', {
|
||||
attach: function(search) {
|
||||
search.setFilter('radio', mySearch);
|
||||
}
|
||||
});*/
|
||||
OC.Plugins.attach('OCA.Search.Core', function(search) {
|
||||
search.setFilter('radio', mySearch);
|
||||
});
|
||||
|
||||
$('#volumeslider').slider({
|
||||
|
@ -1,6 +1,8 @@
|
||||
<?php
|
||||
style('radio', 'main');
|
||||
script('radio', 'main');
|
||||
OC_Util::addScript('search', 'search', true);
|
||||
OC_Util::addScript('search', 'searchprovider');
|
||||
?>
|
||||
|
||||
<div id="content" class="app-files" role="main">
|
||||
|
Loading…
Reference in New Issue
Block a user