1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2025-07-02 00:59:23 +00:00

Enhance RandomPicker component with persistent dialog feature and clean up global styles by removing unnecessary whitespace. Update styles for hover effects and ensure consistent formatting across SCSS files.

This commit is contained in:
SunWuyuan 2025-05-10 21:51:48 +08:00
parent 3c722875dd
commit 590cffc6e6
No known key found for this signature in database
GPG Key ID: A6A54CF66F56BB64
3 changed files with 18 additions and 12 deletions

5
.hintrc Normal file
View File

@ -0,0 +1,5 @@
{
"extends": [
"development"
]
}

View File

@ -1,5 +1,5 @@
<template> <template>
<v-dialog v-model="dialog" max-width="600" fullscreen-breakpoint="sm"> <v-dialog v-model="dialog" max-width="600" fullscreen-breakpoint="sm" persistent>
<v-card class="random-picker-card"> <v-card class="random-picker-card">
<v-card-title class="text-h5 d-flex align-center"> <v-card-title class="text-h5 d-flex align-center">
<v-icon icon="mdi-account-question" class="mr-2" /> <v-icon icon="mdi-account-question" class="mr-2" />

View File

@ -76,6 +76,7 @@ html {
.fullscreen-mode { .fullscreen-mode {
.v-app-bar { .v-app-bar {
background-color: rgba(var(--v-theme-surface-variant), 0.85) !important; background-color: rgba(var(--v-theme-surface-variant), 0.85) !important;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
} }