Skip to content

Commit 38ad157

Browse files
author
minjk-bl
committed
Fix Frame button style
1 parent 6220bb8 commit 38ad157

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

visualpython/css/m_apps/frame.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
.vp-fe-table thead th {
128128
position: sticky;
129129
top: 0;
130-
background: #FFFFFF;
130+
background-color: #FFFFFF;
131131
border-bottom: 1px solid #E4E4E4;
132132

133133
text-align: right;

visualpython/js/m_apps/Frame.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ define([
14341434
// add column
14351435
// LAB: img to url
14361436
// table.appendFormatLine('<th class="{0}"><img src="{1}"/></th>', VP_FE_ADD_COLUMN, com_Const.IMAGE_PATH + 'plus.svg');
1437-
table.appendFormatLine('<th class="{0} {1}"></th>', VP_FE_ADD_COLUMN, 'vp-icon-plus');
1437+
table.appendFormatLine('<th class="{0}"><div class="{1}"></div></th>', VP_FE_ADD_COLUMN, 'vp-icon-plus');
14381438

14391439
table.appendLine('</tr>');
14401440
table.appendLine('</thead>');
@@ -1467,7 +1467,7 @@ define([
14671467
table.appendLine('<tr>');
14681468
// LAB: img to url
14691469
// table.appendFormatLine('<th class="{0}"><img src="{1}"/></th>', VP_FE_ADD_ROW, com_Const.IMAGE_PATH + 'plus.svg');
1470-
table.appendFormatLine('<th class="{0} {1}"></th>', VP_FE_ADD_ROW, 'vp-icon-plus');
1470+
table.appendFormatLine('<th class="{0}"><div class="{1}"></div></th>', VP_FE_ADD_ROW, 'vp-icon-plus');
14711471
table.appendLine('</tr>');
14721472
table.appendLine('</tbody>');
14731473
$(that.wrapSelector('.' + VP_FE_TABLE)).replaceWith(function() {

0 commit comments

Comments
 (0)