Skip to content
Open
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
10 changes: 3 additions & 7 deletions adminforth/spa/src/afcl/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@
v-model="search"
@click="inputClick"
@input="inputInput"
class="af-page-size-btn block w-full h-[34px] pl-3 pr-10 py-2 text-left
text-sm font-medium transition-all border outline-none rounded-default
bg-lightListViewButtonBackground text-lightListViewButtonText border-lightListViewButtonBorder
placeholder-lightDropdownButtonsPlaceholderText dark:placeholder-darkDropdownButtonsPlaceholderText
dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder
dark:hover:text-darkListViewButtonTextHover dark:hover:bg-darkListViewButtonBackgroundHover
hover:bg-lightListViewButtonBackgroundHover hover:text-lightListViewButtonTextHover"
class="block w-full pl-3 pr-10 py-2.5 border border-lightDropownButtonsBorder rounded-md leading-5 bg-lightDropdownButtonsBackground
placeholder-lightDropdownButtonsPlaceholderText text-lightDropdownButtonsText sm:text-sm transition duration-150 ease-in-out dark:bg-darkDropdownButtonsBackground dark:border-darkDropdownButtonsBorder dark:placeholder-darkDropdownButtonsPlaceholderText
dark:text-darkDropdownButtonsText focus:ring-lightPrimary focus:border-lightPrimary dark:focus:ring-darkPrimary dark:focus:border-darkPrimary"
:class="[{'cursor-pointer': searchDisabled}, classesForInput]"
autocomplete="off" data-custom="no-autofill"
:placeholder="
Expand Down
8 changes: 7 additions & 1 deletion adminforth/spa/src/components/ResourceListTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,13 @@
:style="{ width: selectDynamicWidth }"
:placeholder="pageSizeInternal?.toString()"
class="text-sm min-w-20 af-page-size-button"
classesForInput="h-[34px] min-h-0 py-1 pl-2 pr-6 text-sm cursor-pointer af-button-shadow bg-lightDropdownButtonsBackground text-lightDropdownButtonsText border-lightDropdownButtonsBorder dark:bg-darkDropdownButtonsBackground dark:text-darkDropdownButtonsText dark:border-darkDropdownButtonsBorder rounded-default"
classesForInput="
af-page-size-btn h-[34px] min-h-0 py-1 pl-2 pr-6 text-left text-sm font-medium transition-all
outline-none cursor-pointer af-button-shadow rounded-default bg-lightListViewButtonBackground
text-lightListViewButtonText border-lightListViewButtonBorder
dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder
hover:bg-lightListViewButtonBackgroundHover hover:text-lightListViewButtonTextHover
dark:hover:bg-darkListViewButtonBackgroundHover dark:hover:text-darkListViewButtonTextHover"
/>
</div>
</div>
Expand Down