diff --git a/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.html b/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.html index 278d4b86e..1659e4186 100644 --- a/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.html +++ b/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.html @@ -19,19 +19,67 @@

{{'uploadcertificate.title' | translate}}

{{'uploadcertificate.partnerDomain' | translate}} - + {{ data}} -
- - - + + +
+ + +
+ +
+
+
+ + + + + + + + + + + +
+
+

{{file?.name}}

+
+
@@ -50,4 +98,4 @@

{{'uploadcertificate.title' | translate}}

- + \ No newline at end of file diff --git a/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.scss b/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.scss index 046d7c6cc..ddfc5fed4 100644 --- a/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.scss +++ b/pmp-ui/src/app/features/resources/cert-upload/cert-upload.component.scss @@ -6,7 +6,7 @@ font-size: 12.5px; position: absolute; margin-top: 20px; -} + } .breadcrumb > a { text-decoration: none; @@ -25,7 +25,7 @@ @media (max-width: 768px) { margin-right: 0px !important; margin-left: 0px !important; - } +} } .mat-card-content { margin-top: 5px !important; @@ -42,60 +42,60 @@ &::-webkit-scrollbar { width: 0px; background: transparent; - } - .header { +} +.header { border-bottom: 1px solid #c6c6c6 !important; font-family: "Roboto", sans-serif; font-size: 14px; - .mat-card-header-text { + .mat-card-header-text { margin: 0px; } b { margin-bottom: 5px; color: #c6c6c6; } - } - .content { +} +.content { display: flex; justify-content: space-between; font-family: "Roboto", sans-serif; font-size: 12px; margin-top: 2px; cursor: pointer; - span { + span { display: inline-block; vertical-align: middle; - } } - .content:hover{ +} +.content:hover{ background-color: #FFE6EE; border-radius: 3px; - } +} - @media (max-width: 768px) { +@media (max-width: 768px) { flex-direction: column; - } - .item1 { +} +.item1 { flex: 1; margin: 0px 10px !important; @media (max-width: 768px) { margin-right: 0px !important; margin-left: 0px !important; margin-bottom: 10px !important; - } - - mat-card { + } + + mat-card { height: calc(100% + 3px); - } } - .sub-items { +} +.sub-items { flex-direction: column; .sub-item1, .sub-item2, .sub-item3 { - margin-bottom: 15px; + margin-bottom: 15px; } - } +} } .browseInput { @@ -139,4 +139,105 @@ } .mat-form-field{ padding:10px; +} + +.container { + height: 105px; + padding: 2rem; + border: dashed 1px #FF4081; + background-color: #f1b5c9; + position: relative; + display: flex; + border-radius: 5px; + justify-content: center; + align-items: center; + overflow: hidden; + margin-left: 8px; + margin-top: 10px; +} +.container input { + opacity: 0; + position: absolute; + z-index: 2; + width: 100%; + height: 100%; + top: 0; + left: 0; +} +.container label { + color: #FF4081; + width: 148px; + height: 44px; + border-radius: 5px; + background: #FFFFFF; + padding: 10px; + border: 1px solid #CCCCCC; + /*display: flex;*/ + font-size: 12px; + font-weight: 200; +} +.container h3 { + font-size: 16px; + color: #FF4081; + padding-left: 3px; + padding-top: 7px; + font-weight: 600; +} + +.fileover { + animation: shake 1s; + animation-iteration-count: infinite; +} +.files-list { + margin-top: 1.5rem; +} +.files-list .single-file { + display: flex; + padding: 0.5rem; + justify-content: space-between; + align-items: center; + border: dashed 1px #FF4081; + margin-bottom: 1rem; + flex-grow: 1; + margin-left: 8px; +} +.files-list .single-file .preview { + display: flex; + margin-left: 0.5rem; + cursor: pointer; + align-self: flex-end; +} +.files-list .single-file .delete { + display: flex; + margin-left: 0.5rem; + cursor: pointer; + align-self: flex-end; +} +.files-list .single-file .name { + font-size: 14px; + font-weight: 500; + color: #353f4a; + margin: 0; +} +.files-list .single-file .size { + font-size: 12px; + font-weight: 500; + color: #a4a4a4; + margin: 0; + margin-bottom: 0.25rem; +} +.files-list .single-file .info { + width: 100%; +} + +.preview-heading{ + color: #505050; + font-weight: 600; +} + +.labelfileupload { + font-size: 12px; + font-weight: 500; + margin-left: 8px; + color: rgba(0, 0, 0, 0.54); } \ No newline at end of file