릴리스: v1.3.80 공통 오른쪽 레일 카피라이트 적용
This commit is contained in:
@@ -21,6 +21,7 @@ const route = useRoute()
|
||||
const router = useRouter()
|
||||
const auth = useAuthStore()
|
||||
const { toasts, dismissToast } = useToast()
|
||||
const RIGHT_RAIL_COPYRIGHT_URL = 'https://zenn.town/@murabito'
|
||||
|
||||
const leftRailCollapsed = ref(false)
|
||||
const rightRailOpen = ref(true)
|
||||
@@ -628,6 +629,11 @@ function submitGlobalSearch() {
|
||||
</button>
|
||||
</section>
|
||||
</template>
|
||||
<div class="rightRail__footer">
|
||||
<span>Copyright © 2026 </span>
|
||||
<a :href="RIGHT_RAIL_COPYRIGHT_URL" target="_blank" rel="noreferrer">zenn</a>
|
||||
<span>. All rights reserved.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
@@ -1200,13 +1206,31 @@ function submitGlobalSearch() {
|
||||
}
|
||||
|
||||
.rightRail__bottom {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
padding-top: 12px;
|
||||
}
|
||||
|
||||
.rightRail__footer {
|
||||
padding: 0 4px 2px;
|
||||
font-size: 9px;
|
||||
line-height: 1.4;
|
||||
text-align: center;
|
||||
color: var(--theme-text-faint);
|
||||
opacity: 0.72;
|
||||
}
|
||||
|
||||
.rightRail__footer a {
|
||||
color: #00ffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.rightRail__footer a:hover {
|
||||
color: #00ffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.settingsThemePanel {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
|
||||
@@ -26,7 +26,6 @@ const router = useRouter()
|
||||
const globalRightRailOpen = inject('rightRailOpen', ref(true))
|
||||
const localRightRailTarget = inject('localRightRailTarget', '#local-right-rail-root')
|
||||
const isAdmin = computed(() => !!auth.user?.isAdmin)
|
||||
const ADMIN_COPYRIGHT_URL = 'https://zenn.town/@murabito'
|
||||
|
||||
const activeTab = ref('featured')
|
||||
const tierlistsMode = ref('requests')
|
||||
@@ -2197,8 +2196,7 @@ function userAvatarFallback(user) {
|
||||
</section>
|
||||
|
||||
<Teleport :to="localRightRailTarget">
|
||||
<div v-show="globalRightRailOpen" class="adminSidebarShell adminUiScope">
|
||||
<aside class="adminSidebar">
|
||||
<aside v-show="globalRightRailOpen" class="adminSidebar adminUiScope">
|
||||
<section class="adminSidebar__panel">
|
||||
<div class="adminSidebar__label">Mode</div>
|
||||
<div class="adminSidebar__tabs">
|
||||
@@ -2391,12 +2389,6 @@ function userAvatarFallback(user) {
|
||||
</div>
|
||||
</section>
|
||||
</aside>
|
||||
<div class="adminSidebarFooter">
|
||||
<span>Copyright © 2026 </span>
|
||||
<a :href="ADMIN_COPYRIGHT_URL" target="_blank" rel="noreferrer">zenn</a>
|
||||
<span>. All rights reserved.</span>
|
||||
</div>
|
||||
</div>
|
||||
</Teleport>
|
||||
</template>
|
||||
|
||||
@@ -2471,33 +2463,10 @@ function userAvatarFallback(user) {
|
||||
font-weight: 900;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
.adminUiScope.adminSidebarShell {
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
.adminUiScope .adminSidebar {
|
||||
.adminUiScope.adminSidebar {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
.adminUiScope .adminSidebarFooter {
|
||||
margin-top: auto;
|
||||
padding: 4px 4px 2px;
|
||||
font-size: 9px;
|
||||
line-height: 1.4;
|
||||
text-align: center;
|
||||
color: var(--theme-text-faint);
|
||||
opacity: 0.72;
|
||||
}
|
||||
.adminUiScope .adminSidebarFooter a {
|
||||
color: #00ffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.adminUiScope .adminSidebarFooter a:hover {
|
||||
color: #00ffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.adminUiScope .adminSidebar__panel {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
|
||||
Reference in New Issue
Block a user