mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[AAE-37563] Fix for extra padding on top of fullscreen toolbar (#11225)
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
<div
|
||||
class="adf-cloud-form-content"
|
||||
[class.adf-cloud-form-content-standalone-fullscreen]="displayMode === 'standalone' && displayConfiguration?.options?.fullscreen"
|
||||
[class.adf-cloud-form-content-toolbar]="!!displayConfiguration?.options?.displayToolbar"
|
||||
[cdkTrapFocus]="displayConfiguration?.options?.trapFocus"
|
||||
cdkTrapFocusAutoCapture>
|
||||
<adf-toolbar class="adf-cloud-form-toolbar" *ngIf="displayConfiguration?.options?.displayToolbar">
|
||||
|
||||
@@ -10,11 +10,19 @@
|
||||
}
|
||||
|
||||
.adf-cloud-form {
|
||||
&-content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
&-content-standalone-fullscreen {
|
||||
background-color: transparent;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
&-content-toolbar {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
&-container {
|
||||
border-radius: 14px;
|
||||
|
||||
@@ -45,11 +53,19 @@
|
||||
max-width: 1366px;
|
||||
height: auto;
|
||||
margin: 40px auto;
|
||||
padding-bottom: 40px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
&-inline-container {
|
||||
@extend .adf-full-screen;
|
||||
|
||||
.adf-cloud-form-content {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
&-toolbar ::ng-deep {
|
||||
@@ -87,7 +103,6 @@
|
||||
}
|
||||
|
||||
&-content-card {
|
||||
padding-bottom: 2em;
|
||||
overflow-y: auto;
|
||||
position: static;
|
||||
height: 70%;
|
||||
|
||||
Reference in New Issue
Block a user