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

FEAT #10762 TIME 0:10 fix css watermark

parent 9593490b
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,7 @@
matSortDisableClear matSortDirection="asc" style="width:100%;table-layout: fixed;">
<!-- Number Column -->
<ng-container matColumnDef="res_id">
<td mat-cell *matCellDef="let row" [ngStyle]="{'width': mobileMode ? '30%' : '15%'}"
style="text-align:center;overflow:hidden;text-overflow: ellipsis;white-space: nowrap;padding: 5px;vertical-align: middle;">
<td class="first_col" mat-cell *matCellDef="let row" [ngStyle]="{'width': mobileMode ? '30%' : '15%'}">
<div *ngIf="row.closing_date == null && mobileMode"
id="{{row.res_id}}_creation_date"
style="color: rgba(0,0,0,0.4);font-size: 90%;overflow: hidden;text-overflow: ellipsis;"
......@@ -66,7 +65,6 @@
title="{{row.alt_identifier}} (n°{{row.res_id}})">
{{row.alt_identifier}}
</div>
</td>
</ng-container>
<ng-container matColumnDef="subject">
......
@import '../../css/vars.scss';
.first_col {
position:relative;
text-align:center;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 5px;
vertical-align: middle;
}
.noDoc {
.mat-badge-content {
color: #666;
......@@ -9,10 +18,9 @@
.watermark {
position: absolute;
transform: rotate(-20deg);
left: 50%;
transform: translateX(-50%) rotate(-20deg);
color: red;
font-weight: bold;
margin-left: -60px;
margin-top: 10px;
opacity: 0.6;
}
\ No newline at end of file
......@@ -40,9 +40,9 @@
.watermark {
position: absolute;
transform: rotate(-20deg);
left: 50%;
transform: translateX(-50%) rotate(-20deg);
color: red;
font-weight: bold;
margin-left: -60px;
opacity: 0.6;
}
......@@ -24,6 +24,7 @@
align-items: center;
&-status {
position: relative;
width: 65px;
text-align: center;
......
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