diff --git a/src/views/SendFileView.vue b/src/views/SendFileView.vue index 182007c..c556aa1 100644 --- a/src/views/SendFileView.vue +++ b/src/views/SendFileView.vue @@ -94,59 +94,100 @@ 过期时间
-
+
- + -
- +
+
@@ -879,4 +920,27 @@ onMounted(() => { opacity: 0; transform: translateX(30px); } + +select option { + padding: 8px; + margin: 4px; + border-radius: 6px; +} + +select option:checked { + background: linear-gradient(to right, rgb(99 102 241 / 0.5), rgb(168 85 247 / 0.5)) !important; + color: white !important; +} + +.dark select option:checked { + background: linear-gradient(to right, rgb(99 102 241 / 0.7), rgb(168 85 247 / 0.7)) !important; +} + +select option:hover { + background-color: rgb(99 102 241 / 0.1); +} + +.dark select option:hover { + background-color: rgb(99 102 241 / 0.2); +}