1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-27 06:54:20 +00:00

Use standard CSS properties instead of vendor specifics

This commit is contained in:
Chocobo1 2021-10-22 14:20:43 +08:00
parent 864dca1b67
commit 3088f04e6f
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
4 changed files with 2 additions and 23 deletions

View File

@ -186,7 +186,7 @@ body {
#desktopNavbar li ul li a:hover {
background: #6c98d9;
-moz-border-radius: 2px;
border-radius: 2px;
color: #fff;
}
@ -400,7 +400,7 @@ div.toolbox.divider {
.iconWrapper:hover {
border: 1px solid #a0a0a0;
-moz-border-radius: 3px;
border-radius: 3px;
}
#spinnerWrapper {

View File

@ -97,11 +97,8 @@ div.mochaToolbarWrapper.bottom {
.mocha .handle {
background: #0f0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); /* IE6 and 7*/
font-size: 1px; /* For IE6 */
height: 3px;
-moz-opacity: 0;
opacity: 0%;
overflow: hidden;
position: absolute;
@ -210,10 +207,7 @@ div.mochaToolbarWrapper.bottom {
#modalOverlay {
background: #000;
display: none;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); /* IE6 and 7*/
left: 0;
-moz-opacity: 0;
opacity: 0%;
position: fixed;
top: 0;
@ -224,10 +218,7 @@ div.mochaToolbarWrapper.bottom {
/* Fix for IE6 select z-index issue */
#modalFix {
display: none;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); /* IE6 and 7*/
left: 0;
-moz-opacity: 0;
opacity: 0%;
position: absolute;
top: 0;
@ -317,9 +308,6 @@ div.mochaToolbarWrapper.bottom {
}
.mocha.notification .mochaTitlebar {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); /* IE6 and 7*/
-moz-opacity: 0;
opacity: 0%;
}

View File

@ -52,8 +52,6 @@ tr.dynamicTableHeader {
.dynamicTable th {
background-color: #eee;
border-right: 1px solid #ccc;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 4px;
white-space: nowrap;

View File

@ -260,7 +260,6 @@ a.propButton img {
.contextMenu li img {
height: 16px;
-ms-interpolation-mode: bicubic;
margin-bottom: -4px;
width: 16px;
}
@ -407,8 +406,6 @@ label.partial {
fieldset.settings {
border: solid 1px black;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
padding: 4px 4px 4px 10px;
}
@ -506,10 +503,6 @@ td.generalLabel {
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}