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

[UI] Fix: Remove next button and adjust dropdown to prevent icon overlap #1893

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
3 changes: 0 additions & 3 deletions _includes/view-all.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@abbi4code, this is a reusable component used in other parts of the site. Making this change would break functionality in those areas.

Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
</select>
<input type="text" id="search" placeholder="Search..." />
</div>
<div class="viewall next">
<button class="viewallbtn nextBtn">Next</button>
</div>
</div>

<script type="module">
Expand Down
6 changes: 4 additions & 2 deletions collections/_pages/extensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@
}
#sort {
padding: 10px;
font-size: 16px;
width: 166px;
font-size: 15px;
outline: none;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
appearance: none;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
background-repeat: no-repeat;
background-position: right 10px top 50%;
background-position: right 2px top 50%;
margin-right: 10px;
@media (max-width: 506px) {
display: none;
Expand Down
Loading