Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GeoVistoogsi
AR
Commits
146b9e7d
Commit
146b9e7d
authored
2 months ago
by
Cantuerk
Browse files
Options
Download
Email Patches
Plain Diff
Update public/style.css, public/ar_main.js
parent
04610f55
master
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
public/ar_main.js
+13
-0
public/ar_main.js
public/style.css
+2
-5
public/style.css
with
15 additions
and
5 deletions
+15
-5
public/ar_main.js
+
13
-
0
View file @
146b9e7d
...
...
@@ -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 */
/* ========================= */
...
...
This diff is collapsed.
Click to expand it.
public/style.css
+
2
-
5
View file @
146b9e7d
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets