You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2013/01/12 21:59:32 UTC

svn commit: r1432511 - in /felix/trunk/webconsole/src/main/resources: res/ui/webconsole.css templates/main_header.html

Author: fmeschbe
Date: Sat Jan 12 20:59:31 2013
New Revision: 1432511

URL: http://svn.apache.org/viewvc?rev=1432511&view=rev
Log:
FELIX-3841 CSS issues in IE with Web Console menus 

Prevent the caret on the top-level menu from being displayed. This caret
is actually confusing and causes IE9 display to break.
Also we don't set the submenu icon pointing south; the default sounds
correct for now.

Modified:
    felix/trunk/webconsole/src/main/resources/res/ui/webconsole.css
    felix/trunk/webconsole/src/main/resources/templates/main_header.html

Modified: felix/trunk/webconsole/src/main/resources/res/ui/webconsole.css
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/webconsole.css?rev=1432511&r1=1432510&r2=1432511&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/webconsole.css (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/webconsole.css Sat Jan 12 20:59:31 2013
@@ -70,13 +70,20 @@
 #navmenu {
      width: auto;
 }
+
 #navmenu li.ui-menu-item {
      width: auto;
 }
+
 #navmenu li.navMenuItem-0 {
     display: inline-block;
 }
 
+/* Don't display caret on top-level menu (FELIX-3841) */
+#navmenu li.navMenuItem-0 > a > span {
+    display: none;
+}
+
 /* CENTRAL CONTENT AREA STYLING */
 #content, .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-size: 8pt }
 

Modified: felix/trunk/webconsole/src/main/resources/templates/main_header.html
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/templates/main_header.html?rev=1432511&r1=1432510&r2=1432511&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/templates/main_header.html [UTF-8] (original)
+++ felix/trunk/webconsole/src/main/resources/templates/main_header.html [UTF-8] Sat Jan 12 20:59:31 2013
@@ -31,8 +31,7 @@
             $( '#navmenu' ).menu({ 
                 position: {
                     my: "left top",
-                    at: "left bottom",
-                    submenu: "ui-icon-carat-1-s"
+                    at: "left bottom"
                 } 
             });
         });