G-1: 메신저 Webhook Relay + _send_to_room 실제 httpx 호출 구현 G-2: POST /api/tasks/bulk SR 대량작업 엔드포인트 (최대 100건) G-3: 라이선스 만료 알림 스케줄러 (매일 09:00 KST) G-4: 체험판 upgrade_banner 필드 + license.py 배너 로직 G-5: core/auto_rca.py + incidents/problem auto-rca 엔드포인트 G-6: core/deploy_impact.py + vibe impact-analysis 엔드포인트 G-7: core/ticket_classifier.py + SR 생성 시 AI 분류 + ai-suggestion API G-8: VulnPatchRecord 모델 + vuln_scan 패치추적 4개 엔드포인트 G-9: core/jira_sync.py + gateway Jira/Confluence 연동 엔드포인트 G-10: core/push_notify.py + routers/push.py + PushSubscription 모델 G-11: approvals 다중승인 (위임/서명/기한초과/마감연장) G-12: alembic.ini + migrations/ + cicd/migrate_to_postgres.sh 하네스: guardia-orchestrator 확장기능 Phase 반영 봇명령어: /sr /status /license /bulk 슬래시 명령어 추가 설치스크립트: setup/ (Ubuntu, CentOS, RHEL, Windows) --test 옵션 포함 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
117 lines
1.8 KiB
CSS
117 lines
1.8 KiB
CSS
@CHARSET "EUC-KR";
|
|
|
|
/* [jsp/sample/*.jsp] 에 이용되는 css입니다. */
|
|
|
|
|
|
/* 정보를 목록형이나 상세형으로 표현하는 테이블에 대한 정의 */
|
|
div.tableZone {
|
|
}
|
|
|
|
table.list, table.view {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
table.list th,
|
|
table.list td,
|
|
table.view th,
|
|
table.view td {
|
|
white-space: nowrap;
|
|
height: 18pt;
|
|
}
|
|
|
|
/* 표두 */
|
|
table.list th,
|
|
table.view th {
|
|
background-color: #EDF4FA;
|
|
font-family: Gulim, "굴림", Verdana ;
|
|
font-size:9pt;
|
|
font-weight:normal;
|
|
color:#1F5299;
|
|
text-align: center;
|
|
border-top: 1px solid #B8CFE5;
|
|
border-bottom: 1px solid #B8CFE5;
|
|
}
|
|
/* 표 몸체 */
|
|
table.list td,
|
|
table.view td {
|
|
font-family: Gulim, "굴림", Verdana ;
|
|
font-size: 9pt;
|
|
padding-left:3px;
|
|
padding-right:3px;
|
|
color: #666666;
|
|
background-color: #FFFFFF;
|
|
border-right: 1px solid #EDEDED;
|
|
border-bottom: 1px solid #EDEDED;
|
|
}
|
|
|
|
.bar {
|
|
background-image:url(../../images/board/bbs_cap02.gif);
|
|
background-repeat:no-repeat
|
|
|
|
}
|
|
|
|
/* 해당 id를 가지고 있으면 오른쪽 border를 없앱니다.*/
|
|
td#lastcolumn {
|
|
border-right: 0px;
|
|
}
|
|
|
|
table.view {
|
|
border-top: 2px solid #A8DA9E;
|
|
/* border-bottom: 1px solid #EDEDED;*/
|
|
}
|
|
|
|
table.view th {
|
|
border-bottom: 1px solid #EDEDED;
|
|
border-top: none;
|
|
width: 100px;
|
|
}
|
|
|
|
table.view td input {
|
|
height: 15px;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
table.view input.readonly { background: #EFEFEF; }
|
|
|
|
/* 버튼 */
|
|
/* 일반적인버튼 */
|
|
button.normal {
|
|
font-size: 9pt;
|
|
cursor:pointer;
|
|
background:#72C261;
|
|
color:white;
|
|
width: 45px;
|
|
height: 17px;
|
|
text-align:center;
|
|
padding-top:3px;
|
|
border: 0px none;
|
|
margin: 0 3 0 0;
|
|
}
|
|
/*버튼이 마우스 오버될때 지정될 클래스*/
|
|
button.over {
|
|
font-size: 9pt;
|
|
cursor:pointer;
|
|
background:#53A941;
|
|
color:white;
|
|
width: 45px;
|
|
height: 17px;
|
|
text-align:center;
|
|
padding-top:3px;
|
|
border: 0px none;
|
|
margin: 0 3 0 0;
|
|
}
|
|
|
|
button.small {
|
|
width: 35px;
|
|
height: 22px;
|
|
}
|
|
|
|
button.tiny {
|
|
font-size: 8pt;
|
|
padding: 2px 0 0 1px;
|
|
width: 29px;
|
|
height: 20px;
|
|
}
|