Skip to content

Commit

Permalink
Fix that down arrow for dropdowns is broken in Edge and Internet Expl…
Browse files Browse the repository at this point in the history
…orer (#31147, #31358).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@18163 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
vividtone committed May 13, 2019
1 parent 070cbbd commit 43e144a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions public/stylesheets/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;}
Expand Down Expand Up @@ -1610,7 +1613,6 @@ img.filecontent.image {background-image: url(../images/transparent.png);}
overflow:hidden;
}


img {
image-orientation: from-image;
}
Expand All @@ -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;}
}

0 comments on commit 43e144a

Please sign in to comment.