File: remove-max-width-from-keyboard-icons.patch

package info (click to toggle)
novnc 1%3A1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,124 kB
  • sloc: javascript: 22,768; sh: 312; makefile: 74; perl: 11; python: 11
file content (17 lines) | stat: -rw-r--r-- 571 bytes parent folder | download
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 {