jia000 0fe6e0ed75
release v1.0.0-rc.11 (#138)
* fix(editor): 页面标题不要换行

* docs: 教程与stageCore

* fix(editor): runtime.updateRootConfig可以为空

* fix(editor): 编辑组件是获取parent需要获取到Proxy

* fix(editor): 默认page属性值加上layout

* fix(stage): magic注入时机应当在iframe onload之后

* chore: release v1.0.0-rc.11

* chore: 更新changlog

Co-authored-by: roymondchen <roymondchen@tencent.com>
2022-06-17 17:13:22 +08:00

73 lines
1.2 KiB
SCSS

.m-editor-page-bar {
position: fixed;
bottom: 0;
left: 0;
display: flex;
width: 100%;
height: $--page-bar-height;
line-height: $--page-bar-height;
color: $--font-color;
background-color: #f3f3f3;
border-top: 1px solid $--border-color;
z-index: 2;
overflow: hidden;
&-items {
display: flex;
transition: transform 0.3s;
}
&-item {
padding: 0 10px;
cursor: pointer;
border-right: 1px solid $--border-color;
display: flex;
justify-items: center;
align-items: center;
background-color: #f3f3f3;
white-space: nowrap;
&.active {
background-color: #fff;
cursor: text;
.m-editor-page-bar-menu-icon {
cursor: pointer;
}
}
&-icon {
position: relative;
z-index: 1;
}
&-title {
max-width: 150px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}
.page-bar-popover {
&.el-popper.el-popover {
padding: 10px 0;
}
.menu-item {
cursor: pointer;
transition: all 0.2s ease 0s;
padding: 5px 14px;
.el-button--text,
i {
color: $--font-color;
}
&:hover {
background-color: $--hover-color;
}
}
}