nodejs: fix styles for display by action

This commit is contained in:
sshakndr
2025-08-12 14:03:28 +07:00
parent 622638c06f
commit 569e6bc474
3 changed files with 19 additions and 19 deletions

View File

@ -34,15 +34,15 @@
} }
.tableHeaderCellFileName { .tableHeaderCellFileName {
width: 25%; width: 29%;
} }
.tableHeaderCellEditors { .tableHeaderCellEditors {
width: 13%; width: 12%;
} }
.tableHeaderCellViewers { .tableHeaderCellViewers {
width: 18%; width: 15%;
text-align: right; text-align: right;
} }
@ -237,15 +237,15 @@
.tableRow td:first-child { .tableRow td:first-child {
flex-grow: 0; flex-grow: 0;
width: 15%; width: 26%;
} }
.tableHeaderCellFileName { .tableHeaderCellFileName {
width: 9%; width: 15%;
} }
.tableHeaderCellEditors { .tableHeaderCellEditors {
width: 13%; width: 3%;
} }
.tableHeaderCellViewers { .tableHeaderCellViewers {
@ -274,12 +274,12 @@
} }
.tableHeaderCellEditors { .tableHeaderCellEditors {
width: 15%; width: 13%;
text-align: left; text-align: left;
} }
.tableHeaderCellFileName { .tableHeaderCellFileName {
width: 28%; width: 29%;
} }
.tableHeaderCellViewers { .tableHeaderCellViewers {
@ -366,7 +366,7 @@
} }
.tableHeaderCellFileName { .tableHeaderCellFileName {
width: 20%; width: 22%;
} }
.tableHeaderCellEditors { .tableHeaderCellEditors {
@ -375,7 +375,7 @@
} }
.tableHeaderCellViewers { .tableHeaderCellViewers {
width: 19%; width: 15%;
} }
.tableHeaderCellAction { .tableHeaderCellAction {
@ -390,7 +390,7 @@
@media (max-width: 890px) { @media (max-width: 890px) {
.tableRow td:first-child { .tableRow td:first-child {
max-width: 17%; max-width: 22%;
} }
#portal-info { #portal-info {
max-width: 60vw; max-width: 60vw;
@ -496,7 +496,7 @@
} }
.contentCells-icon { .contentCells-icon {
width: 13%; width: 11%;
} }
.tableRow td:last-child { .tableRow td:last-child {
@ -625,7 +625,7 @@
width: 83%; width: 83%;
} }
.contentCells-icon { .contentCells-icon {
width: 13%; width: 10%;
} }
.downloadContentCellShift { .downloadContentCellShift {
@ -652,7 +652,7 @@
width: 85%; width: 85%;
} }
.contentCells-icon { .contentCells-icon {
width: 11%; width: 10%;
} }
.downloadContentCellShift { .downloadContentCellShift {
@ -702,7 +702,7 @@
} }
.contentCells-icon{ .contentCells-icon{
width: 12%; width: 10%;
} }
footer table td { footer table td {
margin: 0; margin: 0;

View File

@ -974,15 +974,15 @@ html {
.tableRow td:first-child { .tableRow td:first-child {
display: flex; display: flex;
flex-grow: 1; flex-grow: 1;
max-width: 24%; max-width: 29%;
} }
.tableHeaderCellFileName { .tableHeaderCellFileName {
width: 20%; width: 24%;
} }
.tableHeaderCellEditors { .tableHeaderCellEditors {
width: 20%; width: 17%;
} }
.tableHeaderCellViewers { .tableHeaderCellViewers {

View File

@ -251,7 +251,7 @@
<!-- 5 --> <!-- 5 -->
<% if (storedFiles[i].actions.includes("edit") && storedFiles[i].documentType == "word") { %> <% if (storedFiles[i].actions.includes("edit") && storedFiles[i].documentType == "word") { %>
<td class="contentCells contentCells-icon"> <td class="contentCells contentCells-icon contentCells-shift">
<a class="action-link" href="editor?type=desktop&mode=blockcontent&fileName=<%= encodeURIComponent(storedFiles[i].name) %>" target="_blank"> <a class="action-link" href="editor?type=desktop&mode=blockcontent&fileName=<%= encodeURIComponent(storedFiles[i].name) %>" target="_blank">
<img src="images/block-content.svg" alt="Open in editor without content control modification" title="Open in editor without content control modification" /></a> <img src="images/block-content.svg" alt="Open in editor without content control modification" title="Open in editor without content control modification" /></a>
</td> </td>