mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
save
This commit is contained in:
@@ -504,14 +504,17 @@ td.monthview-primary-with-event {
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.location{
|
.location{
|
||||||
|
width: 100%;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: black;
|
color: black;
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
.description{
|
.description{
|
||||||
|
width: 100%;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@@ -612,7 +615,7 @@ td.monthview-primary-with-event {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.event-details{
|
.event-details{
|
||||||
width: 100%;
|
width: 40%;
|
||||||
background: white;
|
background: white;
|
||||||
border-top-right-radius: 25px;
|
border-top-right-radius: 25px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,9 @@
|
|||||||
<label>{{loadedEvent.workflowInstanceDataFields.Subject}} 11 </label>
|
<label>{{loadedEvent.workflowInstanceDataFields.Subject}} 11 </label>
|
||||||
</div>
|
</div>
|
||||||
<div (click)="editar(loadedEvent.serialNumber)" class="header-icon-right display-none-{{showAside}}">
|
<div (click)="editar(loadedEvent.serialNumber)" class="header-icon-right display-none-{{showAside}}">
|
||||||
|
<button class="btn-no-color">
|
||||||
<ion-icon src="assets/images/icons-edit.svg"></ion-icon>
|
<ion-icon src="assets/images/icons-edit.svg"></ion-icon>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="upper-content d-flex flex-column">
|
<div class="upper-content d-flex flex-column">
|
||||||
@@ -95,7 +97,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
||||||
<ion-footer class="display-none-{{showAside}}">
|
<ion-footer class="display-none-{{showAside}} ion-no-border">
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button class="btn-cancel" shape="round" (click)="emendTask(loadedEvent.serialNumber)">Adicionar Nota</button>
|
<button class="btn-cancel" shape="round" (click)="emendTask(loadedEvent.serialNumber)">Adicionar Nota</button>
|
||||||
<ion-menu-button (click)="openMenu()" autoHide="false">
|
<ion-menu-button (click)="openMenu()" autoHide="false">
|
||||||
@@ -103,6 +105,5 @@
|
|||||||
</ion-menu-button>
|
</ion-menu-button>
|
||||||
<button class="btn-ok" shape="round" (click)="approveTask(loadedEvent.serialNumber)">Aprovar</button>
|
<button class="btn-ok" shape="round" (click)="approveTask(loadedEvent.serialNumber)">Aprovar</button>
|
||||||
<button hidden class="btn-delete" shape="round" (click)="rejectTask(loadedEvent.serialNumber)">Rejeitar</button>
|
<button hidden class="btn-delete" shape="round" (click)="rejectTask(loadedEvent.serialNumber)">Rejeitar</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</ion-footer>
|
</ion-footer>
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ ion-menu{
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
padding: 5px;
|
||||||
|
|
||||||
.button-options {
|
.button-options {
|
||||||
height: 44px;
|
height: 44px;
|
||||||
|
|||||||
@@ -1,34 +1,3 @@
|
|||||||
<!-- <ion-menu autoHide="false" side="end" content-id="main-content" >
|
|
||||||
<ion-header>
|
|
||||||
<ion-toolbar translucent>
|
|
||||||
<ion-title>Menu</ion-title>
|
|
||||||
</ion-toolbar>
|
|
||||||
</ion-header>
|
|
||||||
<ion-content>
|
|
||||||
<ion-list>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('0',fulltask)">
|
|
||||||
<ion-icon name="documents" slot="start"></ion-icon>
|
|
||||||
<ion-label>Efectuar Despacho</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('1',fulltask)">
|
|
||||||
<ion-icon name="arrow-undo" slot="start"></ion-icon>
|
|
||||||
<ion-label>Pedido de Parecer</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openExpedientActionsModal('2',fulltask)">
|
|
||||||
<ion-icon name="arrow-redo" slot="start"></ion-icon>
|
|
||||||
<ion-label>Pedido de Deferimento</ion-label>
|
|
||||||
</ion-item>
|
|
||||||
<ion-item (click)="openBookMeetingModal(task)">
|
|
||||||
<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-header class="ion-no-border">
|
<ion-header class="ion-no-border">
|
||||||
<ion-toolbar class="header-toolbar">
|
<ion-toolbar class="header-toolbar">
|
||||||
<div class="main-header px-20" style="overflow: unset !important;">
|
<div class="main-header px-20" style="overflow: unset !important;">
|
||||||
@@ -38,8 +7,8 @@
|
|||||||
<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>
|
||||||
</div>
|
</div>
|
||||||
<div class="middle flex-grow-1" (click)="openOptions()">
|
<div class="middle" (click)="openOptions()">
|
||||||
<ion-label class="title">{{loadedEvent.Subject}}</ion-label>
|
<p class="title">{{loadedEvent.Subject}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="div-icon d-flex align-base">
|
<div class="div-icon d-flex align-base">
|
||||||
@@ -49,7 +18,6 @@
|
|||||||
<button class="btn-no-color" (click)="deleteEvent()">
|
<button class="btn-no-color" (click)="deleteEvent()">
|
||||||
<ion-icon class="delete" name="trash-sharp"></ion-icon>
|
<ion-icon class="delete" name="trash-sharp"></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,10 +4,9 @@ ion-content{
|
|||||||
--padding-start: 20px;
|
--padding-start: 20px;
|
||||||
--padding-end: 20px;
|
--padding-end: 20px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
ion-menu{
|
|
||||||
|
|
||||||
}
|
|
||||||
.header-toolbar{
|
.header-toolbar{
|
||||||
--background:transparent;
|
--background:transparent;
|
||||||
--opacity: 1;
|
--opacity: 1;
|
||||||
@@ -22,11 +21,14 @@ ion-menu{
|
|||||||
padding: 30px 0px 0px 0px;
|
padding: 30px 0px 0px 0px;
|
||||||
color:#000;
|
color:#000;
|
||||||
transform: translate3d(0, 1px, 0);
|
transform: translate3d(0, 1px, 0);
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.title-content{
|
.title-content{
|
||||||
|
width: 100% !important;
|
||||||
margin: 0px auto;
|
margin: 0px auto;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.left{
|
.left{
|
||||||
width: 37px;
|
width: 37px;
|
||||||
@@ -35,10 +37,17 @@ ion-menu{
|
|||||||
|
|
||||||
}
|
}
|
||||||
.middle{
|
.middle{
|
||||||
padding: 0 0 0 10px !important;
|
width: calc(100% - 138.5px) !important;
|
||||||
|
padding: 0 !important;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 2.5px 0 0 0;
|
margin: 0 !important;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
p{
|
||||||
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.header-icon-right{
|
.header-icon-right{
|
||||||
width: 45px;
|
width: 45px;
|
||||||
font-size: 45px;
|
font-size: 45px;
|
||||||
@@ -46,14 +55,15 @@ ion-menu{
|
|||||||
|
|
||||||
}
|
}
|
||||||
.div-icon{
|
.div-icon{
|
||||||
width: 136px;
|
width: fit-content;
|
||||||
|
height: fit-content;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
justify-content: start;
|
justify-content:flex-start;
|
||||||
float: right;
|
float: right;
|
||||||
padding: 1px !important;
|
padding: 1px !important;
|
||||||
top: 0 !important;
|
top: 0 !important;
|
||||||
margin: 0 !important;
|
margin: 0 0 0 15px !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
.div-icon .edit{
|
.div-icon .edit{
|
||||||
@@ -81,10 +91,13 @@ ion-menu{
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 15px 0px 0 0px;
|
padding: 15px 0px 0 0px;
|
||||||
|
overflow: auto !important;
|
||||||
|
|
||||||
.upper-content{
|
.upper-content{
|
||||||
|
width: calc(100%-50px);
|
||||||
margin-left: 50px;
|
margin-left: 50px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.content-location{
|
.content-location{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -92,12 +105,13 @@ ion-menu{
|
|||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
|
|
||||||
.date{
|
.date{
|
||||||
|
width: calc(100% - 105px);
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label{
|
.label{
|
||||||
|
width: fit-content;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
background: #ffb703;
|
background: #ffb703;
|
||||||
float: right !important;
|
float: right !important;
|
||||||
@@ -128,10 +142,14 @@ ion-menu{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.line{
|
.line{
|
||||||
|
width: 100% !important;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
border-top: 1px solid #d8d8d8;
|
border-top: 1px solid #d8d8d8;
|
||||||
}
|
}
|
||||||
.middle-conten{
|
.middle-content{
|
||||||
|
width: 100% !important;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
.middle-content h3, .middle-content p{
|
.middle-content h3, .middle-content p{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user