Merge branch 'master' into kevin-prototype
This commit is contained in:
@@ -21,7 +21,7 @@ $friends = json_decode($_POST["friends"]);
|
||||
foreach($friends as $i => $friend) {
|
||||
$friendshipStatus = getFriendshipStatus($friend->userID);
|
||||
?>
|
||||
<li class='friend-item <?= $extra ?>'>
|
||||
<li class='friend-item'>
|
||||
<form action='<?= $action ?>' method='<?= $actionType ?>'>
|
||||
<button type='submit'
|
||||
name='username'
|
||||
|
||||
@@ -60,7 +60,6 @@ function adminSearch() {
|
||||
"API/adminSearchUsers.php",
|
||||
$("#admin-searchform").serialize()
|
||||
).done(function (data) {
|
||||
console.log(data);
|
||||
$("#usertable").html(data);
|
||||
})
|
||||
}
|
||||
|
||||
@@ -54,16 +54,25 @@ function addMessages(messages) {
|
||||
type = "chat-message-other";
|
||||
}
|
||||
if (i == 0) {
|
||||
if (thisDate > previousDate) {
|
||||
previousDate = thisDate;
|
||||
messagesText += '\
|
||||
<div class="day-message"> \
|
||||
<div class="day-message-content">\
|
||||
' + days[thisDate.getDay()] + " " + thisDate.getDate() + " " + months[thisDate.getMonth()] + " " + thisDate.getFullYear() + '\
|
||||
</div> \
|
||||
</div>';
|
||||
}
|
||||
messagesText += '<div class="chat-message"><div class="' + type + '">';
|
||||
} else if (type != previousType || thisTime != previousTime || thisDate > previousDate) {
|
||||
messagesText += '<div class="chat-time">\
|
||||
' + thisTime + '\
|
||||
</div></div></div>';
|
||||
|
||||
previousDate = thisDate;
|
||||
previousTime = thisTime;
|
||||
previousType = type;
|
||||
if (thisDate > previousDate) {
|
||||
previousDate = thisDate;
|
||||
messagesText += '\
|
||||
<div class="day-message"> \
|
||||
<div class="day-message-content">\
|
||||
|
||||
@@ -48,9 +48,6 @@ function placeFriendButtons() {
|
||||
text2 = "Weiger";
|
||||
icon2 = "fa-times";
|
||||
break;
|
||||
default:
|
||||
console.log(friendshipStatus);
|
||||
break;
|
||||
}
|
||||
|
||||
$buttonContainer.append(
|
||||
|
||||
@@ -1,25 +1,37 @@
|
||||
$(document).ready(function() {
|
||||
// Toggle menu
|
||||
$("#own-profile-picture, #open-notifications").click(function() {
|
||||
if ($("#notification-center").css('right') == "-256px") {
|
||||
// Make the menu visible and move the content to the left.
|
||||
$("#chat-history").width("calc(100% - 587px)");
|
||||
$(".modal").width("calc(100% - 512px)");
|
||||
$(".content").css("margin-right", "256px");
|
||||
$("#notification-center").css("right", "0px");
|
||||
if ($("#notification-center").css('display') == "none") {
|
||||
// Make the menu visible and move the content to the left.
|
||||
$(".modal").width("calc(100% - 512px)");
|
||||
$(".content").css("margin-right", "256px");
|
||||
$("#notification-center").css("right", "0px");
|
||||
$("#notification-center").css("display", "block");
|
||||
$("#contact-menu").css("display", "block");
|
||||
|
||||
// Add cookie so the menu stays open on other pages
|
||||
document.cookie = "menu=open; path=/";
|
||||
} else {
|
||||
// Make the menu invisible and move the content to the right.
|
||||
$("#chat-history").width("calc(100% - 331px)");
|
||||
$(".modal").width("calc(100% - 256px)");
|
||||
$(".content").css("margin-right", "0px");
|
||||
$("#notification-center").css("right", "-256px");
|
||||
// Add cookie so the menu stays open on other pages
|
||||
if (window.innerWidth > 1080) {
|
||||
$("#chat-history").width("calc(100% - 587px)");
|
||||
document.cookie = "menu=open; path=/";
|
||||
} else {
|
||||
document.cookie = "menu=closed; path=/";
|
||||
}
|
||||
} else {
|
||||
$(".modal").width("calc(100% - 256px)");
|
||||
$(".content").css("margin-right", "0px");
|
||||
$("#notification-center").css("display", "none");
|
||||
|
||||
// Change menu cookie to close
|
||||
document.cookie = "menu=closed; path=/";
|
||||
}
|
||||
if (window.innerWidth > 1080) {
|
||||
$("#chat-history").width("calc(100% - 331px)");
|
||||
} else {
|
||||
// Make the menu invisible and move the content to the right.
|
||||
$("#contact-menu").css("display", "none");
|
||||
}
|
||||
|
||||
// Change menu cookie to close
|
||||
document.cookie = "menu=closed; path=/";
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
if (getCookie("menu") == "open") {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<body>
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
if(isset($_SESSION["userID"])){
|
||||
header("location: login.php");
|
||||
}
|
||||
|
||||
@@ -144,4 +144,22 @@ body {
|
||||
|
||||
.chat-message-other .chat-time {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
.chat-message-self, .chat-message-other {
|
||||
max-width: 75%;
|
||||
}
|
||||
.chat {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#chat-recent-panel {
|
||||
left: 0;
|
||||
width: 320px;
|
||||
}
|
||||
#chat-history {
|
||||
left: 50%;
|
||||
width: calc(100% - 390px);
|
||||
}
|
||||
}
|
||||
@@ -26,7 +26,8 @@ header {
|
||||
}
|
||||
|
||||
#header-search {
|
||||
padding-left: 42px;
|
||||
margin: 24px 0 24px 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
@@ -49,4 +50,10 @@ header div {
|
||||
|
||||
#open-notifications {
|
||||
padding: 5px 20px 5px 0px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
#header-logo {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -293,4 +293,14 @@ div[data-title]:hover:after {
|
||||
-webkit-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
background: #4CAF50;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
body {
|
||||
font-size: 28px!important;
|
||||
}
|
||||
button {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
left: 0;
|
||||
top: 80px;
|
||||
height: calc(100% - 80px);
|
||||
height: calc(100% - 120px);
|
||||
width: 236px;
|
||||
|
||||
padding: 20px 10px;
|
||||
@@ -86,4 +86,18 @@
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1080px) {
|
||||
#contact-menu, #notification-center {
|
||||
display: none;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
.content {
|
||||
margin-left: 0;
|
||||
}
|
||||
#quick-links i {
|
||||
font-size: 48px!important;
|
||||
}
|
||||
}
|
||||
47
website/public/styles/mobilefriendly.css
Normal file
47
website/public/styles/mobilefriendly.css
Normal file
@@ -0,0 +1,47 @@
|
||||
/* MAIN */
|
||||
body {
|
||||
font-size: 28px!important;
|
||||
}
|
||||
button {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
/* HEADER */
|
||||
#header-logo {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* PROFILE */
|
||||
.post-box {
|
||||
width: calc(100% - 65px);
|
||||
}
|
||||
|
||||
/* MENU */
|
||||
#contact-menu, #notification-center {
|
||||
display: none;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
.content {
|
||||
margin-left: 0;
|
||||
}
|
||||
#quick-links i {
|
||||
font-size: 48px!important;
|
||||
}
|
||||
|
||||
/* CHAT */
|
||||
.chat-message-self, .chat-message-other {
|
||||
max-width: 75%;
|
||||
}
|
||||
.chat {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#chat-recent-panel {
|
||||
left: 0;
|
||||
width: 320px;
|
||||
}
|
||||
#chat-history {
|
||||
left: 50%;
|
||||
width: calc(100% - 390px);
|
||||
}
|
||||
@@ -116,7 +116,7 @@ div.posts .post form textarea.newpost {
|
||||
}
|
||||
|
||||
/* mobile */
|
||||
@media only screen and (max-width: 1000px) {
|
||||
@media only screen and (max-width: 1080px) {
|
||||
.post-box {
|
||||
width: calc(100% - 65px);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user