[Libreoffice-commits] online.git: loleaflet/css

Pranam Lashkari (via logerrit) logerrit at kemper.freedesktop.org
Fri Dec 13 10:56:25 UTC 2019


 loleaflet/css/vex.css |   14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

New commits:
commit d249e6a7137c1f4e9b33f1c520ada1f5a25eb1dd
Author:     Pranam Lashkari <lpranam at collabora.com>
AuthorDate: Thu Dec 12 05:23:47 2019 +0530
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Fri Dec 13 11:56:07 2019 +0100

    Resolved: Keyboard shortcut help window won't scroll
    
    Help usually don't fit in the resulting popup window,
    but wasn't possible to scroll.
    
    Change-Id: Iff14620730ba9cee6e679e4b6b69e84342019cd1
    Reviewed-on: https://gerrit.libreoffice.org/84998
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/loleaflet/css/vex.css b/loleaflet/css/vex.css
index ec9b7a67b..dc7a9d660 100644
--- a/loleaflet/css/vex.css
+++ b/loleaflet/css/vex.css
@@ -37,7 +37,6 @@
 }
 
 .vex.vex-theme-plain{
-	position: relative;
 	z-index: 2001 !important;
 }
 
@@ -48,13 +47,22 @@
 }
 
 .vex-closing {
-    -webkit-animation: vex-fadeout .25s forwards;
-    animation: vex-fadeout .25s forwards;
+	-webkit-animation: vex-fadeout .25s forwards;
+	animation: vex-fadeout .25s forwards;
 }
 .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex
 -theme-plain .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]{
 	width: 95% !important;
 }
 
+.vex {
+	position: fixed;
+	overflow: auto;
+	left: 0;
+	right: 0;
+	top: 0;
+	bottom: 0;
+}
+
 /*mobile*/
 @media (max-width: 767px), (max-device-height: 767px) {
 	.vex-open .loleaflet-user-idle {


More information about the Libreoffice-commits mailing list