/*
  Icons used in Review page, PDF Export popup
*/

/* Well fates */

.fate-icon {
    display: inherit; /* browser zoom messes with td height in pdf-export modal, this seems to make it less messy */
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
}

.fate-icon--empty {
    background-image: url(/candle/static/img/icons/empty.svg);
}

.fate-icon--none {
    background-image: url(/candle/static/img/icons/fate_none.svg);
}

.fate-icon--transfer {
    background-image: url(/candle/static/img/icons/transfer.svg);
}

.fate-icon--freeze {
    background-image: url(/candle/static/img/icons/freeze.svg);
}

.fate-icon--discard {
    background-image: url(/candle/static/img/icons/discard.svg);
}

/* Icons for checkboxes */

.well-checkbox {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    background-image: url(/candle/static/img/icons/check_empty_grey.svg);
}

.selected .well-checkbox {
    background-image: url(/candle/static/img/icons/check_blue.svg);
}

.disabled .well-checkbox {
    background-image: url(/candle/static/img/icons/check_empty_grey.svg);
}

.well-checkbox--white {
    background-image: url(/candle/static/img/icons/check_empty_white.svg);
}

.selected .well-checkbox--white {
    background-image: url(/candle/static/img/icons/check_white.svg);
}
