Disabled zoom & fixed indentation

This commit is contained in:
Kostas Drakontidis
2025-05-18 20:48:26 +03:00
parent d2b606a03a
commit 7ce2d111be
8 changed files with 30 additions and 13 deletions
+10 -5
View File
@@ -2,14 +2,17 @@ body {
display: flex;
flex-direction: column;
background-color: #121212;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: normal;
font-style: normal;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
-webkit-user-select: none;
/* Safari */
-ms-user-select: none;
/* IE 10 and IE 11 */
user-select: none;
/* Standard syntax */
}
a:visited {
@@ -27,6 +30,7 @@ a:hover {
margin: 3px;
padding: 5px;
border-radius: 5px;
overflow: auto;
}
.main_div {
@@ -35,6 +39,7 @@ a:hover {
margin: 3px;
padding: 5px;
border-radius: 5px;
overflow: auto;
}
.about_div {
+2 -2
View File
@@ -17,11 +17,11 @@ commit.onmousedown = async function () {
commit.ondblclick = async function () {
if (sql_row[1].cells[0].firstChild.value) {
let req_body = {};
for (let i = 1; i < sql_row[1].cells.length; i++) {
req_body[sql_row[0].cells[i].firstChild.textContent] = sql_row[1].cells[i].firstChild[sql_row[1].cells[i].firstChild.selectedIndex].text;
}
try {
const response = await fetch(`/app/add?element=${sql_row[1].cells[0].firstChild.value}`, {
method: "POST",