Fix responsive

This commit is contained in:
Laurent Destailleur 2019-09-13 01:38:41 +02:00
parent a12bd6aec8
commit 5137104b92
2 changed files with 17 additions and 5 deletions

View File

@ -5734,10 +5734,13 @@ div.tabsElem a.tab {
} }
.titlefield { .titlefield {
width: auto !important; /* We want to ignor the 30%, try to use more if you can */ width: auto !important; /* We want to ignore the 30%, try to use more if you can */
} }
.tableforfield>tr>td:first-child { .tableforfield>tr>td:first-child, .tableforfield>tbody>tr>td:first-child, div.tableforfield div.tagtr>div.tagtd:first-of-type {
max-width: 100px; /* but no more than 100px */ /* max-width: 100px; */ /* but no more than 100px */
}
.tableforfield>tr>td:nth-child(2), .tableforfield>tbody>tr>td:nth-child(2), div.tableforfield div.tagtr>div.tagtd:nth-child(2) {
word-break: break-word;
} }
.badge { .badge {
line-height: 1.2em; line-height: 1.2em;

View File

@ -1133,11 +1133,17 @@ select.selectarrowonleft option {
} }
} }
.linkobject { cursor: pointer; } .linkobject { cursor: pointer; }
table.tableforfield tr>td:first-of-type, div.tableforfield div.tagtr>div.tagtd:first-of-type {
color: #666;
}
<?php if (GETPOST('optioncss', 'aZ09') == 'print') { ?> <?php if (GETPOST('optioncss', 'aZ09') == 'print') { ?>
.hideonprint { display: none; } .hideonprint { display: none; }
<?php } ?> <?php } ?>
/* ============================================================================== */ /* ============================================================================== */
/* Styles for dragging lines */ /* Styles for dragging lines */
/* ============================================================================== */ /* ============================================================================== */
@ -5835,8 +5841,11 @@ border-top-right-radius: 6px;
.titlefield { .titlefield {
width: auto !important; /* We want to ignor the 30%, try to use more if you can */ width: auto !important; /* We want to ignor the 30%, try to use more if you can */
} }
.tableforfield>tr>td:first-child, div.tableforfield div.tagtr>div.tagtd:first-of-type { .tableforfield>tr>td:first-child, .tableforfield>tbody>tr>td:first-child, div.tableforfield div.tagtr>div.tagtd:first-of-type {
max-width: 100px; /* but no more than 100px */ /* max-width: 100px; */ /* but no more than 100px */
}
.tableforfield>tr>td:nth-child(2), .tableforfield>tbody>tr>td:nth-child(2), div.tableforfield div.tagtr>div.tagtd:nth-child(2) {
word-break: break-word;
} }
} }