[KARAF-3108] Fix webconsole CSS
Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/d6a9f184 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/d6a9f184 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/d6a9f184 Branch: refs/heads/karaf-3.0.x Commit: d6a9f18447feec2dcd7acbf26ca9d5743b3a3657 Parents: 3b72ac0 Author: Guillaume Nodet <[email protected]> Authored: Thu Jul 10 11:48:02 2014 +0200 Committer: Guillaume Nodet <[email protected]> Committed: Thu Jul 10 17:21:49 2014 +0200 ---------------------------------------------------------------------- .../main/resources/res/karaf/ui/webconsole.css | 30 ++++++++++++++++---- 1 file changed, 24 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/d6a9f184/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css ---------------------------------------------------------------------- diff --git a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css index a31e6bc..03fa9dd 100644 --- a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css +++ b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css @@ -66,6 +66,24 @@ white-space: nowrap; } +/* New Category Based Navigation Tree (FELIX-3769) */ +#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 } @@ -119,16 +137,16 @@ table.nicetable th, table.nicetable td { /* tablesorter styling */ tr .header { - background-image: url(../lib/bg.gif); - background-repeat: no-repeat; - background-position: center right; - cursor: pointer; + background-image: url(../lib/bg.gif) !important; + background-repeat: no-repeat !important; + background-position: center right !important; + cursor: pointer !important; } tr .headerSortUp { - background-image: url(../lib/asc.gif); + background-image: url(../lib/asc.gif) !important; } tr .headerSortDown { - background-image: url(../lib/desc.gif); + background-image: url(../lib/desc.gif) !important; } /* status line */
