[DEV] Fix column width in compact mode.

This is a regression introduced with commit 8d15d0641f,
make code conditional for IE to avoid issues.
This commit is contained in:
Francois Ferrand 2015-06-02 13:41:30 +02:00
parent 599b6624dd
commit 5861ead3ca
3 changed files with 6 additions and 0 deletions

View File

@ -782,9 +782,11 @@ nav .active a {
overflow-x: initial;
}
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.board-container-compact #board {
table-layout: auto;
}
}
#board {
table-layout: fixed;

View File

@ -172,9 +172,11 @@ th a:hover {
overflow-x: initial;
}
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.board-container-compact #board {
table-layout: auto;
}
}
#board {
table-layout: fixed;

View File

@ -28,9 +28,11 @@
overflow-x: initial;
}
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.board-container-compact #board {
table-layout: auto;
}
}
#board {
table-layout: fixed;