mirror of
https://github.com/YGGverse/btracker.git
synced 2026-03-31 17:15:31 +00:00
implement basic search
This commit is contained in:
parent
a5133b006b
commit
97ac3d9dce
4 changed files with 82 additions and 11 deletions
|
|
@ -67,7 +67,38 @@ table > thead > tr > th {
|
|||
}
|
||||
|
||||
table > tbody > tr:hover > td {
|
||||
background: var(--background)
|
||||
background: var(--background);
|
||||
}
|
||||
|
||||
form {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
form input {
|
||||
background: var(--item);
|
||||
border-color: var(--item);
|
||||
border-radius: 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
color: var(--default);
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
form input:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
form input[type="text"] {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
form input[type="text"]:focus {
|
||||
border-color: var(--separator);
|
||||
}
|
||||
|
||||
form input[type="submit"] {
|
||||
cursor: pointer;
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
body > * {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue