Fix max-width of clipboard textarea
It should not be able to "eat" its parent-panel's padding. By setting box-sizing: border-box we can prevent this.
This commit is contained in:
parent
6b2357061e
commit
f0fea1fccd
|
@ -572,6 +572,8 @@ html {
|
|||
}
|
||||
#noVNC_clipboard_text {
|
||||
width: 500px;
|
||||
|
||||
box-sizing: border-box;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue