1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Remove max-width from keyboard icons
Otherwise, they don't appear.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2025-04-09
--- novnc-1.6.0.orig/app/styles/base.css
+++ novnc-1.6.0/app/styles/base.css
@@ -481,7 +481,7 @@ html {
.noVNC_panel input:not([type=checkbox]):not([type=radio]) {
margin-left: 6px;
/* Prevent inputs in panels from being too wide */
- max-width: calc(100% - 6px - var(--input-xpadding) * 2);
+ /* max-width: calc(100% - 6px - var(--input-xpadding) * 2); */
}
.noVNC_panel .noVNC_heading {
|