156 lines
3.2 KiB
CSS
156 lines
3.2 KiB
CSS
.page-create {
|
|
text-align: left;
|
|
}
|
|
.page-create .ui-message {
|
|
margin: 0;
|
|
}
|
|
.page-create-parent {
|
|
margin: 30px 0 -10px 0;
|
|
border-radius: var(--radius);
|
|
/*border: 1px solid var(--color-line-light);*/
|
|
background: var(--color-box-nested);
|
|
line-height: 1.4;
|
|
color: var(--color-text-dim);
|
|
padding: 14px 16px;
|
|
font-size: var(--font-size);
|
|
}
|
|
.page-create-parent strong {
|
|
color: var(--color-text);
|
|
}
|
|
.page-create-items {
|
|
margin: 0 -16px;
|
|
margin-top: var(--padding);
|
|
max-height: 490px;
|
|
overflow-y: auto;
|
|
}
|
|
.page-create-item {
|
|
display: grid;
|
|
width: 100%;
|
|
grid-template-columns: 40px 1fr auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
position: relative;
|
|
color: var(--color-text);
|
|
padding: 16px;
|
|
border-radius: var(--radius);
|
|
}
|
|
.page-create-item:hover, .page-create-item:focus {
|
|
background: var(--color-tree-selected);
|
|
}
|
|
.page-create-item + .page-create-item {
|
|
margin-top: 2px;
|
|
}
|
|
.page-create-item-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.page-create-item-description {
|
|
color: var(--color-text-dim);
|
|
margin-top: 3px;
|
|
}
|
|
.page-create-item-icon {
|
|
position: relative;
|
|
top: -2px;
|
|
left: 4px;
|
|
color: var(--color-text);
|
|
}.pages-sort .ui-box {
|
|
margin: 0;
|
|
}
|
|
.pages-sort content {
|
|
padding-top: 0;
|
|
}
|
|
.pages-sort-item {
|
|
display: grid;
|
|
width: 100%;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 6px;
|
|
align-items: center;
|
|
font-size: var(--font-size);
|
|
height: 46px;
|
|
color: var(--color-text);
|
|
position: relative;
|
|
padding: 0 8px;
|
|
background: var(--color-box);
|
|
border-radius: var(--radius);
|
|
}
|
|
.pages-sort-item i {
|
|
font-size: var(--font-size-l);
|
|
position: relative;
|
|
top: -1px;
|
|
color: var(--color-text-dim);
|
|
}
|
|
.pages-sort-item span {
|
|
padding: 12px 8px;
|
|
}
|
|
.pages-sort-item.is-selected {
|
|
color: var(--color-text-dim);
|
|
}
|
|
.pages-sort-item + .pages-sort-item {
|
|
margin-top: 8px;
|
|
}
|
|
button.pages-sort-item-button {
|
|
height: 48px;
|
|
width: 24px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
button.pages-sort-item-button i {
|
|
font-size: var(--font-size);
|
|
}
|
|
button.pages-sort-item-button.is-handle {
|
|
cursor: move;
|
|
}
|
|
.pages-sort-text {
|
|
margin: 0 0 20px;
|
|
}
|
|
.pages-sort-item-icon {
|
|
position: relative;
|
|
top: 2px;
|
|
color: var(--color-text);
|
|
margin: 0 6px;
|
|
}.page-container {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 2px;
|
|
justify-content: stretch;
|
|
height: calc(100vh - 70px);
|
|
}
|
|
.page-overview {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 80px;
|
|
padding-top: 115px;
|
|
}
|
|
.page-overview-action {
|
|
color: var(--color-text);
|
|
font-size: var(--font-size);
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 35px;
|
|
align-items: center;
|
|
}
|
|
.page-overview-action + .page-overview-action {
|
|
margin-top: var(--padding);
|
|
}
|
|
.page-overview-action-icon {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 90px;
|
|
height: 90px;
|
|
background: var(--color-box);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow-short);
|
|
}
|
|
.page-overview-action-text {
|
|
line-height: 1.3;
|
|
color: var(--color-text-dim);
|
|
}
|
|
.page-overview-action-text strong {
|
|
display: inline-block;
|
|
margin-bottom: 8px;
|
|
color: var(--color-text);
|
|
font-size: var(--font-size-l);
|
|
} |