-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement dropdown menu for repo change (#347)
Introduce a dropdown menu for repository selection, simplifying the process of switching between repositories. This enhancement offers users a quicker and more intuitive method to navigate to previously visited repositories.
- Loading branch information
1 parent
d92079b
commit 775e59c
Showing
3 changed files
with
75 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.repo-menu-footer { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
position: sticky; | ||
bottom: 0; | ||
z-index: 1; | ||
padding: 10px; | ||
} | ||
|
||
.new-repo-button { | ||
flex-grow: 1; | ||
} | ||
|
||
.keep-filter-button { | ||
margin-left: 2px; | ||
} | ||
|
||
.repo-options { | ||
max-height: 300px; | ||
overflow-y: auto; | ||
} | ||
|
||
.repo-options button { | ||
font-size: 17px; | ||
} | ||
|
||
/* Overwrite the width of the menu */ | ||
::ng-deep .repo-menu { | ||
width: fit-content !important; | ||
min-width: 320px !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters