[Libreoffice-commits] dev-tools.git: help3/xhpeditor

Olivier Hallot (via logerrit) logerrit at kemper.freedesktop.org
Tue Feb 11 22:42:08 UTC 2020


 help3/xhpeditor/index.php     |    2 +-
 help3/xhpeditor/xhpeditor.css |   24 ++++++++++++------------
 2 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 8437e09c7aa00aba51feaa5a51c664e7a1a742bb
Author:     Olivier Hallot <olivier.hallot at libreoffice.org>
AuthorDate: Tue Feb 11 18:45:30 2020 -0300
Commit:     Olivier Hallot <olivier.hallot at libreoffice.org>
CommitDate: Tue Feb 11 23:41:50 2020 +0100

    xhpeditor: improve rendering in small screen
    
    This is work in progress
    
    Change-Id: I8610e810b65593c15cb5da42c470e17c6afc0532
    Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/88479
    Tested-by: Olivier Hallot <olivier.hallot at libreoffice.org>
    Reviewed-by: Olivier Hallot <olivier.hallot at libreoffice.org>

diff --git a/help3/xhpeditor/index.php b/help3/xhpeditor/index.php
index db24e77..312bca9 100644
--- a/help3/xhpeditor/index.php
+++ b/help3/xhpeditor/index.php
@@ -14,7 +14,7 @@ $xhp = $_POST["xhpdoc"];
 <html>
 <head>
 <meta charset="utf-8"/>
-    <title>LibreOffice Documentation XHP Editor</title>
+    <title>LibreOffice XHP Editor</title>
     <link rel="shortcut icon" href="favicon.ico"/>
     <link type="text/css" rel="stylesheet" href="cm/lib/codemirror.css">
     <link type="text/css" rel="stylesheet" href="cm/addon/hint/show-hint.css">
diff --git a/help3/xhpeditor/xhpeditor.css b/help3/xhpeditor/xhpeditor.css
index 2931430..0141d02 100644
--- a/help3/xhpeditor/xhpeditor.css
+++ b/help3/xhpeditor/xhpeditor.css
@@ -23,11 +23,6 @@
     resize: vertical;
     }
 
-.buttonrow{
-    margin-top:5px;
-    margin-left:10px;
-}
-
 /* CSS for the menu (W3Schools) */
 .navbar {
   overflow: hidden;
@@ -110,12 +105,7 @@
     background: Beige;
     border: 1px  solid gray;
 }
-.systembuttons{
-    float:left;
-}
-.applbuttons{
-    float:right;
-}
+
 #renderedpageheader{
     grid-area:renderedpageheader;
     position: sticky;
@@ -132,8 +122,18 @@
     overflow-y:auto;
     background: AliceBlue;
     border:1px solid grey;
+    display:inline-block;
+}
+.buttonrow{
+    margin:5px;
+    display:flow-root;
+}
+.systembuttons{
+    float:left;
+}
+.applbuttons{
+    float:right;
 }
-
 /* Use @supports to sneak these rules past IE */
 @supports (grid-area: auto) {
     @media screen and (min-width: 960px) {


More information about the Libreoffice-commits mailing list