Skip to content

Commit 5717099

Browse files
Merge pull request #175 from ndrez-outl1ne/bugfix/buttons-darkmode
Darken disabled buttons in dark mode
2 parents e655343 + e9ea46a commit 5717099

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/js/entry.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/ReorderButtons.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@click.stop="!reorderDisabled && $emit('moveToStart')"
88
:custom-class="{
99
'o1-cursor-pointer text-gray-400 hover:text-primary-400 active:text-primary-500': !reorderDisabled,
10-
'o1-cursor-default text-gray-200': reorderDisabled,
10+
'o1-cursor-default text-gray-200 dark:text-gray-600': reorderDisabled,
1111
}"
1212
v-tooltip="moveToStartTooltip"
1313
/>
@@ -16,7 +16,7 @@
1616
@click.stop="!reorderDisabled && $emit('moveToEnd')"
1717
:custom-class="{
1818
'o1-cursor-pointer text-gray-400 hover:text-primary-400 active:text-primary-500': !reorderDisabled,
19-
'o1-cursor-default text-gray-200': reorderDisabled,
19+
'o1-cursor-default text-gray-200 dark:text-gray-600': reorderDisabled,
2020
}"
2121
v-tooltip="moveToEndTooltip"
2222
/>
@@ -26,7 +26,7 @@
2626
style="min-width: 22px; width: 22px"
2727
:custom-class="{
2828
'handle o1-cursor-move text-gray-400 hover:text-primary-400 active:text-primary-500': !reorderDisabled,
29-
'text-gray-200 o1-cursor-default': reorderDisabled,
29+
'o1-cursor-default text-gray-200 dark:text-gray-600': reorderDisabled,
3030
}"
3131
/>
3232
</div>

0 commit comments

Comments
 (0)