Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.x] More Dark Fixes #10165

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion resources/css/components/shortcuts.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.shortcut-pair {
@apply pb-2 mb-2 antialiased flex items-center justify-between;
&:not(:last-child) {
@apply border-b;
@apply border-b dark:border-dark-800;
}
}

Expand All @@ -19,6 +19,10 @@
height: 18px;
margin: 0 .25em;
padding: 0 2px 2px 2px ; [dir="rtl"] & { padding: 0 2px 2px 2px ; }
.dark & {
@apply bg-gradient-to-br from-dark-500 to-dark-600 text-dark-150;
box-shadow: inset 0 1px 0 0 #6b6868, inset 0 0 1px 1px rgba(0,0,0,.7), 0 1px 3px 1px rgba(30,35,90,.2);
}
}

.shortcut-combo {
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/SessionExpiry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<modal name="session-timeout-login" v-if="isShowingLogin" height="auto" width="500px" :adaptive="true">
<div class="-max-h-screen-px">
<div class="flex items-center p-6 bg-gray-200 border-b text-center">
<div class="flex items-center p-6 bg-gray-200 dark:bg-dark-700 border-b dark:border-dark-900 text-center">
{{ __('Resume Your Session') }}
</div>

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/modals/KeyboardShortcutsModal.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<modal v-if="open" name="keyboard-shortcuts" width="380" height="auto" :adaptive="true" @closed="open = false" click-to-close>
<div class="-max-h-screen-px">
<h1 class="p-4 bg-gray-200 border-b text-center">
<h1 class="p-4 bg-gray-200 dark:bg-dark-700 border-b dark:border-dark-900 text-center">
{{ __('Keyboard Shortcuts') }}
</h1>
<div class="p-6 relative">
Expand Down
Loading