mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
Improve Attendees component for agenda
This commit is contained in:
@@ -1,16 +1,16 @@
|
|||||||
<ion-header class="ion-no-border">
|
<ion-header class="ion-no-border px-20">
|
||||||
<ion-toolbar>
|
<ion-toolbar class="px-10">
|
||||||
<ion-title>Adicionar intervenientes</ion-title>
|
<ion-title class="pa-0">Adicionar intervenientes</ion-title>
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
<ion-searchbar class="search-bar" (ionChange)="onChange($event)" placeholder="Pesquisar"></ion-searchbar><!-- [(ngModel)]="searchCountryString" -->
|
<ion-searchbar class="attendee-search-bar" (ionChange)="onChange($event)" placeholder="Pesquisar"></ion-searchbar><!-- [(ngModel)]="searchCountryString" -->
|
||||||
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content class="height-100">
|
<ion-content class="height-100 ">
|
||||||
|
|
||||||
<ion-item-group class="d-flex flex-column height-100">
|
<ion-item-group class="d-flex flex-column height-100">
|
||||||
<ion-list class="flex-grow-1 overflow-y-auto height-100" >
|
<ion-list class="flex-grow-1 overflow-y-auto height-100" >
|
||||||
<ion-item-sliding>
|
<ion-item-sliding class="px-20">
|
||||||
<div *ngFor="let attendee of contacts;">
|
<div *ngFor="let attendee of contacts;">
|
||||||
<ion-item (click)="selectContact(attendee)" *ngIf="checkbox(attendee)" >
|
<ion-item (click)="selectContact(attendee)" *ngIf="checkbox(attendee)" >
|
||||||
<div class="pr-10">
|
<div class="pr-10">
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
</ion-list>
|
</ion-list>
|
||||||
<hr/>
|
<hr/>
|
||||||
<ion-list lines="none" *ngIf="selectedContact.length >= 1" class="flex-grow-1 overflow-y-auto height-100" style="border-top:1px solid #ebebeb">
|
<ion-list lines="none" *ngIf="selectedContact.length >= 1" class="flex-grow-1 overflow-y-auto height-100" style="border-top:1px solid #ebebeb">
|
||||||
<ion-item-sliding>
|
<ion-item-sliding class="px-20">
|
||||||
<ion-item *ngFor="let attendee of selectedContact;" class="d-flex">
|
<ion-item *ngFor="let attendee of selectedContact;" class="d-flex">
|
||||||
<div class="pr-10">
|
<div class="pr-10">
|
||||||
<ion-icon class="font-35" src="assets/images/icons-userprofile.svg"></ion-icon>
|
<ion-icon class="font-35" src="assets/images/icons-userprofile.svg"></ion-icon>
|
||||||
|
|||||||
@@ -7,9 +7,3 @@ ion-searchbar{
|
|||||||
.item-inner{
|
.item-inner{
|
||||||
border-style: unset !important;
|
border-style: unset !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-bar{
|
|
||||||
border: 1px solid #cecece;
|
|
||||||
box-shadow: none;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
@@ -509,3 +509,25 @@ td.monthview-secondary-with-event, td.monthview-secondary-with-event[_ngcontent-
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// agenda attendee component
|
||||||
|
.attendee-search-bar input{
|
||||||
|
border: 1px solid #cecece !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
border-radius: 3px !important;
|
||||||
|
-webkit-border-radius: 3px !important;
|
||||||
|
-moz-border-radius: 3px !important;
|
||||||
|
-ms-border-radius: 3px !important;
|
||||||
|
-o-border-radius: 3px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attendee-search-bar .searchbar-input {
|
||||||
|
border: 1px solid #cecece !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
border-radius: 3px !important;
|
||||||
|
-webkit-border-radius: 3px !important;
|
||||||
|
-moz-border-radius: 3px !important;
|
||||||
|
-ms-border-radius: 3px !important;
|
||||||
|
-o-border-radius: 3px !important;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user