1
0
mirror of synced 2025-12-10 11:48:29 +08:00
Files
tmagic-editor/packages/editor/src/theme/page-bar.scss
2022-03-31 15:37:21 +08:00

40 lines
769 B
SCSS

.m-editor-page-bar {
position: fixed;
bottom: 0;
left: 0;
display: flex;
width: 100%;
height: $--page-bar-height;
line-height: $--page-bar-height;
background-color: #f3f3f3;
color: $--font-color;
border-top: 1px solid $--border-color;
z-index: 2;
overflow: hidden;
.m-editor-page-bar-item {
padding: 0 10px;
cursor: pointer;
border-right: 1px solid $--border-color;
display: flex;
justify-items: center;
align-items: center;
&.active {
background-color: #fff;
cursor: text;
.m-editor-page-bar-menu-icon {
cursor: pointer;
}
}
.m-editor-page-bar-title {
max-width: 150px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}