-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Fixing issue filter #25335
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
Closed
puni9869
wants to merge
22
commits into
go-gitea:main
from
puni9869:punit/ISSUE-24846-fixing-issue-filter
Closed
Fixing issue filter #25335
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
382320c
Empty-Commit
puni9869 496e352
Fixing the mobile view port for issue-list menu and dropdown.
puni9869 76056e0
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 490f56b
Setting margins for large device screen for issue filter
puni9869 44d1866
Linter
puni9869 551f5e6
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 2cd08ae
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 ce40b5f
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 734ac4e
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 91c35d6
Removing div divider and fixing view port resolution with suggestion
puni9869 751f788
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 7d97d82
Fixing:: Suggestions
puni9869 b241d78
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 c54a073
Removed extra classes
puni9869 ad8c1fd
Fixing the checkbox problem
puni9869 82bfd8b
Fixing the checkbox problem and item-actions
puni9869 f72d188
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 c8b0525
Adding space to left side of drop down menu
puni9869 7a72aee
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 b6b3f2d
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 94fd75b
Merge branch 'main' into punit/ISSUE-24846-fixing-issue-filter
puni9869 5d5192b
Modifying delete button ml-auto style
puni9869 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1,35 +1,133 @@ | ||
.issue-list-toolbar { | ||
#issue-filters > .issue-list-toolbar-left, | ||
#issue-actions > .issue-list-toolbar-left { | ||
flex-direction: row; | ||
display: flex; | ||
flex-wrap: wrap; | ||
align-items: flex-start; | ||
gap: 1rem; | ||
margin-top: 1rem; | ||
} | ||
|
||
.issue-list-toolbar-left { | ||
display: flex; | ||
#issue-actions { | ||
margin-top: 0; | ||
} | ||
|
||
.issue-list-toolbar-right { | ||
margin-left: auto; | ||
@media only screen and (min-width: 1200px) { | ||
#issue-filters { | ||
margin-top: 0; | ||
margin-left: auto; | ||
padding-right: 0; | ||
} | ||
|
||
.issue-list-toolbar-right > .filter.menu { | ||
justify-content: flex-end; | ||
} | ||
|
||
#issue-filters > .issue-list-toolbar-left { | ||
padding-left: 0; | ||
} | ||
} | ||
|
||
@media (max-width: 767.98px) { | ||
@media only screen and (max-width: 769px) { | ||
#issue-filters { | ||
margin-right: 0; | ||
} | ||
|
||
#issue-filters > .issue-list-toolbar-right { | ||
margin-right: auto; | ||
width: 100% !important; | ||
padding-top: 0; | ||
} | ||
|
||
.issue-list-toolbar-right > .filter.menu { | ||
flex-direction: row; | ||
overflow-x: scroll; | ||
} | ||
puni9869 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.issue-list-toolbar-right > .filter.menu > .item { | ||
max-width: fit-content; | ||
} | ||
|
||
#issue-filters > .issue-list-toolbar-left { | ||
margin-top: 14px !important; | ||
} | ||
|
||
.ui.stackable.menu > .dropdown.item { | ||
position: initial; | ||
} | ||
|
||
.issue-list-toolbar { | ||
flex-direction: column-reverse; | ||
} | ||
|
||
.issue-list-toolbar-right { | ||
margin-right: auto; | ||
width: 100%; | ||
} | ||
|
||
.issue-list-navbar { | ||
order: 0; | ||
} | ||
|
||
.issue-list-new { | ||
order: 1; | ||
margin-left: auto !important; | ||
} | ||
|
||
.issue-list-search { | ||
order: 2 !important; | ||
} | ||
|
||
#issue-actions { | ||
flex-direction: column; | ||
margin-right: 0; | ||
} | ||
|
||
#issue-actions > .issue-list-toolbar-right { | ||
width: 100% !important; | ||
padding-top: 0 !important; | ||
padding-bottom: 0; | ||
} | ||
|
||
#issue-actions > .issue-list-toolbar-right > .filter.menu { | ||
padding-left: .5rem; | ||
} | ||
|
||
.repository .filter.menu .ui.dropdown.label-filter .menu, | ||
.repository .filter.menu .ui.dropdown .menu { | ||
left: 8px; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 768px) and (max-width: 1024px) { | ||
#issue-filters { | ||
flex-direction: column; | ||
margin-top: 0; | ||
} | ||
|
||
#issue-filters > .issue-list-toolbar-right { | ||
margin-top: 0; | ||
padding: 0 1rem; | ||
} | ||
|
||
#issue-actions { | ||
justify-content: flex-end; | ||
} | ||
|
||
#issue-actions > .issue-list-toolbar-right .filter.menu { | ||
justify-content: flex-end; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 1024px) and (max-width: 1200px) { | ||
#issue-filters { | ||
flex-direction: column; | ||
margin-top: 0; | ||
} | ||
|
||
#issue-filters > .issue-list-toolbar-right { | ||
margin-top: 0; | ||
padding: 0 1rem; | ||
} | ||
|
||
#issue-actions > .issue-list-toolbar-right { | ||
display: flex; | ||
justify-content: flex-end; | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.