0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-04-11 01:42:48 +02:00

Small visual fix for buttons in dropdown

This commit is contained in:
Michał Krela 2026-03-31 13:52:25 +02:00
parent f66a78a5c9
commit d939757580

View File

@ -191,9 +191,9 @@ export default defineComponent({
<!-- Select all / Deselect all buttons -->
<div class="ui divider tw-my-2"/>
<div class="tw-flex tw-gap-2 tw-px-2">
<button type="button" class="diff-ext-text-btn tw-flex-1" @click="selectAll()">{{ locale.select_all }}</button>
<button type="button" class="diff-ext-text-btn tw-flex-1" @click="deselectAll()">{{ locale.deselect_all }}</button>
<div class="tw-flex tw-items-center tw-justify-center tw-gap-4 tw-px-2 tw-py-1">
<button type="button" class="diff-ext-text-btn" @click="selectAll()">{{ locale.select_all }}</button>
<button type="button" class="diff-ext-text-btn" @click="deselectAll()">{{ locale.deselect_all }}</button>
</div>
<!-- Apply button -->
@ -243,6 +243,7 @@ export default defineComponent({
color: var(--color-primary);
cursor: pointer;
font-size: inherit;
text-align: center;
}
.ui.dropdown.diff-file-extension-filter .diff-ext-text-btn:hover {