1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-06 09:03:25 +00:00

Fix that down arrow for dropdowns is broken in Edge and Internet Explorer (#31147, #31358).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@18163 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-05-13 23:37:49 +00:00
parent 070cbbdc97
commit 43e144ae85

View File

@ -457,7 +457,10 @@ select {
-ms-appearance: none;
-o-appearance: none;
appearance: none;
background: #fff url(../images/arrow_down.png) no-repeat calc( 100% - 7px) 50%;
background-color: #fff;
background-image: url(../images/arrow_down.png);
background-repeat: no-repeat;
background-position: calc(100% - 7px) 50%;
padding-right: 20px;
}
input[type="file"] {border: 0; padding-left: 0; padding-right: 0;}
@ -1610,7 +1613,6 @@ img.filecontent.image {background-image: url(../images/transparent.png);}
overflow:hidden;
}
img {
image-orientation: from-image;
}
@ -1625,3 +1627,11 @@ img {
max-height: 100%;
max-width: 100%;
}
/* Fixes for IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
select::-ms-expand {
display: none;
}
select[multiple=multiple] {padding-right: 0;}
}