Skip to content
Snippets Groups Projects
Commit db7b38da authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #15550 TIME 0:05 add css page display

parent 47e4bb52
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
<section class="page-info" <section class="page-info"
*ngIf="!signaturesService.dragging && !signaturesService.resizing && docList[currentDoc]"> *ngIf="!signaturesService.dragging && !signaturesService.resizing && docList[currentDoc]">
<div class="page-info-doc">{{docList[currentDoc].title}}</div> <div class="page-info-doc">{{docList[currentDoc].title}}</div>
<div style="font-weight: bold; color: black;" class="page-info-page" (click)="pagesList.open()">{{'lang.page' | translate}} {{ pageNum }} / {{ totalPages }}</div> <div class="page-info-page" (click)="pagesList.open()">{{'lang.page' | translate}} {{ pageNum }} / {{ totalPages }}</div>
<ion-select style="max-height: 30%;" interface="action-sheet" #pagesList (ionChange)='goTo($event.target.value)' hidden="true"> <ion-select style="max-height: 30%;" interface="action-sheet" #pagesList (ionChange)='goTo($event.target.value)' hidden="true">
<ion-select-option *ngFor="let page of pagesArray(this.totalPages);let i=index"[value]="page">{{ i + 1 }}</ion-select-option> <ion-select-option *ngFor="let page of pagesArray(this.totalPages);let i=index"[value]="page">{{ i + 1 }}</ion-select-option>
</ion-select> </ion-select>
......
...@@ -176,16 +176,19 @@ canvas { ...@@ -176,16 +176,19 @@ canvas {
height: 30px; height: 30px;
width: auto; width: auto;
max-width: 70%; max-width: 70%;
color: #9B9B9B; color: rgba(var(--ion-color-dark-rgb), 0.8);
font-size: 12px; font-size: 12px;
font-weight: 300; font-weight: 300;
line-height: 30px; line-height: 30px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
opacity: 0.8; opacity: 0.5;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
font-weight: 500;
transition: all 0.3s ease-in-out;
&-doc { &-doc {
max-width: 80%; max-width: 80%;
...@@ -199,6 +202,7 @@ canvas { ...@@ -199,6 +202,7 @@ canvas {
} }
&-page { &-page {
cursor: pointer;
text-align: center; text-align: center;
border-radius: 0 14px 14px 0; border-radius: 0 14px 14px 0;
padding: 0 20px; padding: 0 20px;
...@@ -207,8 +211,13 @@ canvas { ...@@ -207,8 +211,13 @@ canvas {
margin-left: -15px; margin-left: -15px;
height: 28px; height: 28px;
white-space: pre; white-space: pre;
display: flex;
align-items: center;
} }
} }
&-info:hover {
opacity: 1;
}
} }
.btn-next { .btn-next {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment