-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replace with button #240
base: master
Are you sure you want to change the base?
replace with button #240
Conversation
@@ -473,7 +472,7 @@ textarea.form-reply { | |||
} | |||
|
|||
.collapse-video { | |||
left: 30px; | |||
left: calc(-100vw); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please explain what that does?
/* on top of everything */ | ||
z-index: 2999; | ||
top: 0; | ||
right: 0; | ||
height: calc(var(--vh, 1vh) * 100); | ||
overflow-x: hidden; | ||
overflow-y: hidden; | ||
|
||
} | ||
.sidenav.invisible { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have .invisible
, so isn't this redundant?
@@ -1154,17 +1153,21 @@ header .collapse:hover { | |||
cursor: pointer; | |||
overflow: hidden; | |||
white-space: pre; | |||
display: block; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this do?
@@ -4170,11 +4170,13 @@ document.getElementById('disconnectbutton').onclick = function(e) { | |||
}; | |||
|
|||
function openNav() { | |||
document.getElementById("sidebarnav").style.width = "250px"; | |||
//document.getElementById("sidebarnav").style.width = "250px"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't leave commented-out code. Why is this being removed?
} | ||
|
||
function closeNav() { | ||
document.getElementById("sidebarnav").style.width = "0"; | ||
//document.getElementById("sidebarnav").style.width = "0"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't leave commented-out code.
// return; | ||
// } else { | ||
// openNav(); | ||
// } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't leave commented-out code.
The html file has now button instead of div, ...
At one place the replacement what not possible (volume with vol on/off + slider)
The aspect and function for the web page with button don't change.