Update structurePopupLeft.jsp

This commit is contained in:
Johngreen
2025-10-27 14:29:56 +09:00
parent df0a534f0e
commit 588fef91ce

View File

@@ -39,19 +39,6 @@
.tabulator-row.level-9 { background-color: #FFFFEB !important; }
.tabulator-row.level-10 { background-color: #ffffff !important; }
/* 시스템상태(NOTE) 컬럼 헤더 스타일 - CSV 업로드 오류 표시용 */
.tabulator-col[tabulator-field="NOTE"] .tabulator-col-content {
background: linear-gradient(to bottom, #FF9966 0%, #FF9966 100%) !important;
color: white !important;
font-weight: bold !important;
}
/* NOTE 컬럼에 오류가 있는 행 텍스트 색상 */
.tabulator-cell[tabulator-field="NOTE"] {
color: red !important;
font-weight: bold !important;
}
.file_icon, .file_empty_icon {
display: inline-block;
width: 20px;
@@ -97,18 +84,6 @@ function fn_initGrid() {
// 컬럼 정의
var columns = [
{
headerHozAlign: 'center',
hozAlign: 'center',
width: 160,
title: '시스템상태',
field: 'NOTE',
formatter: function(cell) {
var value = cell.getValue();
// NOTE 값이 있으면 빨간색으로 표시 (CSV 업로드 오류 메시지)
return value ? '<span style="color:red; font-weight:bold;">' + value + '</span>' : '';
}
},
{
headerHozAlign: 'center',
hozAlign: 'center',