Skip to content

Commit

Permalink
Fix #10599 - Update Import Error Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jack7anderson7 committed Jan 3, 2025
1 parent e572230 commit 414123e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
3 changes: 1 addition & 2 deletions modules/Import/tpls/last.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
}
div.resultsTable {
overflow: auto;
width: 1056px;
padding-top: 20px;
position: relative;
}
Expand Down Expand Up @@ -98,7 +97,7 @@ div.resultsTable {
</form>

<br/>

<table width="100%" id="tabListContainerTable" cellpadding="0" cellspacing="0" border="0">
<tr>
<td nowrap id="tabListContainerTD">
Expand Down
2 changes: 1 addition & 1 deletion modules/Import/tpls/listview.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
{counter start=0 name="colCounter" print=false assign="colCounter"}
{foreach from=$rowData key=col item=params}
{strip}
<td align='left' valign="top">
<td align='left' valign="top" scope="record">
{$params}
</td>
{/strip}
Expand Down
19 changes: 19 additions & 0 deletions themes/SuiteP/css/suitep-base/listview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,25 @@ tr#pagination {
white-space: nowrap;
}

.list tr td[scope=record] {
padding: 10px 10px 10px 10px;
border-left: none;
border-right: none;
text-align: left;
white-space: nowrap;
}

#errors_table .list tr th {
font-size: 13px;
padding: 13px 10px;
border-left: none;
border-right: none;
text-align: left;
white-space: nowrap;
font-weight: 700;
color: #534D64;
}

.edit .list tr th {
font-size: 13px;
font-weight: 800;
Expand Down

0 comments on commit 414123e

Please sign in to comment.