[Libreoffice-commits] .: 2 commits - bug/bug bug/bug.xhtml

Loic Dachary loic at kemper.freedesktop.org
Wed Sep 21 03:47:09 PDT 2011


 bug/bug.xhtml   |    6 ++++++
 bug/bug/bug.css |    2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 644b4e15d434a26d4c860aa7dc8f7a21c43c596d
Author: Loic Dachary <loic at dachary.org>
Date:   Wed Sep 21 12:47:01 2011 +0200

    flag firefox version < 3 and opera version < 11 as unsupported

diff --git a/bug/bug.xhtml b/bug/bug.xhtml
index 3a0f6cb..ad51d3f 100644
--- a/bug/bug.xhtml
+++ b/bug/bug.xhtml
@@ -183,6 +183,12 @@
           $('.version').text(window.navigator.userAgent);
         } catch(e) {
         }
+        if($.browser.mozilla && parseInt($.browser.version) < 3) {
+          unsupported = true;
+        }          
+        if($.browser.opera && parseInt($.browser.version) < 11) {
+          unsupported = true;
+        }          
         if(unsupported) {
           $('.unsupported').show();
           $('.nojavascript').hide();
commit 78ff4936b4df4f147505114df6440da663303a3f
Author: Loic Dachary <loic at dachary.org>
Date:   Wed Sep 21 12:24:04 2011 +0200

    move the "Sign in" button up to not overflow the enclosing box

diff --git a/bug/bug/bug.css b/bug/bug/bug.css
index 1f96154..77e1077 100644
--- a/bug/bug/bug.css
+++ b/bug/bug/bug.css
@@ -244,7 +244,7 @@ body {
 }
 
 .signin .go {
-    margin: 20px 15px 10px auto;
+    margin: 10px 15px 10px auto;
     background: url('images/signin.png') no-repeat;
     width: 163px;
     height: 49px;


More information about the Libreoffice-commits mailing list