Add quick notifications prototype

This commit is contained in:
Skia
2017-01-07 15:07:28 +01:00
parent 9d1eaed625
commit 0aef7656b8
5 changed files with 53 additions and 0 deletions

View File

@ -35,6 +35,9 @@ $( function() {
popup.html('<iframe src="/file/popup" width="100%" height="95%"></iframe><div id="file_id" value="null" />');
popup.dialog({title: $(this).text()}).dialog( "open" );
});
$("#quick_notif li").click(function () {
$(this).hide();
})
} );
function display_notif() {

View File

@ -122,6 +122,15 @@ nav a:hover {
}
/*--------------------------------CONTENT------------------------------*/
#quick_notif {
width: 90%;
margin: 0px auto;
list-style-type: none;
background: lightblue;
}
#quick_notif li {
padding: 10px;
}
#content {
width: 88%;
margin: 0px auto;