This commit is contained in:
Peter Maquiran
2021-06-11 11:07:10 +01:00
parent 5e103428ad
commit a289b07497
2 changed files with 11 additions and 6 deletions
+3 -3
View File
@@ -213,7 +213,7 @@
</div> </div>
</div> --> </div> -->
<div class="ss-timeline hide-scroll timeline-mobile flex-grow-1 d-md-none text-black height-100 overflow-y-auto" > <div class="ss-timeline hide-scroll timeline-mobile flex-grow-1 d-md-none text-black height-100 width-100 overflow-y-auto" >
<div *ngFor="let events of TimelineMDList | keyvalue;" > <div *ngFor="let events of TimelineMDList | keyvalue;" >
<div *ngIf="CalendarCurrentDay <= events.key"> <div *ngIf="CalendarCurrentDay <= events.key">
@@ -254,7 +254,7 @@
</div> </div>
</div> </div>
<div class="fs-timeline hide-scroll flex-grow-1 d-none d-md-block d-md-block text-black pr-20 height-100 mr-md-20 overflow-y-auto" *ngIf="loggeduser.Profile == 'MDGPR'"> <div class="fs-timeline hide-scroll flex-grow-1 d-none d-md-block d-md-block text-black pr-20 width-100 height-100 mr-md-20 overflow-y-auto" *ngIf="loggeduser.Profile == 'MDGPR'">
<div *ngFor="let events of TimelineMDList | keyvalue;" > <div *ngFor="let events of TimelineMDList | keyvalue;" >
<div *ngIf="CalendarCurrentDay <= events.key"> <div *ngIf="CalendarCurrentDay <= events.key">
@@ -292,7 +292,7 @@
</div> </div>
</div> </div>
<div class="sd-timeline hide-scroll flex-grow-1 d-none d-md-block timeline-md text-black pr-20 height-100 overflow-y-auto" > <div class="sd-timeline hide-scroll flex-grow-1 d-none d-md-block timeline-md text-black pr-20 width-100 height-100 overflow-y-auto" >
<div *ngFor="let events of TimelinePRList | keyvalue;"> <div *ngFor="let events of TimelinePRList | keyvalue;">
<div *ngIf="CalendarCurrentDay <= events.key"> <div *ngIf="CalendarCurrentDay <= events.key">
+7 -2
View File
@@ -63,11 +63,11 @@ ion-slide{
padding: 0 !important; padding: 0 !important;
background: #ecf8ff; background: #ecf8ff;
} }
.div-title{ .div-title {
padding: 0!important; padding: 0!important;
float: left; float: left;
} }
.title{ .title {
font-size: 25px; font-size: 25px;
} }
.div-icon{ .div-icon{
@@ -699,3 +699,8 @@ app-approve-event{
align-items: center; align-items: center;
height: 100%; height: 100%;
} }
.fs-timeline {
border-right: 2px solid #909090;
}