/* Nicolai, 25.05.23: These are changes for the old admin theme. After Zur Rose settles on a new admin theme, some lines may need to be updated or deleted. */

/* Nicolai, added 03/2021 */
/* corrects bug in Media Browser, with activated module Permission by Term */
#media-library-content details[data-drupal-selector="edit-permissions-by-term-info"] {
  display: none;
}

/* hides Preview-Link for images that are just being added and don’t have Previews yet */
.js-media-library-add-form-added-media .focal-point-preview-link { display: none; }

/* hides checkbox for IndexNow (Sitemap XML Module) on node edit forms */
form.node-form .form-item-index-now,
form.node-confirm-form .form-item-index-now
{ display: none; }


/* Restrict width of first column of Linkchecker table  */
.view-broken-links-report td:first-child {
  max-width: 30vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Put Fieldgroup Description at the top of the group */
.field-group-fieldset .fieldset-wrapper {
  display: flex;
  flex-direction: column;
}
.field-group-fieldset .fieldset-wrapper > .description {
  order: -1; 
  font-weight: bold;
}