feat(ui): drop active-link underline + redundant page-title headers
This commit is contained in:
@@ -96,7 +96,6 @@ const health = computed(() => {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
border-bottom: 2px solid transparent;
|
|
||||||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||||
transition: background 0.2s ease, transform 0.1s ease;
|
transition: background 0.2s ease, transform 0.1s ease;
|
||||||
}
|
}
|
||||||
@@ -104,11 +103,10 @@ const health = computed(() => {
|
|||||||
background: rgba(232, 228, 216, 0.12);
|
background: rgba(232, 228, 216, 0.12);
|
||||||
transform: translateY(-1px);
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
/* Active route: accent text + thin accent underline (FabledDesignSystem:
|
/* Active route: accent text only (FabledDesignSystem: accent for
|
||||||
accent for nav-active, never on action buttons). */
|
nav-active, never on action buttons). No underline. */
|
||||||
.fc-link.router-link-exact-active {
|
.fc-link.router-link-exact-active {
|
||||||
color: rgb(var(--v-theme-accent));
|
color: rgb(var(--v-theme-accent));
|
||||||
border-bottom-color: rgb(var(--v-theme-accent));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc-health {
|
.fc-health {
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid class="py-6">
|
<v-container fluid class="py-6">
|
||||||
<h1 class="fc-h1 mb-4">Gallery</h1>
|
|
||||||
<div class="fc-gallery-layout">
|
<div class="fc-gallery-layout">
|
||||||
<div class="fc-gallery-layout__main">
|
<div class="fc-gallery-layout__main">
|
||||||
<EmptyState v-if="store.isEmpty" />
|
<EmptyState v-if="store.isEmpty" />
|
||||||
@@ -63,12 +62,6 @@ function closeImage() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.fc-h1 {
|
|
||||||
font-family: 'Fraunces', Georgia, serif;
|
|
||||||
font-size: 32px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: rgb(var(--v-theme-on-surface));
|
|
||||||
}
|
|
||||||
.fc-gallery-layout {
|
.fc-gallery-layout {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container class="py-6">
|
<v-container class="py-6">
|
||||||
<h1 class="fc-h1 mb-6">Settings</h1>
|
|
||||||
|
|
||||||
<v-tabs v-model="tab" color="accent" class="mb-4">
|
<v-tabs v-model="tab" color="accent" class="mb-4">
|
||||||
<v-tab value="overview">Overview</v-tab>
|
<v-tab value="overview">Overview</v-tab>
|
||||||
<v-tab value="import">Import</v-tab>
|
<v-tab value="import">Import</v-tab>
|
||||||
@@ -85,12 +83,3 @@ watch(tab, (t) => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.fc-h1 {
|
|
||||||
font-family: 'Fraunces', Georgia, serif;
|
|
||||||
font-size: 32px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: rgb(var(--v-theme-on-surface));
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid class="py-6">
|
<v-container fluid class="py-6">
|
||||||
<div class="fc-showcase__head">
|
<div class="fc-showcase__head">
|
||||||
<h1 class="fc-h1">Showcase</h1>
|
|
||||||
<v-btn
|
<v-btn
|
||||||
prepend-icon="mdi-shuffle-variant" variant="tonal" color="accent"
|
prepend-icon="mdi-shuffle-variant" variant="tonal" color="accent"
|
||||||
:loading="store.loading" @click="store.shuffle()"
|
:loading="store.loading" @click="store.shuffle()"
|
||||||
@@ -42,13 +41,8 @@ function openImage(id) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.fc-h1 {
|
|
||||||
font-family: 'Fraunces', Georgia, serif;
|
|
||||||
font-size: 32px; font-weight: 500;
|
|
||||||
color: rgb(var(--v-theme-on-surface));
|
|
||||||
}
|
|
||||||
.fc-showcase__head {
|
.fc-showcase__head {
|
||||||
display: flex; align-items: center; justify-content: space-between;
|
display: flex; align-items: center; justify-content: flex-end;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid class="py-6">
|
<v-container fluid class="py-6">
|
||||||
<h1 class="fc-h1 mb-4">Tags</h1>
|
|
||||||
|
|
||||||
<div class="fc-tags__controls">
|
<div class="fc-tags__controls">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
@@ -77,11 +76,6 @@ function openTag(tagId) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.fc-h1 {
|
|
||||||
font-family: 'Fraunces', Georgia, serif;
|
|
||||||
font-size: 32px; font-weight: 500;
|
|
||||||
color: rgb(var(--v-theme-on-surface));
|
|
||||||
}
|
|
||||||
.fc-tags__controls {
|
.fc-tags__controls {
|
||||||
display: flex; align-items: center; gap: 16px;
|
display: flex; align-items: center; gap: 16px;
|
||||||
flex-wrap: wrap; margin-bottom: 16px;
|
flex-wrap: wrap; margin-bottom: 16px;
|
||||||
|
|||||||
Reference in New Issue
Block a user