@import "../../base";

@import "../tag/index";

@include govuk-exports("govuk/component/task-list") {
  $govuk-task-list-hover-colour: govuk-colour("black", $variant: "tint-95");

  .govuk-task-list {
    @include govuk-font($size: 19);
    margin-top: 0;
    @include govuk-responsive-margin(6, "bottom");
    padding: 0;
    list-style-type: none;
  }

  // This uses table layout so that the task name and status always appear
  // side-by-side, with the width of each 'column' being flexible depending upon
  // the length of the task names and statuses.
  //
  // The position is set to 'relative' so than an absolutely-positioned
  // transparent element box can be added within the link so that the whole row
  // can be clickable.
  .govuk-task-list__item {
    display: table;
    position: relative;
    width: 100%;
    margin-bottom: 0;
    padding-top: govuk-spacing(2);
    padding-bottom: govuk-spacing(2);
    border-bottom: 1px solid;
    border-bottom-color: govuk-functional-colour(border);
  }

  .govuk-task-list__item:first-child {
    border-top: 1px solid;
    border-top-color: govuk-functional-colour(border);
  }

  // This class is added to the <li> elements where the task name is a link. The
  // background hover colour is added to help indicate that the whole row is
  // clickable, rather than just the visible link text.
  .govuk-task-list__item--with-link:hover {
    background: $govuk-task-list-hover-colour;
  }

  .govuk-task-list__name-and-hint {
    display: table-cell;

    color: govuk-functional-colour(text);
    vertical-align: top;
  }

  .govuk-task-list__status {
    display: table-cell;
    padding-left: govuk-spacing(2);

    color: govuk-functional-colour(text);
    text-align: right;
    vertical-align: top;
  }

  .govuk-task-list__status--cannot-start-yet {
    color: govuk-functional-colour(secondary-text);
  }

  // This adds an empty transparent box covering the whole row, including the
  // task status and any hint text. Because this is generated within the link
  // element, this allows the whole area to be clickable.
  .govuk-task-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .govuk-task-list__hint {
    margin-top: govuk-spacing(1);
    color: govuk-functional-colour(secondary-text);
  }
}

/*# sourceMappingURL=_index.scss.map */
