40 lines
769 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|