Skip to content

Commit

Permalink
Merge pull request #174 from zugdev/UI-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 authored Dec 1, 2024
2 parents b2efa02 + 4d1f299 commit 72b1dc1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/home/sorting/sorting-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ export class SortingManager {
textBox.type = "text";
textBox.id = `filter-${this._instanceId}`;
textBox.placeholder = "Search";
textBox.spellcheck = false;
textBox.autocapitalize = "off";
textBox.draggable = false;

// Handle CTRL+F
document.addEventListener("keydown", (event) => {
Expand Down
8 changes: 6 additions & 2 deletions static/style/inverted-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@
max-height: 48px;
}
#authenticated > img {
height: 48px;
height: 35px;
margin-left: 4px;
border-radius: 50%;
}
.toolbar[data-authenticated="true"] > #github-login-button {
display: none;
Expand Down Expand Up @@ -426,7 +428,7 @@
display: none;
}
}
@media screen and (max-width: 1139px) {
@media screen and (max-width: 1350px) {
.partner {
margin-top: 0;
}
Expand Down Expand Up @@ -783,6 +785,8 @@
text-rendering: geometricprecision;
text-transform: uppercase;
font-size: 16px;
display: flex;
align-items: center;
}
#view-toggle {
flex: 0 0 auto;
Expand Down
8 changes: 6 additions & 2 deletions static/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@
max-height: 48px;
}
#authenticated > img {
height: 48px;
height: 35px;
margin-left: 4px;
border-radius: 50%;
}
.toolbar[data-authenticated="true"] > #github-login-button {
display: none;
Expand Down Expand Up @@ -426,7 +428,7 @@
display: none;
}
}
@media screen and (max-width: 1139px) {
@media screen and (max-width: 1350px) {
.partner {
margin-top: 0;
}
Expand Down Expand Up @@ -783,6 +785,8 @@
text-rendering: geometricprecision;
text-transform: uppercase;
font-size: 16px;
display: flex;
align-items: center;
}
#view-toggle {
flex: 0 0 auto;
Expand Down

0 comments on commit 72b1dc1

Please sign in to comment.