Skip to content
Snippets Groups Projects

EXPHR: make dashboard content list less likely to wrap midword

1 file
+ 17
0
Compare changes
  • Side-by-side
  • Inline
@@ -24,6 +24,23 @@
@@ -24,6 +24,23 @@
td.views-field.views-field-title {
td.views-field.views-field-title {
@include uw-no-breakout();
@include uw-no-breakout();
}
}
 
// Prevent some table cells from getting too narrow.
 
// Using the "ch" unit for "character count".
 
.view-uw-view-content-list {
 
th {
 
&.views-field-status,
 
&.views-field-sticky {
 
white-space: nowrap;
 
}
 
}
 
td {
 
min-width: 10ch;
 
&.views-field-status,
 
&.views-field-sticky {
 
min-width: 4ch;
 
}
 
}
 
}
}
}
}
}
Loading