Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: scaffold optim #1347

Merged
merged 2 commits into from
Jan 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion react-materials/scaffolds/ice-monitor-dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@

## 效果图

![screenshot](https://img.alicdn.com/tfs/TB1XiHdAmrqK1RjSZK9XXXyypXa-2872-1580.png)
![screenshot](https://img.alicdn.com/tfs/TB1tUgmCAvoK1RjSZFNXXcxMVXa-2872-1580.png)
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@
"categories": [
"行业领域"
],
"screenshot": "https://img.alicdn.com/tfs/TB1XiHdAmrqK1RjSZK9XXXyypXa-2872-1580.png"
"screenshot": "https://img.alicdn.com/tfs/TB1tUgmCAvoK1RjSZFNXXcxMVXa-2872-1580.png"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
left: 0;
right: 0;
z-index: 999;
background: #2f323f;
background: #447eff;
min-width: 1200px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
.header-content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@
> .ice-menu-item {
height: 58px;
line-height: 58px;
font-weight: bold;
font-size: 14px;
color: #666;
}
.ice-menu-item-selected {
border-bottom: 2px solid #447eff;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,26 @@ const asideMenuConfig = [
{
name: '业务概览',
path: '/dashboard',
icon: 'home2',
},
{
name: '数据中心',
path: '/datacenter',
icon: 'cascades',
},
{
name: '流量分析',
path: '/traffic/statistics',
icon: 'cascades',
},
{
name: '用户分析',
path: '/user/statistics',
icon: 'cascades',
},
{
name: '留存与活跃',
path: '/user/activities',
icon: 'cascades',
},
{
name: '反馈',
path: 'https://github.com/alibaba/ice/issues/new',
icon: 'question2',
external: true,
newWindow: true,
},
Expand Down
2 changes: 1 addition & 1 deletion react-materials/scaffolds/ice-reviews-management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@

## 效果图

![screenshot](https://img.alicdn.com/tfs/TB1E4ZfBMDqK1RjSZSyXXaxEVXa-2872-1580.png)
![screenshot](https://img.alicdn.com/tfs/TB1Bq.sCsbpK1RjSZFyXXX_qFXa-2860-1580.png)
4 changes: 2 additions & 2 deletions react-materials/scaffolds/ice-reviews-management/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icedesign/reviews-management-scaffold",
"version": "1.2.2",
"version": "1.2.3",
"description": "该模板适用于用户反馈和评价管理,布局方式采用左侧固定,右侧自适应方式,适合大量数据展示和界面操作",
"author": "ice-admin@alibaba-inc.com",
"homepage": "https://unpkg.com/@icedesign/reviews-management-scaffold@latest/build/index.html",
Expand Down Expand Up @@ -62,7 +62,7 @@
"categories": [
"行业领域"
],
"screenshot": "https://img.alicdn.com/tfs/TB1E4ZfBMDqK1RjSZSyXXaxEVXa-2872-1580.png"
"screenshot": "https://img.alicdn.com/tfs/TB1Bq.sCsbpK1RjSZFyXXX_qFXa-2860-1580.png"
},
"engines": {
"node": ">=8.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.ice-layout {
.ice-layout-aside.custom-aside {
background: #001529;
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
background: #2f323f;
.aside-logo {
height: 62px;
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.5);
display: flex;
align-items: center;
justify-content: center;
background: #062140;
background: #2f323f;
}
.custom-menu {
width: 240px;
height: 100vh;
padding-top: 20px;
border-radius: 6px;
box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
.ice-menu-sub {
background: #000c17;
background: #2c2e39;
}
.ice-menu-item,
.ice-menu-submenu-title {
Expand Down