/* Прячем текст/вложенные элементы в бренде */
a.navbar-brand,
.navbar-brand {
  position: relative;
}

a.navbar-brand * ,
.navbar-brand * {
  display: none !important;
}

/* Рисуем логотип на самом бренде */
a.navbar-brand::before,
.navbar-brand::before {
  content: "";
  display: inline-block;
  width: 250px;
  height: 60px;
  background: url("../images/horz logo 350x800.png") no-repeat center center;
  background-size: contain;
}

/* Убираем подвал Mantis (несколько вариантов на разные темы/шаблоны) */
#footer,
.footer,
.footer-content,
.page-footer,
#page-footer,
.navbar-fixed-bottom,
.navbar-footer {
  display: none !important;
}

/* На всякий случай убираем нижний отступ, который оставляет место под подвал */
body {
  padding-bottom: 0 !important;
}

/* Подмена логотипа на странице логина (универсально) */
.login-container img,
.login-box img,
.login-form img,
.form-signin img {
  display: none !important;
}

/* Рисуем свой логотип сверху формы */
.login-container::before,
.login-box::before,
.form-signin::before {
  content: "";
  display: block;
  height: 150px;
  margin: 10px auto 20px;
  background: url("../images/horz logo 350x800.png") no-repeat center center;
  background-size: contain;
}

/* Деятельность/комментарии на view.php: управляем шириной колонок */
tr.bugnote td.category {
  width: 260px;          /* <-- тут меняй как нужно */
  max-width: 260px;
  white-space: nowrap;   /* чтобы левый блок не разъезжался */
  vertical-align: top;
}

tr.bugnote td.bugnote-note {
  width: auto;
  vertical-align: top;
}

/* Если текст комментария слишком "сплющен" — разрешаем переносы */
tr.bugnote td.bugnote-note {
  white-space: normal;
  word-break: break-word;
}
/* Скрыть строку приватности */
select[name="view_state"],
label[for="view_state"] {
    display: none !important;
}

/* Убрать текст [Все проекты] в списках задач */
small.project-name {
    display: none !important;
}
