/* подчёркиваем зелёным все строки с комментарием */
.row-green {
  background-color: #d4edda !important;
}

/* поле поиска в фильтрах */
.filter-search {
  width: 100%;
  margin-bottom: 4px;
  box-sizing: border-box;
}

/* поле поиска по списку фильтров */
.filter-group-search {
  width: 100%;
  margin-bottom: 8px;
  box-sizing: border-box;
}

/* ограничиваем высоту списков фильтров */
#changelist-filter details ul,
#changelist-filter details select {
  max-height: 200px;
  overflow-y: auto;
}

.change-list .results {
  max-height: 600px;
  overflow-y: auto;
}

label.required::after,
.required label::after {
    content: "*";
    color: red;
    margin-left: 4px;
}

.field-poke {
  animation: field-poke-highlight 0.8s ease-in-out;
}

@keyframes field-poke-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 133, 238, 0.4);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(80, 133, 238, 0.6);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(80, 133, 238, 0);
  }
}
