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

Optimize sort songs dialog layout #2176

Merged
merged 1 commit into from
Dec 17, 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
12 changes: 6 additions & 6 deletions src/lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@
"list_import_tip__playlist_part": "Failed to import. This is a \"Single-list\" file. You need to go here to import: \n\n\"Your Library → Right-click on any list name → Select 'Import' in the menu\"",
"list_import_tip__setting": "Failed to import. This is a \"Settings\" backup file. You need to go here to import: \n\n\"Settings → Backup & Restore → Partial Data → Import settings\"",
"list_import_tip__unknown": "Failed to import. Unknown file type. Please try to upgrade the app to the latest version and try again.",
"list_sort_modal_by_album": "Album name",
"list_sort_modal_by_album": "Album",
"list_sort_modal_by_down": "Descending",
"list_sort_modal_by_field": "Sort field",
"list_sort_modal_by_name": "Song name",
"list_sort_modal_by_field": "Sort Field",
"list_sort_modal_by_name": "Title",
"list_sort_modal_by_random": "Randomization",
"list_sort_modal_by_singer": "Artist name",
"list_sort_modal_by_singer": "Artist",
"list_sort_modal_by_source": "Song source",
"list_sort_modal_by_time": "Duration",
"list_sort_modal_by_type": "Sort categories",
"list_sort_modal_by_time": "Length",
"list_sort_modal_by_type": "Sort Categories",
"list_sort_modal_by_up": "Ascending",
"list_sort_modal_tip_confirm": "Are you sure you want to do this?",
"list_update_modal__auto_update": "Auto Update",
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/views/List/MyList/components/ListSortModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default {

.main {
padding: 0 15px;
width: 320px;
width: 360px;
display: flex;
flex-flow: column nowrap;
min-height: 0;
Expand All @@ -182,7 +182,7 @@ export default {
font-size: 14px;
}
.listItem {
width: (100% / 3);
width: (100% / 2);
padding-left: 10px;
margin-bottom: 8px;
box-sizing: border-box;
Expand Down
Loading