Patch #41402 » remove-ie-specific-code.patch
app/assets/stylesheets/application.css | ||
---|---|---|
551 | 551 |
select { |
552 | 552 |
-webkit-appearance: none; |
553 | 553 |
-moz-appearance: none; |
554 |
-ms-appearance: none; |
|
555 | 554 |
-o-appearance: none; |
556 | 555 |
appearance: none; |
557 | 556 |
background-color: #fff; |
... | ... | |
2067 | 2066 |
border-radius: 3px; |
2068 | 2067 |
} |
2069 | 2068 | |
2070 |
/* Fixes for IE 11 */ |
|
2071 |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { |
|
2072 |
select::-ms-expand { |
|
2073 |
display: none; |
|
2074 |
} |
|
2075 |
select[multiple=multiple] {padding-right: 0;} |
|
2076 |
} |
|
2077 | ||
2078 | 2069 |
/* tablesort */ |
2079 | 2070 |
th[role=columnheader]:not(.no-sort) { |
2080 | 2071 |
cursor: pointer; |
... | ... | |
2089 | 2080 |
border-color: #404040 transparent; |
2090 | 2081 |
display: none; |
2091 | 2082 |
opacity: 0; |
2092 |
-ms-user-select: none; |
|
2093 | 2083 |
-webkit-user-select: none; |
2094 | 2084 |
-moz-user-select: none; |
2095 | 2085 |
user-select: none; |
app/assets/stylesheets/responsive.css | ||
---|---|---|
164 | 164 |
/* achieve dropdwon arrow by scaling a caret character */ |
165 | 165 |
content: '^'; |
166 | 166 |
-webkit-transform: scale(1,-.8); |
167 |
-ms-transform: scale(1,-.8); |
|
168 | 167 |
transform: scale(1,-.8); |
169 | 168 |
text-align: right; |
170 | 169 |
pointer-events: none; |
... | ... | |
173 | 172 |
} |
174 | 173 |
#project-jump.expanded .drdn-trigger:before { |
175 | 174 |
-webkit-transform: scale(1,.8); |
176 |
-ms-transform: scale(1,.8); |
|
177 | 175 |
transform: scale(1,.8); |
178 | 176 |
padding-top:8px; |
179 | 177 |
} |
... | ... | |
398 | 396 | |
399 | 397 |
.flyout-menu #watchers { |
400 | 398 |
display: -webkit-flex; |
401 |
display: -ms-flexbox; |
|
402 | 399 |
display: -webkit-box; |
403 | 400 |
display: flex; |
404 | 401 |
flex-direction: column; |
405 | 402 | |
406 | 403 |
-webkit-flex-direction: column; |
407 |
-ms-flex-direction: column; |
|
408 | 404 |
-webkit-box-orient: vertical; |
409 | 405 |
-webkit-box-direction: normal; |
410 | 406 |
} |
... | ... | |
412 | 408 |
.flyout-menu #watchers .contextual { |
413 | 409 |
-webkit-box-ordinal-group: 4; |
414 | 410 |
-webkit-order: 3; |
415 |
-ms-flex-order: 3; |
|
416 | 411 |
order: 3; |
417 | 412 |
} |
418 | 413 | |
... | ... | |
422 | 417 | |
423 | 418 |
.flyout-menu #watchers ul li { |
424 | 419 |
display: -webkit-flex; |
425 |
display: -ms-flexbox; |
|
426 | 420 |
display: -webkit-box; |
427 | 421 |
display: flex; |
428 | 422 |
flex-direction: row; |
429 | 423 | |
430 | 424 |
-webkit-flex-direction: row; |
431 |
-ms-flex-direction: row; |
|
432 | 425 |
-webkit-box-orient: horizontal; |
433 | 426 |
-webkit-box-direction: normal; |
434 | 427 |
-webkit-align-items: center; |
435 |
-ms-flex-align: center; |
|
436 | 428 |
-webkit-box-align: center; |
437 | 429 |
align-items: center; |
438 | 430 |
} |
... | ... | |
492 | 484 |
.flyout-menu__avatar { |
493 | 485 |
display: -webkit-box; |
494 | 486 |
display: -webkit-flex; |
495 |
display: -ms-flexbox; |
|
496 | 487 |
display: flex; |
497 | 488 |
width: 100%; |
498 | 489 |
border-top: 1px solid rgba(255,255,255,.1); |
... | ... | |
528 | 519 |
overflow: hidden; |
529 | 520 |
white-space: nowrap; |
530 | 521 |
-webkit-flex-grow: 1; |
531 |
-ms-flex-grow: 1; |
|
532 | 522 |
flex-grow: 1; |
533 | 523 |
} |
534 | 524 |