Terms in taxonomy are not shown as a tree due to malformed indentation. Follow a workaround:

#taxonomy td .tabledrag-handle {
  padding: 0 0.5em 0 0;
  margin: 0;
}

#taxonomy .indentation {
  float: left;
  width: 2.0em;
}

Comments

@baux created an issue. See original summary.

@baux’s picture

Some other changes... after few investigation I propose this solution:

The following code will give a better layout to the taxonomy terms: all item are centered and the style doesn't change if the option "Show row weights" is on.

#taxonomy td {
  height: 3.7em;
}

#taxonomy td {
  vertical-align: middle;
}

#taxonomy td .tabledrag-handle {
  padding: 0 0.5em 0 0;
  margin: 0;
}

#taxonomy .indentation {
  float: left; /* LTR */
  width: 2.0em;
}

#taxonomy .form-group {
  padding-bottom: 0em;
}

...and the following change will set the dropdown element to the "Default button size":

in the file src/Plugin/Preprocess/BootstrapDropdown.php (line 79) change

$toggle->setButtonSize('btn-xs');

to

$toggle->setButtonSize('');

by the way these changes should be tested on other pages...
Baux

markhalliwell’s picture

Title: Taxonomy terms indentation error » Taxonomy term indentation is off
Version: 8.x-3.0-rc1 » 8.x-3.x-dev
Category: Bug report » Feature request
Status: Active » Postponed

This is administrative related, which is not the primary focus of this base theme.

@baux’s picture

That's true, but with the right permissions users can edit taxonomy. Pictures are from an "editor" profile, not from the admin.

As you wish, just to contribute...
Great job. I love this theme

markhalliwell’s picture

Status: Postponed » Closed (duplicate)
Related issues: +#2800569: Missing tabledrag indentations

Fixed in related issue.