style(theme-2): replace gold components and colors with blue-white scheme on desktop

This commit is contained in:
2026-06-30 11:04:13 +08:00
parent b327f65c63
commit 4d8389a716
36 changed files with 168 additions and 169 deletions

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { RouterLink, useRoute } from 'vue-router'; import { RouterLink, useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -99,7 +99,7 @@ const menuItems = computed(() => {
.nav-item.active { .nav-item.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.nav-item.active .dot { .nav-item.active .dot {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'; import { computed, onMounted, onUnmounted, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute, useRouter, RouterLink } from 'vue-router'; import { useRoute, useRouter, RouterLink } from 'vue-router';
@@ -1194,8 +1194,8 @@ onUnmounted(() => {
.clear-slip-btn:hover { .clear-slip-btn:hover {
color: var(--primary-light); color: var(--primary-light);
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: rgba(212, 175, 55, 0.06); background: rgba(0, 102, 204, 0.06);
} }
.balance-info { .balance-info {
@@ -1262,8 +1262,8 @@ onUnmounted(() => {
} }
.odds-warning { .odds-warning {
background: rgba(212, 175, 55, 0.12); background: rgba(0, 102, 204, 0.12);
border-bottom: 1px solid var(--border-gold-soft); border-bottom: 1px solid var(--border-active);
color: var(--primary-light); color: var(--primary-light);
font-size: 11px; font-size: 11px;
font-weight: 600; font-weight: 600;
@@ -1314,7 +1314,7 @@ onUnmounted(() => {
} }
.slip-card:hover { .slip-card:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
} }
.card-top { .card-top {
@@ -1518,39 +1518,39 @@ onUnmounted(() => {
} }
.card-single-btn { .card-single-btn {
border: 1px solid rgba(212, 175, 55, 0.55); border: 1px solid rgba(0, 102, 204, 0.55);
background: rgba(212, 175, 55, 0.14); background: rgba(0, 102, 204, 0.14);
color: var(--primary-light); color: var(--primary-light);
} }
.card-single-btn:hover:not(:disabled) { .card-single-btn:hover:not(:disabled) {
background: rgba(212, 175, 55, 0.22); background: rgba(0, 102, 204, 0.22);
border-color: var(--border-gold); border-color: var(--border-active);
color: #fff; color: #fff;
} }
.card-parlay-btn { .card-parlay-btn {
border: 1px dashed rgba(212, 175, 55, 0.45); border: 1px dashed rgba(0, 102, 204, 0.45);
background: rgba(212, 175, 55, 0.04); background: rgba(0, 102, 204, 0.04);
color: var(--primary-light); color: var(--primary-light);
} }
.card-parlay-btn:hover:not(:disabled) { .card-parlay-btn:hover:not(:disabled) {
background: rgba(212, 175, 55, 0.1); background: rgba(0, 102, 204, 0.1);
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: #fff; color: #fff;
} }
.card-parlay-btn.active { .card-parlay-btn.active {
border-style: solid; border-style: solid;
border-color: rgba(212, 175, 55, 0.35); border-color: rgba(0, 102, 204, 0.35);
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
color: var(--text-muted); color: var(--text-muted);
} }
.card-parlay-btn.active:hover { .card-parlay-btn.active:hover {
color: var(--primary-light); color: var(--primary-light);
border-color: var(--border-gold-soft); border-color: var(--border-active);
} }
.card-parlay-btn-icon { .card-parlay-btn-icon {
@@ -1560,7 +1560,7 @@ onUnmounted(() => {
width: 14px; width: 14px;
height: 14px; height: 14px;
border-radius: 50%; border-radius: 50%;
background: rgba(212, 175, 55, 0.16); background: rgba(0, 102, 204, 0.16);
font-size: 11px; font-size: 11px;
line-height: 1; line-height: 1;
font-weight: 800; font-weight: 800;
@@ -1590,8 +1590,8 @@ onUnmounted(() => {
.panel-warning { .panel-warning {
font-size: 11px; font-size: 11px;
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
border-radius: 4px; border-radius: 4px;
padding: 8px; padding: 8px;
margin: 6px 0; margin: 6px 0;
@@ -1679,7 +1679,7 @@ onUnmounted(() => {
} }
.chip-btn:hover { .chip-btn:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: #fff; color: #fff;
} }
@@ -1744,7 +1744,7 @@ onUnmounted(() => {
width: 100%; width: 100%;
padding: 8px; padding: 8px;
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: transparent; background: transparent;
color: var(--primary-light); color: var(--primary-light);
font-size: 11px; font-size: 11px;
@@ -1753,7 +1753,7 @@ onUnmounted(() => {
} }
.add-parlay-btn:hover { .add-parlay-btn:hover {
background: rgba(212, 175, 55, 0.05); background: rgba(0, 102, 204, 0.05);
border-color: var(--primary); border-color: var(--primary);
} }
@@ -1762,8 +1762,8 @@ onUnmounted(() => {
min-width: 0; min-width: 0;
padding: 10px; padding: 10px;
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #F0D875 0%, #D4AF37 100%); background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
color: #3D2800; color: #FFFFFF;
font-size: 13px; font-size: 13px;
font-weight: 800; font-weight: 800;
text-transform: uppercase; text-transform: uppercase;
@@ -1783,8 +1783,8 @@ onUnmounted(() => {
width: 100%; width: 100%;
padding: 10px; padding: 10px;
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
color: var(--primary-light); color: var(--primary-light);
font-size: 13px; font-size: 13px;
font-weight: 800; font-weight: 800;
@@ -1794,7 +1794,7 @@ onUnmounted(() => {
} }
.history-view-all-btn:hover { .history-view-all-btn:hover {
background: rgba(212, 175, 55, 0.14); background: rgba(0, 102, 204, 0.14);
border-color: var(--primary); border-color: var(--primary);
} }
@@ -1823,8 +1823,8 @@ onUnmounted(() => {
.scope-chip.active { .scope-chip.active {
color: var(--primary-light); color: var(--primary-light);
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.history-loading { .history-loading {
@@ -1851,8 +1851,8 @@ onUnmounted(() => {
} }
.history-card:hover { .history-card:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: rgba(212, 175, 55, 0.04); background: rgba(0, 102, 204, 0.04);
} }
.history-card-top { .history-card-top {
@@ -1896,7 +1896,7 @@ onUnmounted(() => {
.history-status.hist-pending { .history-status.hist-pending {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.1); background: rgba(0, 102, 204, 0.1);
} }
.history-match { .history-match {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
defineProps<{ defineProps<{

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'; import { computed, onMounted, onUnmounted, ref, watch } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -276,8 +276,8 @@ onUnmounted(stopAutoPlay);
filter: none; filter: none;
box-shadow: box-shadow:
0 16px 40px rgba(0, 0, 0, 0.5), 0 16px 40px rgba(0, 0, 0, 0.5),
0 0 28px rgba(212, 175, 55, 0.22), 0 0 28px rgba(0, 102, 204, 0.22),
0 0 56px rgba(212, 175, 55, 0.1); 0 0 56px rgba(0, 102, 204, 0.1);
animation: banner-breathe 3s ease-in-out infinite; animation: banner-breathe 3s ease-in-out infinite;
} }
@@ -292,16 +292,16 @@ onUnmounted(stopAutoPlay);
transform: scale(1); transform: scale(1);
box-shadow: box-shadow:
0 16px 40px rgba(0, 0, 0, 0.5), 0 16px 40px rgba(0, 0, 0, 0.5),
0 0 22px rgba(212, 175, 55, 0.16), 0 0 22px rgba(0, 102, 204, 0.16),
0 0 48px rgba(212, 175, 55, 0.08); 0 0 48px rgba(0, 102, 204, 0.08);
} }
50% { 50% {
transform: scale(1.008); transform: scale(1.008);
box-shadow: box-shadow:
0 18px 44px rgba(0, 0, 0, 0.52), 0 18px 44px rgba(0, 0, 0, 0.52),
0 0 32px rgba(212, 175, 55, 0.26), 0 0 32px rgba(0, 102, 204, 0.26),
0 0 60px rgba(212, 175, 55, 0.12); 0 0 60px rgba(0, 102, 204, 0.12);
} }
} }
@@ -320,13 +320,13 @@ onUnmounted(stopAutoPlay);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), #1a1a1a); background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), #1a1a1a);
} }
.fallback-icon { .fallback-icon {
width: 40px; width: 40px;
height: 40px; height: 40px;
color: rgba(212, 175, 55, 0.35); color: rgba(0, 102, 204, 0.35);
} }
.click-hint { .click-hint {
@@ -348,7 +348,7 @@ onUnmounted(stopAutoPlay);
position: absolute; position: absolute;
inset: 0; inset: 0;
border-radius: 50%; border-radius: 50%;
border: 1px solid rgba(212, 175, 55, 0.45); border: 1px solid rgba(0, 102, 204, 0.45);
animation: click-ring-pulse 2.8s ease-out infinite; animation: click-ring-pulse 2.8s ease-out infinite;
} }
@@ -356,7 +356,7 @@ onUnmounted(stopAutoPlay);
position: relative; position: relative;
width: 15px; width: 15px;
height: 15px; height: 15px;
color: rgba(212, 175, 55, 0.88); color: rgba(0, 102, 204, 0.88);
animation: click-icon-bob 2.8s ease-in-out infinite; animation: click-icon-bob 2.8s ease-in-out infinite;
} }
@@ -410,7 +410,7 @@ onUnmounted(stopAutoPlay);
width: 36px; width: 36px;
height: 36px; height: 36px;
border-radius: 50%; border-radius: 50%;
border: 1px solid rgba(212, 175, 55, 0.4); border: 1px solid rgba(0, 102, 204, 0.4);
background: rgba(10, 10, 10, 0.75); background: rgba(10, 10, 10, 0.75);
color: var(--primary-light); color: var(--primary-light);
display: flex; display: flex;
@@ -426,7 +426,7 @@ onUnmounted(stopAutoPlay);
} }
.nav-btn:hover { .nav-btn:hover {
background: rgba(212, 175, 55, 0.2); background: rgba(0, 102, 204, 0.2);
border-color: var(--primary); border-color: var(--primary);
} }
@@ -459,7 +459,7 @@ onUnmounted(stopAutoPlay);
.dot.active { .dot.active {
width: 22px; width: 22px;
border-radius: 4px; border-radius: 4px;
background: var(--gradient-gold); background: var(--primary);
} }
.dot:hover:not(.active) { .dot:hover:not(.active) {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, ref, watch, onUnmounted } from 'vue'; import { computed, ref, watch, onUnmounted } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useDesktopBetPopover } from '../../composables/useDesktopBetPopover'; import { useDesktopBetPopover } from '../../composables/useDesktopBetPopover';
@@ -242,7 +242,7 @@ function addToParlayList() {
width: 280px; width: 280px;
padding: 12px 28px 12px 12px; padding: 12px 28px 12px 12px;
border-radius: 8px; border-radius: 8px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: rgba(18, 18, 18, 0.98); background: rgba(18, 18, 18, 0.98);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
} }
@@ -285,8 +285,8 @@ function addToParlayList() {
padding: 6px 8px; padding: 6px 8px;
margin-bottom: 10px; margin-bottom: 10px;
border-radius: 4px; border-radius: 4px;
background: rgba(212, 175, 55, 0.06); background: rgba(0, 102, 204, 0.06);
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
} }
.pick { .pick {
@@ -321,7 +321,7 @@ function addToParlayList() {
} }
.stake-input:focus { .stake-input:focus {
border-color: var(--border-gold-soft); border-color: var(--border-active);
outline: none; outline: none;
} }
@@ -366,8 +366,8 @@ function addToParlayList() {
padding: 8px; padding: 8px;
border: none; border: none;
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #f0d875 0%, #d4af37 100%); background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
color: #3d2800; color: #FFFFFF;
font-size: 12px; font-size: 12px;
font-weight: 800; font-weight: 800;
cursor: pointer; cursor: pointer;
@@ -386,8 +386,8 @@ function addToParlayList() {
width: 100%; width: 100%;
padding: 7px; padding: 7px;
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: rgba(212, 175, 55, 0.05); background: rgba(0, 102, 204, 0.05);
color: var(--primary-light); color: var(--primary-light);
font-size: 11px; font-size: 11px;
font-weight: 700; font-weight: 700;
@@ -395,6 +395,6 @@ function addToParlayList() {
} }
.btn-outline:hover { .btn-outline:hover {
background: rgba(212, 175, 55, 0.12); background: rgba(0, 102, 204, 0.12);
} }
</style> </style>

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import type { OutrightEvent } from '../outright/OutrightEventSection.vue'; import type { OutrightEvent } from '../outright/OutrightEventSection.vue';
@@ -53,7 +53,7 @@ const isSettled = computed(
} }
.outright-event-card:hover { .outright-event-card:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
} }
.card-main { .card-main {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted, watch } from 'vue'; import { computed, onMounted, watch } from 'vue';
import { useRoute, RouterView } from 'vue-router'; import { useRoute, RouterView } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { RouterLink, useRoute } from 'vue-router'; import { RouterLink, useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -114,7 +114,7 @@ const activeTab = computed(() => {
height: 38px; height: 38px;
width: auto; width: auto;
display: block; display: block;
filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.2)); filter: drop-shadow(0 0 4px rgba(0, 102, 204, 0.2));
} }
.site-name { .site-name {
@@ -122,10 +122,10 @@ const activeTab = computed(() => {
font-weight: 800; font-weight: 800;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
letter-spacing: 0.5px; letter-spacing: 0.5px;
background: var(--gradient-gold); background: var(--primary);
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
text-shadow: 0 0 8px rgba(212, 175, 55, 0.15); text-shadow: 0 0 8px rgba(0, 102, 204, 0.15);
transition: opacity 0.2s; transition: opacity 0.2s;
} }
@@ -169,7 +169,7 @@ const activeTab = computed(() => {
height: 3px; height: 3px;
background: var(--primary); background: var(--primary);
border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0;
box-shadow: 0 -1px 8px rgba(212, 175, 55, 0.5); box-shadow: 0 -1px 8px rgba(0, 102, 204, 0.5);
} }
.badge { .badge {
@@ -203,8 +203,8 @@ const activeTab = computed(() => {
.login-btn { .login-btn {
padding: 6px 18px; padding: 6px 18px;
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: rgba(212, 175, 55, 0.05); background: rgba(0, 102, 204, 0.05);
color: var(--primary-light); color: var(--primary-light);
font-size: 13px; font-size: 13px;
font-weight: 700; font-weight: 700;
@@ -212,15 +212,15 @@ const activeTab = computed(() => {
} }
.login-btn:hover { .login-btn:hover {
background: rgba(212, 175, 55, 0.12); background: rgba(0, 102, 204, 0.12);
border-color: var(--primary); border-color: var(--primary);
} }
.register-btn { .register-btn {
padding: 7px 18px; padding: 7px 18px;
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #F0D875 0%, #D4AF37 100%); background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
color: #3D2800; color: #FFFFFF;
font-size: 13px; font-size: 13px;
font-weight: 800; font-weight: 800;
transition: opacity 0.2s; transition: opacity 0.2s;

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { RouterLink, useRoute } from 'vue-router'; import { RouterLink, useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted } from 'vue'; import { computed, onMounted } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useMatchFilters } from '../../composables/useMatchFilters'; import { useMatchFilters } from '../../composables/useMatchFilters';
@@ -162,8 +162,8 @@ const isSelected = (leagueId: string) => filterState.value.leagueIds.includes(le
} }
.sidebar-search-input:focus { .sidebar-search-input:focus {
border-color: var(--border-gold-soft) !important; border-color: var(--border-active) !important;
box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1) !important; box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1) !important;
} }
.sidebar-section { .sidebar-section {
@@ -199,12 +199,12 @@ const isSelected = (leagueId: string) => filterState.value.leagueIds.includes(le
} }
.time-btn:hover { .time-btn:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--text); color: var(--text);
} }
.time-btn.active { .time-btn.active {
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
border-color: var(--primary); border-color: var(--primary);
color: var(--primary-light); color: var(--primary-light);
} }
@@ -256,7 +256,7 @@ const isSelected = (leagueId: string) => filterState.value.leagueIds.includes(le
} }
.league-item.active { .league-item.active {
background: rgba(212, 175, 55, 0.04); background: rgba(0, 102, 204, 0.04);
} }
.checkbox { .checkbox {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted } from 'vue'; import { computed, onMounted } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -169,8 +169,8 @@ watch(currentMatchId, scrollToActive);
} }
.sidebar-search-input:focus { .sidebar-search-input:focus {
border-color: var(--border-gold-soft) !important; border-color: var(--border-active) !important;
box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1) !important; box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1) !important;
} }
.sidebar-section { .sidebar-section {
@@ -212,12 +212,12 @@ watch(currentMatchId, scrollToActive);
} }
.time-btn:hover { .time-btn:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--text); color: var(--text);
} }
.time-btn.active { .time-btn.active {
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
border-color: var(--primary); border-color: var(--primary);
color: var(--primary-light); color: var(--primary-light);
} }
@@ -330,13 +330,13 @@ watch(currentMatchId, scrollToActive);
} }
.matches-list :deep(.match-card:hover) { .matches-list :deep(.match-card:hover) {
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: var(--bg-hover) !important; background: var(--bg-hover) !important;
} }
.matches-list :deep(.match-card.active) { .matches-list :deep(.match-card.active) {
border-color: var(--primary) !important; border-color: var(--primary) !important;
background: rgba(212, 175, 55, 0.08) !important; background: rgba(0, 102, 204, 0.08) !important;
box-shadow: 0 0 8px rgba(212, 175, 55, 0.25); box-shadow: 0 0 8px rgba(0, 102, 204, 0.25);
} }
</style> </style>

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -129,9 +129,9 @@ function onPageSizeChange(e: Event) {
} }
.page-btn:hover:not(:disabled) { .page-btn:hover:not(:disabled) {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--text); color: var(--text);
background: rgba(212, 175, 55, 0.05); background: rgba(0, 102, 204, 0.05);
} }
.page-btn.active { .page-btn.active {
@@ -166,7 +166,7 @@ function onPageSizeChange(e: Event) {
} }
.page-size-select:hover { .page-size-select:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--text); color: var(--text);
} }
</style> </style>

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref } from 'vue'; import { ref } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -78,9 +78,9 @@ function selectSport(id: SportCategory, enabled: boolean) {
.sport-category.active { .sport-category.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.1); background: rgba(0, 102, 204, 0.1);
border-color: var(--border-gold-soft); border-color: var(--border-active);
box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08); box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.08);
} }
.sport-category.disabled { .sport-category.disabled {

View File

@@ -42,7 +42,6 @@ const isDetailPage = computed(() => {
); );
}); });
const showHeader = computed(() => !isDetailPage.value);
const showHeader = computed(() => !isDetailPage.value); const showHeader = computed(() => !isDetailPage.value);
const showAnnouncement = computed( const showAnnouncement = computed(
() => !isDetailPage.value && !route.path.startsWith('/profile') && !route.path.startsWith('/announcements'), () => !isDetailPage.value && !route.path.startsWith('/profile') && !route.path.startsWith('/announcements'),

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
/** /**
* Desktop Announcement Detail View * Desktop Announcement Detail View
* Reuses the existing AnnouncementDetailView component in a desktop shell wrapper. * Reuses the existing AnnouncementDetailView component in a desktop shell wrapper.

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onActivated } from 'vue'; import { computed, onActivated } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -135,7 +135,7 @@ onActivated(() => {
padding: 18px 20px; padding: 18px 20px;
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 10px; border-radius: 10px;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 18, 18, 0.95) 42%); background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(18, 18, 18, 0.95) 42%);
} }
.back-btn { .back-btn {
@@ -148,7 +148,7 @@ onActivated(() => {
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 10px; border-radius: 10px;
background: #141414; background: #141414;
color: var(--gold); color: var(--primary-light);
font-size: 13px; font-size: 13px;
font-weight: 700; font-weight: 700;
line-height: 1; line-height: 1;
@@ -157,8 +157,8 @@ onActivated(() => {
} }
.back-btn:hover { .back-btn:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.back-icon { .back-icon {
@@ -201,8 +201,8 @@ onActivated(() => {
flex-shrink: 0; flex-shrink: 0;
padding: 6px 10px; padding: 6px 10px;
border-radius: 999px; border-radius: 999px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
font-size: 12px; font-size: 12px;
font-weight: 700; font-weight: 700;
color: var(--primary-light); color: var(--primary-light);
@@ -244,7 +244,7 @@ onActivated(() => {
} }
.announce-card:hover { .announce-card:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
transform: translateY(-2px); transform: translateY(-2px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
} }
@@ -281,11 +281,11 @@ onActivated(() => {
flex-shrink: 0; flex-shrink: 0;
padding: 2px 7px; padding: 2px 7px;
border-radius: 4px; border-radius: 4px;
background: rgba(212, 175, 55, 0.12); background: rgba(0, 102, 204, 0.12);
border: 1px solid rgba(212, 175, 55, 0.22); border: 1px solid rgba(0, 102, 204, 0.22);
font-size: 10px; font-size: 10px;
font-weight: 700; font-weight: 700;
color: var(--gold); color: var(--primary-light);
} }
.card-date { .card-date {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted } from 'vue'; import { ref, onMounted } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute, useRouter, RouterLink } from 'vue-router'; import { useRoute, useRouter, RouterLink } from 'vue-router';
@@ -167,7 +167,7 @@ function statusLabel(status: string) {
.status-badge { display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; align-self: flex-start; } .status-badge { display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; align-self: flex-start; }
.status-won { background: rgba(52,199,89,0.12); color: #4cd964; } .status-won { background: rgba(52,199,89,0.12); color: #4cd964; }
.status-lost { background: rgba(255,69,58,0.12); color: #ff453a; } .status-lost { background: rgba(255,69,58,0.12); color: #ff453a; }
.status-pending { background: rgba(212,175,55,0.12); color: var(--primary-light); } .status-pending { background: rgba(0, 102, 204,0.12); color: var(--primary-light); }
.status-push { background: rgba(100,100,100,0.12); color: #aaa; } .status-push { background: rgba(100,100,100,0.12); color: #aaa; }
.status-default { background: rgba(100,100,100,0.1); color: #888; } .status-default { background: rgba(100,100,100,0.1); color: #888; }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, ref, onMounted, onActivated, watch } from 'vue'; import { computed, ref, onMounted, onActivated, watch } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import api from '../../api'; import api from '../../api';
@@ -149,9 +149,9 @@ onActivated(loadData);
align-items: baseline; align-items: baseline;
gap: 8px; gap: 8px;
padding: 8px 14px; padding: 8px 14px;
border: 1px solid rgba(212, 175, 55, 0.22); border: 1px solid rgba(0, 102, 204, 0.22);
border-radius: 8px; border-radius: 8px;
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.summary-label { .summary-label {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, watch } from 'vue'; import { ref, computed, watch } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -250,8 +250,8 @@ void loadParlayMatches(true);
.main-tab.active { .main-tab.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
} }
.refresh-btn { .refresh-btn {
@@ -294,7 +294,7 @@ void loadParlayMatches(true);
font-size: 12px; font-size: 12px;
font-weight: 800; font-weight: 800;
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.06); background: rgba(0, 102, 204, 0.06);
border-left: 3px solid var(--primary); border-left: 3px solid var(--primary);
border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
} }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
/** /**
* Desktop Forgot Password View * Desktop Forgot Password View
*/ */
@@ -44,7 +44,7 @@ import ForgotPasswordView from '../ForgotPasswordView.vue';
content: ''; content: '';
position: absolute; position: absolute;
inset: 0; inset: 0;
background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(212,175,55,0.06) 0%, transparent 70%); background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0, 102, 204,0.06) 0%, transparent 70%);
pointer-events: none; pointer-events: none;
} }
@@ -63,7 +63,7 @@ import ForgotPasswordView from '../ForgotPasswordView.vue';
width: 64px; width: 64px;
height: 64px; height: 64px;
object-fit: contain; object-fit: contain;
filter: drop-shadow(0 4px 16px rgba(212,175,55,0.3)); filter: drop-shadow(0 4px 16px rgba(0, 102, 204,0.3));
} }
.brand-name { .brand-name {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { onMounted, computed, ref } from 'vue'; import { onMounted, computed, ref } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -253,8 +253,8 @@ function formatKickoff(startTime: string) {
} }
.match-card:hover { .match-card:hover {
border-color: var(--border-gold-soft); border-color: var(--border-active);
box-shadow: var(--shadow-gold); box-shadow: var(--shadow);
} }
.card-top { .card-top {
@@ -267,7 +267,7 @@ function formatKickoff(startTime: string) {
font-size: 11px; font-size: 11px;
font-weight: 700; font-weight: 700;
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
padding: 2px 6px; padding: 2px 6px;
border-radius: 4px; border-radius: 4px;
max-width: 100%; max-width: 100%;
@@ -339,7 +339,7 @@ function formatKickoff(startTime: string) {
.bet-action-btn { .bet-action-btn {
padding: 4px 12px; padding: 4px 12px;
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
background: transparent; background: transparent;
color: var(--primary-light); color: var(--primary-light);
font-size: 11px; font-size: 11px;
@@ -349,7 +349,7 @@ function formatKickoff(startTime: string) {
.match-card:hover .bet-action-btn { .match-card:hover .bet-action-btn {
background: var(--primary); background: var(--primary);
color: #3D2800; color: #FFFFFF;
border-color: var(--primary); border-color: var(--primary);
} }
</style> </style>

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onActivated, onMounted, ref } from 'vue'; import { computed, onActivated, onMounted, ref } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -185,7 +185,7 @@ onActivated(refreshUnreadCount);
.hub-tab.active { .hub-tab.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.hub-tab.active .dot { background: var(--primary); box-shadow: 0 0 8px var(--primary); } .hub-tab.active .dot { background: var(--primary); box-shadow: 0 0 8px var(--primary); }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
/** /**
* Desktop Login View * Desktop Login View
* Reuses the existing LoginView form in a centered two-column auth layout. * Reuses the existing LoginView form in a centered two-column auth layout.
@@ -59,7 +59,7 @@ import LoginView from '../LoginView.vue';
content: ''; content: '';
position: absolute; position: absolute;
inset: 0; inset: 0;
background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(212,175,55,0.06) 0%, transparent 70%); background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0, 102, 204,0.06) 0%, transparent 70%);
pointer-events: none; pointer-events: none;
} }
@@ -78,7 +78,7 @@ import LoginView from '../LoginView.vue';
width: 64px; width: 64px;
height: 64px; height: 64px;
object-fit: contain; object-fit: contain;
filter: drop-shadow(0 4px 16px rgba(212,175,55,0.3)); filter: drop-shadow(0 4px 16px rgba(0, 102, 204,0.3));
} }
.brand-name { .brand-name {
@@ -87,7 +87,7 @@ import LoginView from '../LoginView.vue';
letter-spacing: 0.12em; letter-spacing: 0.12em;
color: var(--primary-light); color: var(--primary-light);
margin: 0; margin: 0;
text-shadow: 0 2px 12px rgba(212,175,55,0.25); text-shadow: 0 2px 12px rgba(0, 102, 204,0.25);
} }
.brand-tagline { .brand-tagline {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, onMounted, watch, nextTick } from 'vue'; import { ref, computed, onMounted, watch, nextTick } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -548,7 +548,7 @@ function toggleSelection(sel: Selection, market: Market, event?: MouseEvent) {
font-size: 32px; font-size: 32px;
font-weight: 900; font-weight: 900;
color: var(--primary-light); color: var(--primary-light);
text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
} }
.versus-row .divider { .versus-row .divider {
@@ -658,9 +658,9 @@ function toggleSelection(sel: Selection, market: Market, event?: MouseEvent) {
.market-filter-chip.active { .market-filter-chip.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.1); background: rgba(0, 102, 204, 0.1);
border-color: var(--border-gold-soft); border-color: var(--border-active);
box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08); box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.08);
} }
.markets-score-section { .markets-score-section {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onActivated, onMounted } from 'vue'; import { computed, onActivated, onMounted } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -128,7 +128,7 @@ onActivated(refreshUnreadCount);
.hub-tab.active { .hub-tab.active {
color: var(--primary-light); color: var(--primary-light);
background: rgba(212, 175, 55, 0.08); background: rgba(0, 102, 204, 0.08);
} }
.hub-tab.active .dot { .hub-tab.active .dot {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated } from 'vue'; import { ref, onMounted, onActivated } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { RouterLink } from 'vue-router'; import { RouterLink } from 'vue-router';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, ref, watch, onMounted, onUnmounted } from 'vue'; import { computed, ref, watch, onMounted, onUnmounted } from 'vue';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, onMounted } from 'vue'; import { ref, computed, onMounted } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@@ -260,7 +260,7 @@ async function onAvatarSelect(key: string | null) {
height: 64px; height: 64px;
border-radius: 50%; border-radius: 50%;
object-fit: cover; object-fit: cover;
border: 2px solid var(--border-gold-soft); border: 2px solid var(--border-active);
} }
.avatar-placeholder { .avatar-placeholder {
@@ -287,7 +287,7 @@ async function onAvatarSelect(key: string | null) {
transition: all 0.2s; transition: all 0.2s;
} }
.change-avatar-btn:hover { border-color: var(--border-gold-soft); color: var(--primary-light); } .change-avatar-btn:hover { border-color: var(--border-active); color: var(--primary-light); }
.field-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; } .field-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
@@ -313,7 +313,7 @@ async function onAvatarSelect(key: string | null) {
transition: border-color 0.2s; transition: border-color 0.2s;
} }
.field-input:focus { border-color: var(--border-gold-soft); } .field-input:focus { border-color: var(--border-active); }
.field-input:disabled { opacity: 0.45; cursor: not-allowed; } .field-input:disabled { opacity: 0.45; cursor: not-allowed; }
.field-hint { font-size: 11px; color: var(--text-muted); margin: 0; } .field-hint { font-size: 11px; color: var(--text-muted); margin: 0; }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated, computed } from 'vue'; import { ref, onMounted, onActivated, computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
@@ -276,7 +276,7 @@ const balanceDisplay = computed(() =>
.bank-card-type { .bank-card-type {
font-size: 10px; font-size: 10px;
font-weight: 800; font-weight: 800;
color: rgba(212, 175, 55, 0.8); color: rgba(0, 102, 204, 0.8);
font-style: italic; font-style: italic;
} }
@@ -287,7 +287,7 @@ const balanceDisplay = computed(() =>
padding: 8px 16px; padding: 8px 16px;
border-radius: 14px; border-radius: 14px;
background: rgba(0, 0, 0, 0.45); background: rgba(0, 0, 0, 0.45);
border: 1px solid rgba(212, 175, 55, 0.35); border: 1px solid rgba(0, 102, 204, 0.35);
color: var(--primary-light); color: var(--primary-light);
font-size: 13px; font-size: 13px;
font-weight: 600; font-weight: 600;
@@ -296,7 +296,7 @@ const balanceDisplay = computed(() =>
transition: background 0.15s ease; transition: background 0.15s ease;
} }
.recharge-btn:hover { background: rgba(212, 175, 55, 0.15); } .recharge-btn:hover { background: rgba(0, 102, 204, 0.15); }
.bank-card-balance { .bank-card-balance {
flex: 1; flex: 1;
@@ -388,7 +388,7 @@ const balanceDisplay = computed(() =>
align-items: center; align-items: center;
padding: 7px 18px; padding: 7px 18px;
border-radius: 6px; border-radius: 6px;
border: 1px solid var(--border-gold-soft); border: 1px solid var(--border-active);
color: var(--primary-light); color: var(--primary-light);
font-size: 13px; font-size: 13px;
font-weight: 700; font-weight: 700;
@@ -396,7 +396,7 @@ const balanceDisplay = computed(() =>
transition: background 0.2s; transition: background 0.2s;
} }
.edit-btn:hover { background: rgba(212,175,55,0.08); } .edit-btn:hover { background: rgba(0, 102, 204,0.08); }
.lang-group { display: flex; gap: 8px; flex-wrap: wrap; } .lang-group { display: flex; gap: 8px; flex-wrap: wrap; }
@@ -416,9 +416,9 @@ const balanceDisplay = computed(() =>
} }
.lang-opt.active { .lang-opt.active {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--primary-light); color: var(--primary-light);
background: rgba(212,175,55,0.08); background: rgba(0, 102, 204,0.08);
} }
.logout-btn { .logout-btn {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated } from 'vue'; import { ref, onMounted, onActivated } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { RouterLink } from 'vue-router'; import { RouterLink } from 'vue-router';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated, computed } from 'vue'; import { ref, onMounted, onActivated, computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRouter, useRoute } from 'vue-router'; import { useRouter, useRoute } from 'vue-router';
@@ -350,9 +350,9 @@ onActivated(fetchMethods);
} }
.type-tab.active { .type-tab.active {
border-color: var(--border-gold-soft); border-color: var(--border-active);
color: var(--primary-light); color: var(--primary-light);
background: rgba(212,175,55,0.08); background: rgba(0, 102, 204,0.08);
} }
.recharge-cols { .recharge-cols {
@@ -401,8 +401,8 @@ onActivated(fetchMethods);
.method-card:hover { border-color: rgba(255, 255, 255, 0.15); } .method-card:hover { border-color: rgba(255, 255, 255, 0.15); }
.method-card.selected { .method-card.selected {
border-color: var(--border-gold-soft); border-color: var(--border-active);
background: rgba(212,175,55,0.06); background: rgba(0, 102, 204,0.06);
} }
.method-name { .method-name {
@@ -501,7 +501,7 @@ onActivated(fetchMethods);
max-width: 320px; max-width: 320px;
} }
.field-input:focus { border-color: var(--border-gold-soft); } .field-input:focus { border-color: var(--border-active); }
.preview-wrap { .preview-wrap {
position: relative; position: relative;
@@ -548,7 +548,7 @@ onActivated(fetchMethods);
transition: border-color 0.2s; transition: border-color 0.2s;
} }
.upload-zone:hover { border-color: var(--border-gold-soft); } .upload-zone:hover { border-color: var(--border-active); }
.hidden-input { display: none; } .hidden-input { display: none; }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
/** /**
* Desktop Register View * Desktop Register View
* Reuses the existing RegisterView form in a centered desktop auth layout. * Reuses the existing RegisterView form in a centered desktop auth layout.
@@ -45,7 +45,7 @@ import RegisterView from '../RegisterView.vue';
content: ''; content: '';
position: absolute; position: absolute;
inset: 0; inset: 0;
background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(212,175,55,0.06) 0%, transparent 70%); background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0, 102, 204,0.06) 0%, transparent 70%);
pointer-events: none; pointer-events: none;
} }
@@ -64,7 +64,7 @@ import RegisterView from '../RegisterView.vue';
width: 64px; width: 64px;
height: 64px; height: 64px;
object-fit: contain; object-fit: contain;
filter: drop-shadow(0 4px 16px rgba(212,175,55,0.3)); filter: drop-shadow(0 4px 16px rgba(0, 102, 204,0.3));
} }
.brand-name { .brand-name {

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated } from 'vue'; import { ref, onMounted, onActivated } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
@@ -186,7 +186,7 @@ onActivated(() => loadPage(1));
.zero { color: var(--text-muted); } .zero { color: var(--text-muted); }
.load-more { display: flex; justify-content: center; padding: 20px 0 8px; } .load-more { display: flex; justify-content: center; padding: 20px 0 8px; }
.load-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 28px; border-radius: 6px; border: 1px solid var(--desktop-border); background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; } .load-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 28px; border-radius: 6px; border: 1px solid var(--desktop-border); background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.load-more-btn:hover:not(:disabled) { border-color: var(--border-gold-soft); color: var(--primary-light); } .load-more-btn:hover:not(:disabled) { border-color: var(--border-active); color: var(--primary-light); }
.load-more-btn:disabled { opacity: 0.5; cursor: default; } .load-more-btn:disabled { opacity: 0.5; cursor: default; }
.end-hint { text-align: center; font-size: 12px; color: #444; padding: 16px 0 4px; } .end-hint { text-align: center; font-size: 12px; color: #444; padding: 16px 0 4px; }
.empty-state { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 80px 20px; color: var(--text-muted); font-size: 14px; font-weight: 600; } .empty-state { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 80px 20px; color: var(--text-muted); font-size: 14px; font-weight: 600; }

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted } from 'vue'; import { ref, onMounted } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onActivated } from 'vue'; import { ref, onMounted, onActivated } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRouter, RouterLink } from 'vue-router'; import { useRouter, RouterLink } from 'vue-router';