140 lines
2.2 KiB
Plaintext
140 lines
2.2 KiB
Plaintext
.container {
|
|
padding: 0 14px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
}
|
|
|
|
.editorContainer {
|
|
width: 100%;
|
|
margin: 30px auto 30px auto;
|
|
padding: 20px 40px 40px 40px;
|
|
box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
|
|
overflow-y: scroll;
|
|
max-height: 600px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.editorExternalContainer {
|
|
overflow-y: unset;
|
|
max-height: unset;
|
|
}
|
|
|
|
.titleContainer {
|
|
padding: 5px 0;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.input {
|
|
border: unset !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.titleInput {
|
|
border: unset !important;
|
|
box-shadow: none !important;
|
|
font-size: 18px !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
.input:hover {
|
|
border: unset !important;
|
|
}
|
|
|
|
.footer {
|
|
// position: absolute;
|
|
bottom: 0;
|
|
height: 50px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.contentNumber {
|
|
display: flex;
|
|
min-height: 32px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color: var(--oak-text-color-secondary);
|
|
}
|
|
|
|
.tocContainer {
|
|
padding-top: 28px;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 228px;
|
|
}
|
|
|
|
.tocButton {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 8px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.tocButtonRight {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.tocItem {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
}
|
|
|
|
.highlight {
|
|
background-color: var(--highlight-bg-color);
|
|
transition: all 1s ease;
|
|
}
|
|
|
|
.catalogTitle {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #DDD;
|
|
padding: 6px 6px 10px 6px;
|
|
box-sizing: border-box;
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
cursor: pointer;
|
|
line-height: 28px;
|
|
}
|
|
|
|
.listItem .icon {
|
|
opacity: 0;
|
|
margin-right: 8px;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.listItem:hover .icon {
|
|
opacity: 1;
|
|
}
|
|
|
|
.listItem:hover .tocItem {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.iconFold {
|
|
transform: rotate(-90deg);
|
|
transform-origin: center;
|
|
}
|
|
|
|
.fold {
|
|
display: none;
|
|
} |