merge: 최신 main을 인게임 작업 toast 변경에 통합한다
This commit is contained in:
@@ -291,6 +291,7 @@ onMounted(() => {
|
||||
available: true,
|
||||
experience: selectedGeneral.experience,
|
||||
dedicationText: selectedGeneral.progression.dedicationText,
|
||||
bill: selectedGeneral.bill,
|
||||
warnum: selectedGeneral.warnum,
|
||||
wins: selectedGeneral.battleStats.kills,
|
||||
losses: selectedGeneral.battleStats.deaths,
|
||||
|
||||
@@ -1733,7 +1733,6 @@ onUnmounted(() => {
|
||||
.npc-tooltip {
|
||||
position: relative;
|
||||
cursor: help;
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
|
||||
.npc-tooltip [role='tooltip'] {
|
||||
|
||||
@@ -243,7 +243,15 @@ watch(
|
||||
</div>
|
||||
|
||||
<div data-main-target="policy">
|
||||
<MainFrontStatus :status="frontStatus" :tournament-stage="tournamentStage" />
|
||||
<MainFrontStatus
|
||||
:status="frontStatus"
|
||||
:tournament-stage="tournamentStage"
|
||||
:server-time="lobbyInfo?.serverTime"
|
||||
:server-wall-time="lobbyInfo?.serverWallTime"
|
||||
:clock-mode="lobbyInfo?.clockMode"
|
||||
:clock-running="lobbyInfo?.clockRunning"
|
||||
:clock-starts-at="lobbyInfo?.clockStartsAt"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<aside v-if="surveyNotice" class="survey-notice" role="status" aria-live="polite">
|
||||
|
||||
@@ -421,6 +421,7 @@ onMounted(() => {
|
||||
available: true,
|
||||
experience: data.general.experience,
|
||||
dedicationText: data.general.progression?.dedicationText,
|
||||
bill: data.general.bill,
|
||||
warnum: data.general.records.battles,
|
||||
wins: data.general.records.wins,
|
||||
losses: data.general.records.losses,
|
||||
|
||||
@@ -283,7 +283,13 @@ onMounted(() => void loadStratFinan());
|
||||
</header>
|
||||
<div class="scout-limit">870px x 200px를 넘어서는 내용은 표시되지 않습니다.</div>
|
||||
<div v-if="!editingScoutMsg" class="message-preview scout-preview" v-html="scoutMsg || '내용 없음'" />
|
||||
<LegacyHtmlEditor v-else v-model="scoutMsgDraft" :max-length="1000" aria-label="임관 권유" />
|
||||
<LegacyHtmlEditor
|
||||
v-else
|
||||
v-model="scoutMsgDraft"
|
||||
class="scout-editor"
|
||||
:max-length="1000"
|
||||
aria-label="임관 권유"
|
||||
/>
|
||||
</section>
|
||||
|
||||
<div class="finance-title">예산&정책</div>
|
||||
@@ -549,6 +555,45 @@ textarea {
|
||||
margin-left: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.message-preview :deep(ol),
|
||||
.message-preview :deep(ul) {
|
||||
margin: 0 0 0.4em;
|
||||
padding-left: 2em;
|
||||
list-style-position: outside;
|
||||
}
|
||||
.message-preview :deep(ol) {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
.message-preview :deep(ul) {
|
||||
list-style-type: disc;
|
||||
}
|
||||
.message-preview :deep(li > p) {
|
||||
margin: 0;
|
||||
}
|
||||
.message-preview :deep(img) {
|
||||
max-width: 100%;
|
||||
}
|
||||
.message-preview :deep(img.custom-image-align-left) {
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
.message-preview :deep(img.custom-image-align-center) {
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
.message-preview :deep(img.custom-image-align-right) {
|
||||
display: block;
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
.message-preview :deep(img.custom-image-align-float-left) {
|
||||
float: left;
|
||||
}
|
||||
.message-preview :deep(img.custom-image-align-float-right) {
|
||||
float: right;
|
||||
}
|
||||
.finance-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
Reference in New Issue
Block a user