Shifting the Dropdown menu to right by adding the class (dropdown-menu-right) so it does not generate the extra space when website is zoom in.
Thanks :)
Hm, could you see to rebase this PR on the top of master?
@pingou can you please tell me steps which is needed for rebasing this PR on top of master.
@ankushbehl So the easiest is to play with remotes:
You can do git remote add upstream https://pagure.io/pagure.git Then in the branch you work, you can do git pull --rebase upstream master Which basically says, pull the changes from the master branch of the remote upstream. Then you can force push to your fork (force is needed since you rewrote history).
git remote add upstream https://pagure.io/pagure.git
git pull --rebase upstream master
master
upstream
You can see all your remotes using git remote -v and of course you only need to add the upstream remote once, after it will just work :)
git remote -v
Closing this one for: https://pagure.io/pagure/pull-request/993
Pull-Request has been closed by pingou
Shifting the Dropdown menu to right by adding the class (dropdown-menu-right) so it does not generate the extra space when website is zoom in.