mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed issue with toasts comming in the background
This commit is contained in:
@@ -440,6 +440,10 @@ footer{
|
||||
z-index: 999999 !important;
|
||||
}
|
||||
|
||||
#toast-container {
|
||||
z-index: 999999 !important;
|
||||
}
|
||||
|
||||
#user_password {
|
||||
width: 50% !important;
|
||||
}
|
||||
|
||||
2
server/public/assets/dist/embed.min.js
vendored
2
server/public/assets/dist/embed.min.js
vendored
File diff suppressed because one or more lines are too long
2
server/public/assets/dist/main.min.js
vendored
2
server/public/assets/dist/main.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -119,7 +119,7 @@ var Admin = {
|
||||
});
|
||||
}
|
||||
$("#password").val("");
|
||||
$("#password").attr("placeholder", "Change channel password");
|
||||
$("#password").attr("placeholder", "Change admin password");
|
||||
$(".user-password-li").removeClass("hide");
|
||||
if($(".password_protected").prop("checked")) {
|
||||
$(".change_user_pass").removeClass("hide");
|
||||
@@ -235,7 +235,7 @@ var Admin = {
|
||||
$('ul.playlist-tabs').tabs('select_tab', $(".playlist-tabs-loggedIn li a.active").attr("href").substring(1));
|
||||
}
|
||||
$("#admin-lock").removeClass("clickable");
|
||||
$("#password").attr("placeholder", "Enter channel password");
|
||||
$("#password").attr("placeholder", "Enter admin password");
|
||||
//$("#top-button").removeClass("top-button-with-tabs");
|
||||
},
|
||||
|
||||
@@ -274,7 +274,7 @@ var Admin = {
|
||||
$(".playlist-tabs-loggedIn").removeClass("hide");
|
||||
$(".playlist-tabs").addClass("hide");
|
||||
}
|
||||
$("#password").attr("placeholder", "Create channel password");
|
||||
$("#password").attr("placeholder", "Create admin password");
|
||||
} else {
|
||||
if($(".password_protected").prop("checked")) {
|
||||
$(".change_user_pass").removeClass("hide");
|
||||
|
||||
@@ -172,7 +172,7 @@ function init(){
|
||||
$('ul.playlist-tabs-loggedIn').tabs();
|
||||
$('ul.chatTabs').tabs();
|
||||
$("#settings").sideNav({
|
||||
menuWidth: 300, // Default is 240
|
||||
menuWidth: 310, // Default is 240
|
||||
edge: side, // Choose the horizontal origin
|
||||
closeOnClick: false // Closes side-nav on <a> clicks, useful for Angular/Meteor
|
||||
});
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<li class="white-bg">
|
||||
<div class="input-field field-settings">
|
||||
<i id="admin-lock" class="material-icons">lock</i>
|
||||
<input placeholder="Enter channel password" id="password" type="password" class="validate" />
|
||||
<input placeholder="Enter admin password" id="password" type="password" class="validate" />
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
@@ -93,7 +93,7 @@
|
||||
</label></div></li>
|
||||
|
||||
<li class="user-password-li hide"><span class="switch-text">
|
||||
User password
|
||||
Channel password
|
||||
</span>
|
||||
<div class="switch"><label>
|
||||
<span class="left-span">No</span>
|
||||
|
||||
Reference in New Issue
Block a user