Skip to content
Snippets Groups Projects
Commit 3c8154dc authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

Issue #2425171: api.drupal.org - Make "name" table column wider for listing class members

parent 3767dead
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
// Use mobile tables for narrow views tables.
$('table.views-table').each(function() {
var $this = $(this);
if ($this.width() < 500 && $this.width() === $this.parent().width()) {
if ($this.width() < 760 && $this.width() === $this.parent().width()) {
$this.addClass('mobile-table');
}
});
......
......@@ -12,6 +12,11 @@
@include word-break(normal);
@include hyphens(none);
}
@include breakpoint($medium) {
.views-field-title {
min-width: 15em;
}
}
}
@include breakpoint($extra-large) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment