mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-09-17 14:21:14 +00:00
85 lines
1.5 KiB
SCSS
85 lines
1.5 KiB
SCSS
@import '../../styles/mixins';
|
|
|
|
.aca-page-layout {
|
|
@include flex-column;
|
|
|
|
.aca-content-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
.aca-content-header {
|
|
border-left: none;
|
|
border-right: none;
|
|
background: var(--theme-page-layout-header-background-color);
|
|
height: 96px;
|
|
padding: 0 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.aca-menu-icon {
|
|
cursor: pointer;
|
|
transform: scale(1.1);
|
|
padding: 32px 12px 32px 0;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.aca-page-layout-header {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: auto;
|
|
width: 100%;
|
|
|
|
.adf-breadcrumb-item {
|
|
font-size: 20px !important;
|
|
font-weight: 400 !important;
|
|
letter-spacing: 0.15px !important;
|
|
}
|
|
}
|
|
|
|
.aca-page-layout-content {
|
|
@include flex-row;
|
|
}
|
|
|
|
.aca-page-layout-error {
|
|
@include flex-row;
|
|
}
|
|
|
|
.main-content {
|
|
@include flex-column;
|
|
}
|
|
|
|
.scrollable {
|
|
overflow: auto !important;
|
|
|
|
.main-content {
|
|
overflow: auto !important;
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
display: block;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
max-width: 350px;
|
|
width: 350px;
|
|
}
|
|
}
|
|
|
|
[dir='rtl'] .aca-page-layout {
|
|
.main-content {
|
|
border-left: 1px solid var(--theme-border-color, rgba(0, 0, 0, 0.07));
|
|
}
|
|
}
|
|
|
|
[dir='ltr'] .aca-page-layout {
|
|
.main-content {
|
|
border-right: 1px solid var(--theme-border-color, rgba(0, 0, 0, 0.07));
|
|
}
|
|
}
|