Commit f75869f5 authored by Cantuerk's avatar Cantuerk
Browse files

Merge branch '21caog1bif-master-patch-47158' into 'master'

Update public/style.css, public/ar_main.js

See merge request !193
1 merge request!193Update public/style.css, public/ar_main.js
Pipeline #10945 passed with stage
in 23 seconds
Showing with 15 additions and 5 deletions
+15 -5
......@@ -125,6 +125,19 @@ function closeDynamicMenu() {
dynamicMenu.style.display = "none";
}
function showInfoDialog(message) {
const infoDialog = document.getElementById("info-dialog");
const infoText = document.getElementById("info-text");
infoText.textContent = message; // Nachricht setzen
infoDialog.style.display = "flex";
}
function closeInfoDialog() {
const infoDialog = document.getElementById("info-dialog");
infoDialog.style.display = "none";
}
/* ========================= */
/* MODELL-HANDLING */
/* ========================= */
......
......@@ -249,10 +249,9 @@ button:active {
.control-button {
flex: 0 0 auto;
width: 40px;
height: 40px;
border: none;
border-radius: 5px;
padding: 8px;
background-color: #007BFF;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
......@@ -261,11 +260,9 @@ button:active {
.control-button img {
width: 40px;
height: 40px;
padding: 8px;
object-fit: contain;
}
.control-button:active {
background-color: #0056b3;
transform: scale(0.95);
}
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment