Strict positioning of panels
The panels were never meant to be positioned relative their container, so make sure they pop up exactly where we want in the viewport, no matter where they are in the structure.
This commit is contained in:
parent
222f3fba08
commit
9fc0e4f6e3
|
@ -148,14 +148,14 @@ html {
|
||||||
/*Bubble contents divs*/
|
/*Bubble contents divs*/
|
||||||
#noVNC_settings {
|
#noVNC_settings {
|
||||||
display:none;
|
display:none;
|
||||||
margin-top:73px;
|
top:73px;
|
||||||
right:20px;
|
right:20px;
|
||||||
position:fixed;
|
position:fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
#noVNC_controls {
|
#noVNC_controls {
|
||||||
display:none;
|
display:none;
|
||||||
margin-top:73px;
|
top:73px;
|
||||||
right:12px;
|
right:12px;
|
||||||
position:fixed;
|
position:fixed;
|
||||||
}
|
}
|
||||||
|
@ -167,7 +167,7 @@ html {
|
||||||
display:none;
|
display:none;
|
||||||
position:fixed;
|
position:fixed;
|
||||||
|
|
||||||
margin-top:73px;
|
top:73px;
|
||||||
right:20px;
|
right:20px;
|
||||||
left:20px;
|
left:20px;
|
||||||
padding:15px;
|
padding:15px;
|
||||||
|
@ -186,7 +186,7 @@ html {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
margin:15px;
|
margin:15px;
|
||||||
margin-top:60px;
|
top:60px;
|
||||||
padding:15px;
|
padding:15px;
|
||||||
width:auto;
|
width:auto;
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ html {
|
||||||
|
|
||||||
#noVNC_xvp {
|
#noVNC_xvp {
|
||||||
display:none;
|
display:none;
|
||||||
margin-top:73px;
|
top:73px;
|
||||||
right:30px;
|
right:30px;
|
||||||
position:fixed;
|
position:fixed;
|
||||||
}
|
}
|
||||||
|
@ -213,7 +213,7 @@ html {
|
||||||
|
|
||||||
#noVNC_clipboard {
|
#noVNC_clipboard {
|
||||||
display:none;
|
display:none;
|
||||||
margin-top:73px;
|
top:73px;
|
||||||
right:30px;
|
right:30px;
|
||||||
position:fixed;
|
position:fixed;
|
||||||
}
|
}
|
||||||
|
@ -321,7 +321,6 @@ html {
|
||||||
.triangle-right {
|
.triangle-right {
|
||||||
position:relative;
|
position:relative;
|
||||||
padding:15px;
|
padding:15px;
|
||||||
margin:1em 0 3em;
|
|
||||||
color:#fff;
|
color:#fff;
|
||||||
background:#fff; /* default background for browsers without gradient support */
|
background:#fff; /* default background for browsers without gradient support */
|
||||||
/* css3 */
|
/* css3 */
|
||||||
|
|
Loading…
Reference in New Issue