Skip to content

Commit

Permalink
fix qbittorrent unthemed elements (#659)
Browse files Browse the repository at this point in the history
* fix(qbittorrent): unthemed elements

* Remove border radius

* fix(qbittorrent): style category input

---------

Co-authored-by: GilbN <[email protected]>
  • Loading branch information
arminius-smh and GilbN authored Oct 28, 2024
1 parent d9de215 commit ba2b86b
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions css/base/qbittorrent/qbittorrent-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ input[type="file"i] {
}

input[name="category"i] {
color: #000;
background-color: #fff;
color: var(--text-hover);
background: var(--transparency-dark-25);
border-width: 0px;
outline: none;
border: none;
Expand Down Expand Up @@ -519,6 +519,10 @@ fieldset {

/*Modal */

.mocha {
background: var(--drop-down-menu-bg);
}

.mochaOverlay {
position: absolute;
top: 0;
Expand All @@ -531,6 +535,7 @@ fieldset {
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-radius: 0px;
}

.mochaToolbarWrapper {
Expand Down Expand Up @@ -669,4 +674,13 @@ select:focus {
#torrentsFilterToolbar {
float: right;
margin-right: .5rem;
}
}

#torrentsFilterInput {
background: var(--transparency-dark-25);
border: none;
}

label[for="torrentsFilterRegexBox"] {
border: none !important;
}

0 comments on commit ba2b86b

Please sign in to comment.