style: 태그 관리 - 미매핑 그룹 안내 갱신(미노출), bm-none 표기
CI / build (push) Failing after 13m44s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 15:24:27 +09:00
parent 823bdcafcf
commit 09634757f7
+5 -4
View File
@@ -98,7 +98,7 @@ onMounted(load)
<template> <template>
<section class="tag-admin"> <section class="tag-admin">
<p class="page-hint"> 태그 그룹을 사용할 게시판을 지정하세요. 선택한 게시판의 글쓰기에서만 그룹 태그가 노출됩니다. (선택 으면 전체 게시판)</p> <p class="page-hint"> 태그 그룹을 사용할 게시판을 지정하세요. 선택한 게시판의 글쓰기에서만 그룹 태그가 노출됩니다. <b>게시판을 하나도 선택하지 으면 어디에도 노출되지 않습니다.</b></p>
<form class="new-category" @submit.prevent="addCategory"> <form class="new-category" @submit.prevent="addCategory">
<input v-model="newCategoryName" type="text" placeholder="새 카테고리 이름 (예: 게시판, 게시판2)" /> <input v-model="newCategoryName" type="text" placeholder="새 카테고리 이름 (예: 게시판, 게시판2)" />
@@ -121,7 +121,7 @@ onMounted(load)
<input type="checkbox" :checked="cat.boards.includes(b.key)" @change="toggleBoard(cat, b.key)" /> <input type="checkbox" :checked="cat.boards.includes(b.key)" @change="toggleBoard(cat, b.key)" />
{{ b.label }} {{ b.label }}
</label> </label>
<span v-if="!cat.boards.length" class="bm-all">전체</span> <span v-if="!cat.boards.length" class="bm-none">미노출</span>
</div> </div>
<div class="tag-list"> <div class="tag-list">
@@ -201,9 +201,10 @@ button.danger {
width: auto; width: auto;
cursor: pointer; cursor: pointer;
} }
.bm-all { .bm-none {
font-size: 0.78rem; font-size: 0.78rem;
opacity: 0.55; color: #c0392b;
opacity: 0.8;
} }
.new-category { .new-category {
display: flex; display: flex;