Skip to content

Commit

Permalink
SEE MORE DETAILS IN UPDATELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Bosn committed Feb 12, 2014
1 parent 2e86acd commit e73dfcf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### rap v0.8 ###
* [改进] 改进编辑状态下的样式 2014-02-12
* [BUG] 修复新版CSS导致模块不能删除的问题 2014-02-12
* [功能] 增加新建项目默认模块、请求和参数 2014-02-12
* [功能] 增加jQuery/Kissy插件,更好的使用RAP MOCK 2014-01-14
* [BUG] 修复JSON导入最外层为数组时失效的问题 2014-01-14
Expand Down
9 changes: 5 additions & 4 deletions WebContent/stat/css/myWorkspace.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ body {
background-color: #F2F2F2;
border: 1px solid #DDD;
border-radius: 0 0 12px 12px;
padding-top: 20px;
}

.tree-m {
Expand Down Expand Up @@ -550,10 +551,10 @@ body {
backbround-color: #e5e4f2;
}

.edit-input {
border: none;
border-bottom: 1px solid gray;
background-color: #E6E6E6;
.td-param .edit-input {
background: none;
margin:0;
font-style:italic;
}

.item {
Expand Down
4 changes: 2 additions & 2 deletions WebContent/stat/js/core/rap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2550,11 +2550,11 @@ var rap = rap || {};
*/
function setEmptyView(isEmpty, moduleId) {
if (isEmpty) {
b.show("div-empty-hint");
//b.show("div-empty-hint");
b.hide("div-add-p");
_curModuleId = -1;
} else {
b.hide("div-empty-hint");
//b.hide("div-empty-hint");
b.show("div-add-p");
_curModuleId = moduleId;
}
Expand Down
1 change: 0 additions & 1 deletion WebContent/workspace/myWorkspace.vm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
</div>
<div id="div-debug"></div>
<div id="div-mt-list" class="clearfix"></div>
<div id="div-empty-hint" style="display: none">请点击“启用编辑”,然后右上角+号添加第一个模块哦!!!</div>
<div id="div-add-p" style="display: none"><a href="#" class="btn" onclick="ws.addP(); return false;">新增页面</a></div>
</div>
<div id="div-w">
Expand Down

0 comments on commit e73dfcf

Please sign in to comment.