mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
save
This commit is contained in:
@@ -79,11 +79,11 @@ const routes: Routes = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path:':eventId/:caller',
|
path:':eventId/:caller',
|
||||||
loadChildren: ()=> import('../pages/events/event-detail/event-detail.module').then(m => m.EventDetailPageModule),
|
loadChildren: () => import('../pages/agenda/view-event/view-event.module').then( m => m.ViewEventPageModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'eventId/:caller',
|
path: 'eventId/:caller',
|
||||||
loadChildren: () => import('../pages/agenda/view-event/view-event.module').then( m => m.ViewEventPageModule)
|
loadChildren: () => import('../pages/agenda/view-event/view-event.module').then( m => m.ViewEventPageModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'edit-event',
|
path: 'edit-event',
|
||||||
|
|||||||
@@ -136,7 +136,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div class="container-div width-100">
|
<div class="container-div width-100">
|
||||||
<div class="ion-item-class-2">
|
<div (click)="addParticipants()" class="ion-item-class-2 cursor-pointer">
|
||||||
<div class="ion-icon-class">
|
<div class="ion-icon-class">
|
||||||
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
</ion-list>
|
</ion-list>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</div>
|
</div>
|
||||||
<div class="add-people cursor-pointer" (click)="addParticipants();showAttendees=true">
|
<div class="add-people">
|
||||||
<ion-icon slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
<ion-icon slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -157,7 +157,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container-div width-100">
|
<div class="container-div width-100">
|
||||||
<div class="ion-item-class-2">
|
<div (click)="addParticipantsCC()" class="ion-item-class-2 cursor-pointer">
|
||||||
<div class="ion-icon-class">
|
<div class="ion-icon-class">
|
||||||
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
</ion-list>
|
</ion-list>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</div>
|
</div>
|
||||||
<div class="add-people cursor-pointer" (click)="addParticipantsCC();showAttendees=true">
|
<div class="add-people">
|
||||||
<ion-icon slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
<ion-icon slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -93,6 +93,9 @@ export class EditEventPage implements OnInit {
|
|||||||
this.modalController.dismiss();
|
this.modalController.dismiss();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(window.innerWidth > 800){
|
||||||
|
this.showAttendees=true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -128,8 +131,10 @@ export class EditEventPage implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async openAttendees() {
|
async openAttendees() {
|
||||||
|
if(window.innerWidth > 801){
|
||||||
|
this.showAttendees=true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
const modal = await this.modalController.create({
|
const modal = await this.modalController.create({
|
||||||
component: AttendeesPage,
|
component: AttendeesPage,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
@@ -155,6 +160,7 @@ export class EditEventPage implements OnInit {
|
|||||||
this.setIntervenientCC(newAttendeesCC);
|
this.setIntervenientCC(newAttendeesCC);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -170,7 +176,6 @@ export class EditEventPage implements OnInit {
|
|||||||
|
|
||||||
addParticipants(){
|
addParticipants(){
|
||||||
this.adding = 'intervenient'
|
this.adding = 'intervenient'
|
||||||
|
|
||||||
this.openAttendees();
|
this.openAttendees();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ import { ViewEventPageRoutingModule } from './view-event-routing.module';
|
|||||||
import { ViewEventPage } from './view-event.page';
|
import { ViewEventPage } from './view-event.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { ComponentsModule } from 'src/app/components/components.module';
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
import { HeaderPageModule } from 'src/app/shared/header/header.module';
|
||||||
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -16,7 +18,9 @@ import { ComponentsModule } from 'src/app/components/components.module';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
ComponentsModule,
|
ComponentsModule,
|
||||||
ViewEventPageRoutingModule
|
ViewEventPageRoutingModule,
|
||||||
|
HeaderPageModule,
|
||||||
|
BtnModalDismissPageModule,
|
||||||
],
|
],
|
||||||
declarations: [ViewEventPage]
|
declarations: [ViewEventPage]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,33 +1,6 @@
|
|||||||
<!-- <ion-menu autoHide="false" side="end" content-id="main-content" >
|
<ion-header class="ion-no-border">
|
||||||
<ion-header>
|
<app-header></app-header>
|
||||||
<ion-toolbar translucent>
|
|
||||||
<ion-title>Menu</ion-title>
|
|
||||||
</ion-toolbar>
|
|
||||||
</ion-header>
|
</ion-header>
|
||||||
<ion-content>
|
|
||||||
<ion-list>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('0')">
|
|
||||||
<ion-icon name="documents" slot="start"></ion-icon>
|
|
||||||
<ion-label>Efectuar Despacho</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('1')">
|
|
||||||
<ion-icon name="arrow-undo" slot="start"></ion-icon>
|
|
||||||
<ion-label>Pedido de Parecer</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('2')">
|
|
||||||
<ion-icon name="arrow-redo" slot="start"></ion-icon>
|
|
||||||
<ion-label>Pedido de Deferimento</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openBookMeetingModal()">
|
|
||||||
<ion-icon name="calendar" slot="start"></ion-icon>
|
|
||||||
<ion-label>Marcar reunião</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
</ion-list>
|
|
||||||
</ion-content>
|
|
||||||
</ion-menu>
|
|
||||||
<div class="ion-page d-none" id="main-content">
|
|
||||||
<ion-menu-button></ion-menu-button>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<ion-content class="height-100">
|
<ion-content class="height-100">
|
||||||
<div class="main-content d-flex height-100">
|
<div class="main-content d-flex height-100">
|
||||||
@@ -42,7 +15,7 @@
|
|||||||
<div class="middle d-flex align-center flex-grow-1">
|
<div class="middle d-flex align-center flex-grow-1">
|
||||||
<ion-label class="title">{{loadedEvent.Subject}}</ion-label>
|
<ion-label class="title">{{loadedEvent.Subject}}</ion-label>
|
||||||
</div>
|
</div>
|
||||||
<div class="div-icon d-flex align-base">
|
<div class="menu-options d-flex align-base">
|
||||||
<button class="btn-no-color" (click)="editEvent()">
|
<button class="btn-no-color" (click)="editEvent()">
|
||||||
<ion-icon class="edit" slot="end" src="assets/images/icons-edit.svg" ></ion-icon>
|
<ion-icon class="edit" slot="end" src="assets/images/icons-edit.svg" ></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
@@ -84,9 +57,9 @@
|
|||||||
<ion-item lines="none" class="ion-no-margin ion-no-padding">
|
<ion-item lines="none" class="ion-no-margin ion-no-padding">
|
||||||
<div disabled class="width-100" [innerHTML]="loadedEvent.Body.Text" rows="6"></div>
|
<div disabled class="width-100" [innerHTML]="loadedEvent.Body.Text" rows="6"></div>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</div>
|
|
||||||
<div class="line"></div>
|
<div class="line"></div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div *ngIf="loadedAttachments" class="bottom-content width-100">
|
<div *ngIf="loadedAttachments" class="bottom-content width-100">
|
||||||
<h5>Documentos Anexados</h5>
|
<h5>Documentos Anexados</h5>
|
||||||
@@ -114,7 +87,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="aside-right flex-column height-100 d-none d-md-flex">
|
<div class="aside-right flex-column height-100">
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button (click)="editEvent()" full class="btn-ok" shape="round" >Editar</button>
|
<button (click)="editEvent()" full class="btn-ok" shape="round" >Editar</button>
|
||||||
<div class="solid"></div>
|
<div class="solid"></div>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
@import '~src/function.scss';
|
||||||
ion-content{
|
ion-content{
|
||||||
--background:transparent;
|
--background:transparent;
|
||||||
/* --padding-top:0px;
|
/* --padding-top:0px;
|
||||||
@@ -41,15 +42,15 @@ ion-menu{
|
|||||||
font-size: 45px;
|
font-size: 45px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
.div-icon{
|
.menu-options{
|
||||||
float: right;
|
float: right;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
.div-icon .edit{
|
.menu-options .edit{
|
||||||
font-size: 35px;
|
font-size: 35px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.div-icon .delete{
|
.menu-options .delete{
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
font-size: 21px;
|
font-size: 21px;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
@@ -66,8 +67,9 @@ ion-menu{
|
|||||||
}
|
}
|
||||||
.main-content{
|
.main-content{
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
margin: 0 auto;
|
background-color: #fff !important;
|
||||||
background-color: #fff;
|
border-top-left-radius: 25px;
|
||||||
|
border-top-right-radius: 25px;
|
||||||
overflow:auto;
|
overflow:auto;
|
||||||
|
|
||||||
.content{
|
.content{
|
||||||
@@ -235,3 +237,44 @@ ion-menu{
|
|||||||
border:none;
|
border:none;
|
||||||
--background:#fff !important;
|
--background:#fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 800px) {
|
||||||
|
.content{
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
.aside-right{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen and (min-width: 801px) {
|
||||||
|
.menu-options{
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.content{
|
||||||
|
width: 65%;
|
||||||
|
border-right: 1px solid #d8d8d8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-right{
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1024px){
|
||||||
|
.content{
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
|
.aside-right{
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1140px){
|
||||||
|
.content{
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
.aside-right{
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -12,6 +12,7 @@ import { ProcessesService } from 'src/app/services/processes.service';
|
|||||||
import { ExpedientTaskModalPage } from '../../gabinete-digital/expediente/expedient-task-modal/expedient-task-modal.page';
|
import { ExpedientTaskModalPage } from '../../gabinete-digital/expediente/expedient-task-modal/expedient-task-modal.page';
|
||||||
import { BookMeetingModalPage } from '../../gabinete-digital/expediente/book-meeting-modal/book-meeting-modal.page';
|
import { BookMeetingModalPage } from '../../gabinete-digital/expediente/book-meeting-modal/book-meeting-modal.page';
|
||||||
import { OptsExpedientePage } from 'src/app/shared/popover/opts-expediente/opts-expediente.page';
|
import { OptsExpedientePage } from 'src/app/shared/popover/opts-expediente/opts-expediente.page';
|
||||||
|
import { ActivatedRoute } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-view-event',
|
selector: 'app-view-event',
|
||||||
@@ -43,21 +44,25 @@ export class ViewEventPage implements OnInit {
|
|||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private modalController: ModalController,
|
private modalController: ModalController,
|
||||||
private navParams: NavParams,
|
/* private navParams: NavParams, */
|
||||||
private eventsService: EventsService,
|
private eventsService: EventsService,
|
||||||
private attachmentsService: AttachmentsService,
|
private attachmentsService: AttachmentsService,
|
||||||
public alertController: AlertController,
|
public alertController: AlertController,
|
||||||
private iab: InAppBrowser,
|
private iab: InAppBrowser,
|
||||||
private processes: ProcessesService,
|
private processes: ProcessesService,
|
||||||
public popoverController: PopoverController
|
public popoverController: PopoverController,
|
||||||
|
private activatedRoute: ActivatedRoute,
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
this.profile = this.navParams.get('profile');
|
|
||||||
this.isEventEdited = false;
|
this.isEventEdited = false;
|
||||||
this.loadedEvent = new Event();
|
this.loadedEvent = new Event();
|
||||||
this.eventBody = { BodyType : "1", Text : ""};
|
this.eventBody = { BodyType : "1", Text : ""};
|
||||||
this.loadedEvent.Body = this.eventBody;
|
this.loadedEvent.Body = this.eventBody;
|
||||||
this.eventId = this.navParams.get('eventId');
|
/* this.eventId = this.navParams.get('eventId'); */
|
||||||
|
|
||||||
|
this.activatedRoute.paramMap.subscribe(paramMap =>{
|
||||||
|
this.eventId = paramMap['params'].eventId;
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -111,10 +116,14 @@ export class ViewEventPage implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getAttachments(){
|
getAttachments(){
|
||||||
|
try {
|
||||||
this.attachmentsService.getAttachmentsById(this.eventId).subscribe(res=>{
|
this.attachmentsService.getAttachmentsById(this.eventId).subscribe(res=>{
|
||||||
this.loadedAttachments = res;
|
this.loadedAttachments = res;
|
||||||
console.log(res);
|
console.log(res);
|
||||||
});
|
});
|
||||||
|
} catch (error) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async editEventDetail() {
|
async editEventDetail() {
|
||||||
|
|||||||
@@ -272,6 +272,16 @@ export class EventsPage implements OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
goToEvent(eventId:any){
|
||||||
|
let navigationExtras: NavigationExtras = {
|
||||||
|
queryParams: {
|
||||||
|
"eventId": eventId,
|
||||||
|
"caller": "agenda"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
this.router.navigate(['/home/agenda', eventId, 'events']);
|
||||||
|
}
|
||||||
|
|
||||||
async viewEventDetail(eventId:any) {
|
async viewEventDetail(eventId:any) {
|
||||||
let classs;
|
let classs;
|
||||||
if( window.innerWidth <= 800){
|
if( window.innerWidth <= 800){
|
||||||
@@ -284,7 +294,6 @@ export class EventsPage implements OnInit {
|
|||||||
component: ViewEventPage,
|
component: ViewEventPage,
|
||||||
componentProps:{
|
componentProps:{
|
||||||
eventId: eventId,
|
eventId: eventId,
|
||||||
profile: this.profile,
|
|
||||||
},
|
},
|
||||||
cssClass: classs,
|
cssClass: classs,
|
||||||
});
|
});
|
||||||
@@ -325,16 +334,6 @@ export class EventsPage implements OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
goToEvent(eventId:any){
|
|
||||||
let navigationExtras: NavigationExtras = {
|
|
||||||
queryParams: {
|
|
||||||
"eventId": eventId,
|
|
||||||
"caller": "agenda"
|
|
||||||
}
|
|
||||||
};
|
|
||||||
this.router.navigate(['/home/events', eventId, 'events']);
|
|
||||||
}
|
|
||||||
|
|
||||||
goToExpediente(serialNumber:any){
|
goToExpediente(serialNumber:any){
|
||||||
let navigationExtras: NavigationExtras = {
|
let navigationExtras: NavigationExtras = {
|
||||||
queryParams: {
|
queryParams: {
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { IonicModule } from '@ionic/angular';
|
|||||||
import { SearchPageRoutingModule } from './search-routing.module';
|
import { SearchPageRoutingModule } from './search-routing.module';
|
||||||
|
|
||||||
import { SearchPage } from './search.page';
|
import { SearchPage } from './search.page';
|
||||||
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
||||||
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
||||||
/* import { TagCloudModule } from 'angular-tag-cloud-module'; */
|
/* import { TagCloudModule } from 'angular-tag-cloud-module'; */
|
||||||
|
|
||||||
@@ -17,7 +18,8 @@ import { SearchPage } from './search.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
/* TagCloudModule, */
|
/* TagCloudModule, */
|
||||||
/* ComponentsModule, */
|
/* ComponentsModule, */
|
||||||
SearchPageRoutingModule
|
SearchPageRoutingModule,
|
||||||
|
BtnModalDismissPageModule,
|
||||||
],
|
],
|
||||||
declarations: [SearchPage],
|
declarations: [SearchPage],
|
||||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
|
|||||||
@@ -2,8 +2,7 @@
|
|||||||
<!-- HEADER-->
|
<!-- HEADER-->
|
||||||
<ion-header class="ion-no-border header-main d-md-flex flex-md-row-reverse">
|
<ion-header class="ion-no-border header-main d-md-flex flex-md-row-reverse">
|
||||||
<ion-progress-bar type="indeterminate" class="loader" *ngIf="showLoader"></ion-progress-bar>
|
<ion-progress-bar type="indeterminate" class="loader" *ngIf="showLoader"></ion-progress-bar>
|
||||||
<div class="d-flex ion-justify-content-between">
|
<div class="top-box d-flex ion-justify-content-between">
|
||||||
|
|
||||||
<ion-form [class.d-none]="!showSearchInput">
|
<ion-form [class.d-none]="!showSearchInput">
|
||||||
<div class="d-flex search-input-container ion-justify-content-between" >
|
<div class="d-flex search-input-container ion-justify-content-between" >
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
@@ -33,6 +32,12 @@
|
|||||||
<div class="profile">
|
<div class="profile">
|
||||||
<ion-icon class="icon" src="assets/images/icons-profile.svg"></ion-icon>
|
<ion-icon class="icon" src="assets/images/icons-profile.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="btn-modal-dismiss">
|
||||||
|
<button class="btn-no-color" (click)="close()">
|
||||||
|
<ion-icon class="icon" src="assets/images/icons-search-close.svg"></ion-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Search drop down -->
|
<!-- Search drop down -->
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
.top-box{
|
||||||
|
display: flex;
|
||||||
|
align-content: center;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
.header-main{
|
.header-main{
|
||||||
padding: 5px 18px;
|
padding: 5px 18px;
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
@@ -6,6 +12,21 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
.btn-modal-dismiss{
|
||||||
|
width: 50px !important;
|
||||||
|
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
margin-left: 25px !important;
|
||||||
|
border: 1px solid red;
|
||||||
|
|
||||||
|
btn-modal-dismiss icon{
|
||||||
|
font-size: 45px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.ion-align-content-center{
|
||||||
|
align-content: center;
|
||||||
|
}
|
||||||
.search-input-container{
|
.search-input-container{
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-radius: 27.5px;
|
border-radius: 27.5px;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<div class="left">
|
<div class="btn-modal-dismiss">
|
||||||
<button class="btn-no-color" (click)="close()">
|
<button class="btn-no-color" (click)="close()">
|
||||||
<ion-icon slot="end" src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
<ion-icon slot="end" src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.left{
|
.btn-modal-dismiss{
|
||||||
width: 37px;
|
width: 37px;
|
||||||
float: left;
|
float: left;
|
||||||
font-size: 35px;
|
font-size: 35px;
|
||||||
|
|||||||
Reference in New Issue
Block a user