Patch #41402 » remove-ie-specific-code-v2.patch
app/assets/stylesheets/application.css | ||
---|---|---|
140 | 140 |
@media screen and (min-width: 2560px) {#sidebar{width: 380px;}} |
141 | 141 |
#sidebar h3{ font-size: 0.875rem; margin-top:14px; color: #666; } |
142 | 142 |
#sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; } |
143 |
* html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; } |
|
144 | 143 |
#sidebar .contextual { margin-right: 1em; } |
145 | 144 |
#sidebar ul, ul.flat {margin: 0; padding: 0;} |
146 | 145 |
#sidebar ul li, ul.flat li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;} |
... | ... | |
551 | 550 |
select { |
552 | 551 |
-webkit-appearance: none; |
553 | 552 |
-moz-appearance: none; |
554 |
-ms-appearance: none; |
|
555 | 553 |
-o-appearance: none; |
556 | 554 |
appearance: none; |
557 | 555 |
background-color: #fff; |
... | ... | |
2068 | 2066 |
box-shadow: 0 1px 2px rgba(0,0,0,0.05); |
2069 | 2067 |
} |
2070 | 2068 | |
2071 |
/* Fixes for IE 11 */ |
|
2072 |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { |
|
2073 |
select::-ms-expand { |
|
2074 |
display: none; |
|
2075 |
} |
|
2076 |
select[multiple=multiple] {padding-right: 0;} |
|
2077 |
} |
|
2078 | ||
2079 | 2069 |
/* tablesort */ |
2080 | 2070 |
th[role=columnheader]:not(.no-sort) { |
2081 | 2071 |
cursor: pointer; |
... | ... | |
2090 | 2080 |
border-color: #404040 transparent; |
2091 | 2081 |
display: none; |
2092 | 2082 |
opacity: 0; |
2093 |
-ms-user-select: none; |
|
2094 | 2083 |
-webkit-user-select: none; |
2095 | 2084 |
-moz-user-select: none; |
2096 | 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 |
- « Previous
- 1
- 2
- Next »