You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by gn...@apache.org on 2010/03/04 21:54:39 UTC

svn commit: r919176 - in /felix/trunk/webconsole/src/main/resources/res/ui: config.js configmanager.js

Author: gnodet
Date: Thu Mar  4 20:54:39 2010
New Revision: 919176

URL: http://svn.apache.org/viewvc?rev=919176&view=rev
Log:
[webconsole] fix some styling problems when displaying configurations

Modified:
    felix/trunk/webconsole/src/main/resources/res/ui/config.js
    felix/trunk/webconsole/src/main/resources/res/ui/configmanager.js

Modified: felix/trunk/webconsole/src/main/resources/res/ui/config.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/config.js?rev=919176&r1=919175&r2=919176&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/config.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/config.js Thu Mar  4 20:54:39 2010
@@ -174,8 +174,9 @@
             td( null, { style: { width: "99%" } }, [
                 createElement( "textarea", null, {
                         name: "properties",
-                        style: { height: "50%", width: "99%" }
+                        style: { height: "20em", width: "99%" }
                     }, [ text( propsValue ) ] ),
+                createElement( "br" ),
                 text( i18n.props_enter )
             ])
         ])

Modified: felix/trunk/webconsole/src/main/resources/res/ui/configmanager.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/configmanager.js?rev=919176&r1=919175&r2=919176&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/configmanager.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/configmanager.js Thu Mar  4 20:54:39 2010
@@ -181,8 +181,9 @@
             td( "content", { style: { width: "99%" } }, [
                 createElement( "textarea", null, {
                         name: "properties",
-                        style: { height: "50%", width: "99%" }
+                        style: { height: "20em", width: "99%" }
                     }, [ text( propsValue ) ] ),
+                createElement( "br" ),
                 text( "Enter Name-Value pairs of configuration properties" )
             ])
         ])