mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
99 lines
1.8 KiB
SCSS
99 lines
1.8 KiB
SCSS
@import '../../styles/mixins';
|
|
|
|
.aca-page-layout {
|
|
@include flex-column;
|
|
|
|
.aca-content-header {
|
|
background: var(--theme-page-layout-header-background-color);
|
|
height: 96px;
|
|
padding: 0 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.aca-page-layout-header {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: auto;
|
|
width: 100%;
|
|
|
|
.adf-breadcrumb-item {
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
letter-spacing: 0.15px;
|
|
}
|
|
|
|
.aca-toolbar-action {
|
|
.app-toolbar-menu {
|
|
.mat-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 6px;
|
|
height: 32px;
|
|
background: var(--theme-app-toolbar-button-background-color);
|
|
color: var(--theme-selected-text-color);
|
|
line-height: 32px;
|
|
|
|
.mat-button-wrapper {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.mat-flat-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 6px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
|
|
.mat-button-wrapper {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
display: block;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
max-width: 350px;
|
|
width: 350px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
[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));
|
|
}
|
|
}
|