]> git.proxmox.com Git - pve-manager.git/commitdiff
add css fix for chrome >=56
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 3 Mar 2017 09:17:25 +0000 (10:17 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 3 Mar 2017 11:22:38 +0000 (12:22 +0100)
with chrome/chromium version 56, they changed the way how they calculate
height of text in input fields (now it is correct according to the
standard) but extjs up to 6.2.1 has a fix for this in css

this patch reverses the fix in extjs and can be reverted when they
remove the fix upstream

the bug (EXTJS-23628) and the fix are described here:
https://www.sencha.com/forum/showthread.php?335045

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/css/ext6-pve.css

index 083cc42b22416993b8ecd89764e4a0adbb65bbe8..f42e935e6b28a424b4da56e3771fbdb30b4bec78 100644 (file)
@@ -508,3 +508,12 @@ table.osds td:first-of-type {
     font-style: italic;
     font-weight: bold;
 }
+
+/* chrome 56 fix */
+.x-webkit .x-form-text {
+    height: 100% !important;
+}
+
+.x-webkit :not(.x-form-textarea-body) > .x-form-trigger-wrap {
+    height: initial;
+}