Fix responsive

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

View File

@ -5789,10 +5789,13 @@ div.tabsElem a.tab {
}
.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 {
max-width: 100px; /* but no more than 100px */
.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 */
}
.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 {
line-height: 1.2em;

View File

@ -1137,11 +1137,17 @@ select.selectarrowonleft option {
}
}
.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') { ?>
.hideonprint { display: none; }
<?php } ?>
/* ============================================================================== */
/* Styles for dragging lines */
/* ============================================================================== */
@ -5716,8 +5722,11 @@ border-top-right-radius: 6px;
.titlefield {
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 {
max-width: 100px; /* but no more than 100px */
.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 */
}
.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;
}
}