diff --git a/module/dev/css/api.css b/module/dev/css/api.css index 5af0574593..e69de29bb2 100644 --- a/module/dev/css/api.css +++ b/module/dev/css/api.css @@ -1 +0,0 @@ -#api { margin-bottom: 10px;} diff --git a/module/dev/css/common.css b/module/dev/css/common.css index b839b0d75e..5715859ac8 100644 --- a/module/dev/css/common.css +++ b/module/dev/css/common.css @@ -1,2 +1,2 @@ -.side .modulegroup {font-weight:bold; padding-top:8px; border-top:1px solid #ddd;} -.side .active {font-weight:bold;} +#sidebar .modulegroup {font-weight:bold; padding-top:8px; border-top:1px solid #ddd;} +#sidebar .active {background-color: #e9f2fb; color: #006af1;} diff --git a/module/dev/view/api.html.php b/module/dev/view/api.html.php index 942d1f72b7..32a5c6bb9c 100644 --- a/module/dev/view/api.html.php +++ b/module/dev/view/api.html.php @@ -1,23 +1,26 @@ -
-
-
dev->moduleList?>
- dev->groupList as $group => $groupName):?> -
- - dev->tableList, $module, $module); - ?> - - - +
+ -
-
- +
+ - +
-
- - - - - - - - - - - - - - - - - - - -
+
createLink($selectedModule, $api['name'], $params, 'json'); ?> -
dev->params?>dev->type?>dev->desc?>
dev->noParams?>
+
+
+ + + + + + + + + + + + + + + + + + +
dev->params?>dev->type?>dev->desc?>
dev->noParams?>
+
+
- + +
diff --git a/module/dev/view/db.html.php b/module/dev/view/db.html.php index 500b1ea07b..7e97cd5db1 100644 --- a/module/dev/view/db.html.php +++ b/module/dev/view/db.html.php @@ -1,49 +1,55 @@ -
-
-
dev->dbList?>
- dev->groupList as $group => $groupName):?> -
- $table):?> - dev->tableList, $subTable, $table); - ?> - - - +
+ +
+ +
+
+
+ + + + + + + + + + + + + + $field):?> + + + + + + + + + + +
dev->fields['id']?>dev->fields['name']?>dev->fields['desc']?>dev->fields['type']?>dev->fields['length']?>dev->fields['null']?>
+
+
+
-
- - - - - - - - - - - - - - - - - - $field):?> - - - - - - - - - - -
dev->fields['id']?>dev->fields['name']?>dev->fields['desc']?>dev->fields['type']?>dev->fields['length']?>dev->fields['null']?>
- -
diff --git a/module/dev/view/header.html.php b/module/dev/view/header.html.php index caa86c9018..10ab1ccf05 100644 --- a/module/dev/view/header.html.php +++ b/module/dev/view/header.html.php @@ -1,11 +1,11 @@ -
- + - + diff --git a/module/editor/css/edit.css b/module/editor/css/edit.css index abc3e8d164..b72138a1a8 100644 --- a/module/editor/css/edit.css +++ b/module/editor/css/edit.css @@ -1 +1,2 @@ -.form-condensed textarea.form-control {min-height: 500px; height: auto;} +body{padding-bottom:0px;background-color:#fff;} +.main-content textarea.form-control {min-height: 450px; height: auto;} diff --git a/module/editor/css/extend.css b/module/editor/css/extend.css index b1ba5a96f8..e019a90efa 100644 --- a/module/editor/css/extend.css +++ b/module/editor/css/extend.css @@ -1,3 +1,5 @@ +body{padding-bottom:0px;background-color:#fff;} .expandable > ul {display: none!important} .collapsable > ul {display: block!important} .tree li:before {margin-right: 4px;} +.tree li>a{display:inline;} diff --git a/module/editor/css/index.css b/module/editor/css/index.css index 6456b31bb7..01cd89494e 100644 --- a/module/editor/css/index.css +++ b/module/editor/css/index.css @@ -3,3 +3,4 @@ table tr > td:first-child {padding-left: 0;} table tr > td:last-child {padding-right: 0;} .modulegroup {font-weight:bold; padding-top:8px; border-top:1px solid #ddd;} td.w-200px a:hover {font-weight:bold;} +.w-350px{width:350px;} diff --git a/module/editor/js/edit.js b/module/editor/js/edit.js index f13ed08ae6..6e853d71c2 100644 --- a/module/editor/js/edit.js +++ b/module/editor/js/edit.js @@ -1,4 +1 @@ -$(function() -{ - -}) +$(function(){ }) diff --git a/module/editor/js/index.js b/module/editor/js/index.js index 96c6236e7f..c2b1ddc184 100644 --- a/module/editor/js/index.js +++ b/module/editor/js/index.js @@ -1,8 +1,12 @@ $(function() { - var showHeight = $('.outer').height() - $('#featurebar').height() - 40; + var showHeight = $('#main').height() - $('#mainMenu').height() - 40; $('#editWin').height(showHeight); $('#extendWin').height(showHeight); - $('.panel a.list-group-item').click(function(){$('.panel a.list-group-item.active').removeClass('active'); $(this).addClass('active')}); + $('.side-col a').click(function() + { + $('.side-col a.active').removeClass('active'); + $(this).addClass('active'); + }); }); diff --git a/module/editor/view/edit.html.php b/module/editor/view/edit.html.php index 1f41024665..979d6ebc44 100644 --- a/module/editor/view/edit.html.php +++ b/module/editor/view/edit.html.php @@ -11,17 +11,17 @@ */ ?> -
'> -
-
- - - editor->filePath;?> - - - +
+
+ + + editor->filePath;?> + +
-
+
+'> +
@@ -36,7 +36,7 @@
- +
editor->fileName;?> @@ -63,15 +63,17 @@
- - - editor->isOverride?> - + + +
+ +
+
-
diff --git a/module/editor/view/extend.html.php b/module/editor/view/extend.html.php index 9120c40b1b..19d11142e1 100644 --- a/module/editor/view/extend.html.php +++ b/module/editor/view/extend.html.php @@ -11,11 +11,11 @@ */ ?> -
-
editor->modules[$module])? $lang->editor->modules[$module] : $module;?>
-
+
+
editor->modules[$module])? $lang->editor->modules[$module] : $module;?>
+
+
-