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
|
<div
|
||||||
class="adf-cloud-form-content"
|
class="adf-cloud-form-content"
|
||||||
[class.adf-cloud-form-content-standalone-fullscreen]="displayMode === 'standalone' && displayConfiguration?.options?.fullscreen"
|
[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"
|
[cdkTrapFocus]="displayConfiguration?.options?.trapFocus"
|
||||||
cdkTrapFocusAutoCapture>
|
cdkTrapFocusAutoCapture>
|
||||||
<adf-toolbar class="adf-cloud-form-toolbar" *ngIf="displayConfiguration?.options?.displayToolbar">
|
<adf-toolbar class="adf-cloud-form-toolbar" *ngIf="displayConfiguration?.options?.displayToolbar">
|
||||||
|
|||||||
@@ -10,11 +10,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.adf-cloud-form {
|
.adf-cloud-form {
|
||||||
|
&-content {
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
&-content-standalone-fullscreen {
|
&-content-standalone-fullscreen {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-content-toolbar {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&-container {
|
&-container {
|
||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
|
|
||||||
@@ -45,11 +53,19 @@
|
|||||||
max-width: 1366px;
|
max-width: 1366px;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: 40px auto;
|
margin: 40px auto;
|
||||||
|
padding-bottom: 40px;
|
||||||
|
border-radius: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-inline-container {
|
&-inline-container {
|
||||||
@extend .adf-full-screen;
|
@extend .adf-full-screen;
|
||||||
|
|
||||||
|
.adf-cloud-form-content {
|
||||||
|
padding-top: 40px;
|
||||||
|
padding-bottom: 40px;
|
||||||
|
border-radius: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-toolbar ::ng-deep {
|
&-toolbar ::ng-deep {
|
||||||
@@ -87,7 +103,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&-content-card {
|
&-content-card {
|
||||||
padding-bottom: 2em;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
position: static;
|
position: static;
|
||||||
height: 70%;
|
height: 70%;
|
||||||
|
|||||||
Reference in New Issue
Block a user