diff --git a/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.html b/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.html index 69dc6911..a6d28777 100644 --- a/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.html +++ b/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.html @@ -1,6 +1,5 @@ - -
+ >--> + | {{ 'search.fieldProfile' | translate }} | -
-
-
+
+ |
+
+
+
-
- |
- {{ element.name }}
-
-
- {{ getPresence(element, PresenceType.PC) }} /
- {{ getPresence(element, PresenceType.MOBILE) }} /
- {{ getWorkstatus(element) }}
+
+ |
+
+
+ {{ getWorkstatus(element) }}
+
+ {{ element.name }}
+
+ |
{{ 'search.fieldGrade' | translate }}
|
@@ -84,7 +104,7 @@
>
{{ 'search.fieldDeptartment' | translate }}
- |
+ |
|
{{ element.deptName }}
@@ -100,7 +120,7 @@
>
{{ 'search.fieldCompany' | translate }}
-
+ |
|
{{ element.companyName }}
@@ -117,7 +137,7 @@
>
{{ 'search.fieldOfficePhoneNumber' | translate }}
-
+ |
|
{{ element.lineNumber }}
@@ -133,7 +153,7 @@
>
{{ 'search.fieldHandphone' | translate }}
-
+ |
|
{{ element.hpNumber }}
@@ -149,7 +169,7 @@
>
{{ 'search.fieldEmail' | translate }}
-
+ |
|
{{ element.email }}
@@ -165,7 +185,7 @@
>
{{ 'search.fieldResponsibilities' | translate }}
-
+ |
|
{{ element.responsibilities }}
@@ -181,7 +201,7 @@
>
{{ 'search.fieldWorkPlace' | translate }}
-
+ |
|
{{ element.workplace }}
diff --git a/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.scss b/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.scss
index 4435011a..585f6993 100644
--- a/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.scss
+++ b/projects/ucap-webmessenger-ui/src/lib/components/integrated-search.component.scss
@@ -49,33 +49,90 @@
font-size: 13px;
width: 100%;
overflow: hidden;
- td.mat-cell {
- padding: 6px;
- div {
- @include ellipsis(1);
- &.name {
- font-size: 1em;
- font-weight: 600;
- }
- &.status {
- font-size: 0.84em;
+ display: flex;
+ table {
+ table-layout: fixed;
+ width: 100%;
+ th {
+ text-align: center;
+ }
+ td.mat-cell {
+ padding: 6px;
+ position: relative;
+ width: 100px;
+ div {
+ @include ellipsis(1);
+ .name {
+ font-size: 1em;
+ font-weight: 600;
+ }
+ .status {
+ font-size: 0.84em;
+ }
+
+ &.profile {
+ width: 60px;
+ text-overflow: unset;
+ .presence {
+ transform: translateY(-30px);
+ }
+ .thumbnail {
+ &-mask {
+ display: inline-block;
+ width: 40px;
+ height: 40px;
+ border-radius: 50%;
+ overflow: hidden;
+ margin-right: 0;
+ position: relative;
+ img {
+ width: 40px;
+ height: auto;
+ background-color: #efefef;
+ }
+ }
+ }
+ .marker-mobile-state {
+ position: absolute;
+ background-color: #ffffff;
+ width: 20px;
+ height: 20px;
+ border-radius: 50%;
+ bottom: 6px;
+ left: 50px;
+ display: flex;
+ align-items: center;
+ align-content: center;
+ justify-content: center;
+ .mat-icon {
+ font-size: 0.9em;
+ width: 18px;
+ height: 18px;
+ line-height: 18px;
+ min-width: 18px;
+ min-height: 18px;
+ }
+ }
+ }
}
}
}
}
-.thumbnail {
- &-mask {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 12px;
- position: relative;
- img {
- width: 40px;
- height: auto;
- background-color: #efefef;
- }
- }
+.work-status {
+ display: inline-block;
+ justify-content: center;
+ justify-items: center;
+ color: #ffffff;
+ height: 100%;
+ min-width: 32px;
+ margin-right: 4px;
+ border-radius: 24px;
+ flex: 0 0 auto;
+ font-size: 0.8em;
+ text-align: center;
+}
+.mat-paginator-container {
+ display: flex;
+ flex-flow: column;
}
|
---|