1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-09 06:17:58 +00:00

fix properties sort order

This commit is contained in:
d47081 2023-11-07 11:53:27 +02:00
parent cf47f5bf96
commit 7b8d68c2f2
2 changed files with 6 additions and 6 deletions

View File

@ -25,12 +25,12 @@ Required by:
} }
.mochaOverlay { .mochaOverlay {
left: 0;
position: absolute; /* This is also set in theme.js in order to make theme transitions smoother */
background-color: var(--color-background-default); background-color: var(--color-background-default);
top: 0;
border-radius: 5px; border-radius: 5px;
height: auto!important; /* #19844 also fixes out of block issue */ height: auto!important; /* #19844 also fixes out of block issue */
left: 0;
position: absolute; /* This is also set in theme.js in order to make theme transitions smoother */
top: 0;
} }
/* /*

View File

@ -366,13 +366,13 @@ a.propButton img {
} }
#torrentsFilterInput { #torrentsFilterInput {
background-color: var(--color-background-default);
background-image: url("../images/edit-find.svg"); background-image: url("../images/edit-find.svg");
background-position: left; background-position: left;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: var(--color-background-default);
background-size: 1.5em; background-size: 1.5em;
border: 1px solid var(--color-border-default);
border-radius: 3px; border-radius: 3px;
border: 1px solid var(--color-border-default);
min-width: 160px; min-width: 160px;
padding: 4px 4px 4px 25px; padding: 4px 4px 4px 25px;
} }
@ -467,8 +467,8 @@ ul.filterList {
ul.filterList a { ul.filterList a {
color: var(--color-text-default); color: var(--color-text-default);
display: block; display: block;
padding: 4px 6px;
overflow: hidden; overflow: hidden;
padding: 4px 6px;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }