Added searching for all relevant data types
This commit is contained in:
parent
4df0a804b3
commit
a8cf583569
39 changed files with 1159 additions and 233 deletions
|
@ -289,6 +289,9 @@
|
|||
|
||||
color: var(--foreground);
|
||||
font-size: 24px;
|
||||
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.15s;
|
||||
}
|
||||
|
||||
.list-page-entry-icon {
|
||||
|
@ -309,6 +312,8 @@
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.list-page-entry > .list-page-entry-text {
|
||||
|
@ -318,6 +323,17 @@
|
|||
|
||||
.list-page-header > .list-page-entry-text {
|
||||
border-left: 1px solid var(--accent-value0);
|
||||
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.15s;
|
||||
}
|
||||
|
||||
.list-page-header > .list-page-entry-text:hover {
|
||||
background-color: var(--accent-value1);
|
||||
}
|
||||
|
||||
.list-page-header > .list-page-entry-text:active {
|
||||
background-color: var(--accent-value0);
|
||||
}
|
||||
|
||||
#loading-results {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
.list-page-entry.achievement:hover {
|
||||
background-color: var(--background-light);
|
||||
}
|
||||
|
||||
.list-page-entry-text.achievement-game-name { flex-grow: 1.75; }
|
||||
.list-page-entry-text.achievement-name { flex-grow: 2; }
|
||||
.list-page-entry-text.achievement-completion { flex-grow: 1; }
|
||||
|
|
9
frontend/webpage/static/styles/search_games.css
Normal file
9
frontend/webpage/static/styles/search_games.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
.list-page-entry-icon.game {
|
||||
width: 137px;
|
||||
}
|
||||
|
||||
.list-page-entry-text.game-name { flex-grow: 2.5; }
|
||||
.list-page-entry-text.game-achievement-count { flex-grow: 1; }
|
||||
.list-page-entry-text.game-avg-completion { flex-grow: 1; }
|
||||
.list-page-entry-text.game-num-owners { flex-grow: 1; }
|
||||
.list-page-entry-text.game-num-perfects { flex-grow: 1; }
|
9
frontend/webpage/static/styles/search_users.css
Normal file
9
frontend/webpage/static/styles/search_users.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
.list-page-entry.user:hover {
|
||||
background-color: var(--background-light);
|
||||
}
|
||||
|
||||
.list-page-entry-text.user-username { flex-grow: 1.5; }
|
||||
.list-page-entry-text.user-game-count { flex-grow: 1; }
|
||||
.list-page-entry-text.user-achievement-count { flex-grow: 1; }
|
||||
.list-page-entry-text.user-avg-completion { flex-grow: 1; }
|
||||
.list-page-entry-text.user-perfect-games { flex-grow: 1; }
|
|
@ -1,10 +1,11 @@
|
|||
:root {
|
||||
--background-dark: #111117;
|
||||
--background: #22222A;
|
||||
--background-light: #33333B;
|
||||
--distinction: #44444C;
|
||||
--foreground-disabled: #77777D;
|
||||
--foreground-dark: #AAAAAA;
|
||||
--foreground: #EEEEEE;
|
||||
--distinction: #44444C;
|
||||
|
||||
--accent-hue: 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue