diff options
Diffstat (limited to 'sca-cpp/trunk/modules/edit')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html | 7 | ||||
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/graph/graph.js | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html b/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html index 6072624e84..9d63253830 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html +++ b/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html @@ -37,9 +37,9 @@ <br/> <br/> -<div id="newApp" style="visibility: hidden;"> +<div id="newApp" style="visibility: hidden; height: 100%;"> <table style="width: 100%;"> -<tr><th class="thl thr">Create an App</th></tr> +<tr><th id="newAppHeader" class="thl thr" style="border-style: none;">Create an App</th></tr> <tr><td></td></tr> </table> <br/> @@ -58,6 +58,8 @@ <input id="createAppCancelButton" type="button" value="Cancel"/> </td></tr> </table> +<br/> +<br/> </div> </div> @@ -126,6 +128,7 @@ $('createAppButton').onclick = function() { $('appTitle').value = deftitle; $('appCategory').value = defcategory; $('appDescription').value = defdesc; + $('newAppHeader').style.borderStyle = 'solid'; $('newApp').style.visibility = 'visible'; $('appName').focus(); return false; diff --git a/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js b/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js index c2cdb66e89..fa202d6b86 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js +++ b/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js @@ -305,7 +305,6 @@ if (ui.isIE()) { // component, reference and property titles graph.comptitlewidthdiv = document.createElement('span'); graph.comptitlewidthdiv.style.visibility = 'hidden' - graph.comptitlewidthdiv.style.fontWeight = 'bold' div.appendChild(graph.comptitlewidthdiv); graph.reftitlewidthdiv = document.createElement('span'); @@ -314,6 +313,7 @@ if (ui.isIE()) { graph.proptitlewidthdiv = document.createElement('span'); graph.proptitlewidthdiv.style.visibility = 'hidden' + graph.proptitlewidthdiv.style.fontWeight = 'bold' div.appendChild(graph.proptitlewidthdiv); return vmlg; |