-
+ |
{% for pair in row %}
{% if pair[1] != "" and pair[1] != nil %}
@@ -100,13 +104,21 @@ human intervention.
word-wrap: break-word;
overflow-wrap: break-word;
}
- td:nth-child(5) { /* Command column */
+ td.col-command { /* Command column */
font-size: 12px; /* Keep font size adjustment for command column if desired, or remove */
}
- /* Hide command column on mobile */
+ /* Hide new columns first on smaller screens */
+ @media screen and (max-width: 991px) {
+ th.col-conform, td.col-conform,
+ th.col-edit-format, td.col-edit-format {
+ display: none;
+ }
+ }
+
+ /* Hide command column on even smaller screens */
@media screen and (max-width: 767px) {
- th:nth-child(5), td:nth-child(5) { /* Command column */
+ th.col-command, td.col-command { /* Command column */
display: none;
}
}
|