[ACS-9052] manage versions close button is too low (#10466)

* [ci:force] - Fixed lint

* [ACS-9052] Fixed close button in version manager position

* [ACS-9052] Reverted unwanted changes

---------

Co-authored-by: VitoAlbano <vito.albano.123@gmail.com>
This commit is contained in:
AleksanderSklorz 2024-12-06 16:03:00 +01:00 committed by Vito Albano
parent 4e00a74ec5
commit 77cca45b7e
2 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,8 @@
*/ */
.adf-new-version-uploader-dialog { .adf-new-version-uploader-dialog {
display: block;
&-list { &-list {
height: 400px; height: 400px;
} }
@ -50,6 +52,7 @@
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
color: var(--adf-theme-foreground-text-color-054); color: var(--adf-theme-foreground-text-color-054);
-webkit-font-smoothing: antialiased;
button { button {
text-transform: uppercase; text-transform: uppercase;

View File

@ -40,7 +40,10 @@ import { VersionListComponent } from '../version-manager/version-list.component'
], ],
templateUrl: './new-version-uploader.dialog.html', templateUrl: './new-version-uploader.dialog.html',
styleUrls: ['./new-version-uploader.dialog.scss'], styleUrls: ['./new-version-uploader.dialog.scss'],
encapsulation: ViewEncapsulation.None encapsulation: ViewEncapsulation.None,
host: {
class: 'adf-new-version-uploader-dialog'
}
}) })
export class NewVersionUploaderDialogComponent implements OnInit { export class NewVersionUploaderDialogComponent implements OnInit {
/** /**