Disabled zoom & fixed indentation
This commit is contained in:
+10
-5
@@ -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 {
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user