fix(game-ui): 전투시드 숨김 표시를 전역화

메인과 감찰부에만 있던 hidden_but_copyable 표시 규칙을 Ref 공통 CSS처럼 전역 계약으로 옮깁니다. 내 정보 개인기록을 포함한 모든 로그 화면에서 seed를 숨기되 DOM selection과 복사 가능성은 보존합니다.
This commit is contained in:
2026-08-19 14:05:03 +00:00
parent daf98722de
commit e6ac941edc
6 changed files with 128 additions and 12 deletions
+11
View File
@@ -87,3 +87,14 @@ textarea {
.small_war_log {
display: inline-block;
}
/*
* Ref's common stylesheet keeps diagnostic seeds in the DOM so they remain
* copyable, while removing them from every normal log rendering surface.
* This marker can arrive through main, personal, audit, and history log APIs,
* so the display contract belongs to the app-wide legacy markup boundary.
*/
.hidden_but_copyable {
color: rgba(0, 0, 0, 0) !important;
font-size: 0;
}
@@ -84,11 +84,6 @@ const unavailableText: Record<GeneralRecordType, string> = {
border-bottom: 0;
}
.log-line :deep(.hidden_but_copyable) {
color: transparent !important;
font-size: 0;
}
.empty {
padding: 2px 8px;
color: #999;
-5
View File
@@ -763,11 +763,6 @@ button {
vertical-align: top;
}
.record-line :deep(.hidden_but_copyable) {
color: transparent !important;
font-size: 0;
}
.record-empty {
color: #aaa;
}